Home
last modified time | relevance | path

Searched refs:guess (Results 1 – 13 of 13) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/util/
DTimeUtilsTest.java41 TimeZone guess; in testMainstream() local
44 guess = guess(c, "us"); in testMainstream()
45 assertEquals(name, guess.getID()); in testMainstream()
48 guess = guess(c, "us"); in testMainstream()
49 assertEquals(name, guess.getID()); in testMainstream()
62 TimeZone guess; in testWeird() local
65 guess = guess(c, "us"); in testWeird()
66 assertEquals(name, guess.getID()); in testWeird()
78 TimeZone guess; in testOld() local
81 guess = guess(c, "us"); in testOld()
[all …]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
DSparseWeakArray.java307 int high = start + len, low = start - 1, guess; in binarySearch() local
310 guess = (high + low) / 2; in binarySearch()
312 if (a[guess] < key) in binarySearch()
313 low = guess; in binarySearch()
315 high = guess; in binarySearch()
/frameworks/base/core/java/android/text/
DLayout.java1011 int high = getLineCount(), low = -1, guess; in getLineForVertical() local
1014 guess = (high + low) / 2; in getLineForVertical()
1016 if (getLineTop(guess) > vertical) in getLineForVertical()
1017 high = guess; in getLineForVertical()
1019 low = guess; in getLineForVertical()
1034 int high = getLineCount(), low = -1, guess; in getLineForOffset() local
1037 guess = (high + low) / 2; in getLineForOffset()
1039 if (getLineStart(guess) > offset) in getLineForOffset()
1040 high = guess; in getLineForOffset()
1042 low = guess; in getLineForOffset()
[all …]
DStaticLayout.java753 int guess;
756 guess = (high + low) >> 1;
757 if (lines[mColumns * guess + TOP] > vertical){
758 high = guess;
760 low = guess;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
DCdmaServiceStateTracker.java1365 TimeZone guess = findTimeZone(offset, dst, when); in getNitzTimeZone() local
1366 if (guess == null) { in getNitzTimeZone()
1368 guess = findTimeZone(offset, !dst, when); in getNitzTimeZone()
1370 if (DBG) log("getNitzTimeZone returning " + (guess == null ? guess : guess.getID())); in getNitzTimeZone()
1371 return guess; in getNitzTimeZone()
1380 TimeZone guess = null; in findTimeZone() local
1386 guess = tz; in findTimeZone()
1391 return guess; in findTimeZone()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
DGsmServiceStateTracker.java1309 TimeZone guess = findTimeZone(offset, dst, when); in getNitzTimeZone() local
1310 if (guess == null) { in getNitzTimeZone()
1312 guess = findTimeZone(offset, !dst, when); in getNitzTimeZone()
1314 if (DBG) log("getNitzTimeZone returning " + (guess == null ? guess : guess.getID())); in getNitzTimeZone()
1315 return guess; in getNitzTimeZone()
1324 TimeZone guess = null; in findTimeZone() local
1330 guess = tz; in findTimeZone()
1335 return guess; in findTimeZone()
/frameworks/base/docs/html/training/keyboard-input/
Dnavigation.jd134 The system provides a best-guess as to which view should be given focus
136 might guess wrong.</p>
/frameworks/base/docs/html/design/patterns/
Dpure-android.jd145 the platform and in order to not have the user guess as to what the meaning of those carets may be.…
/frameworks/compile/mclinker/unittests/
Dtest3.txt48 config.guess config.sub config move-if-change \
/frameworks/base/docs/html/training/sharing/
Dsend.jd34 you can probably guess, indicates that the intent is sending data from one activity to another,
/frameworks/base/docs/html/design/get-started/
Dprinciples.jd124 <p>Take your best guess and act rather than asking first. Too many choices and decisions make people
/frameworks/base/docs/html/tools/help/
DMonkeyImage.jd429 method tries to guess the format from the filename's extension. If no
/frameworks/base/docs/html/guide/topics/ui/
Ddeclaring-layout.jd74 …respondence is often so direct that you can guess what XML attribute corresponds to a class method…