/frameworks/base/core/tests/coretests/src/android/util/ |
D | TimeUtilsTest.java | 41 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/ |
D | SparseWeakArray.java | 307 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/ |
D | Layout.java | 1011 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 …]
|
D | StaticLayout.java | 753 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/ |
D | CdmaServiceStateTracker.java | 1365 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/ |
D | GsmServiceStateTracker.java | 1309 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/ |
D | navigation.jd | 134 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/ |
D | pure-android.jd | 145 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/ |
D | test3.txt | 48 config.guess config.sub config move-if-change \
|
/frameworks/base/docs/html/training/sharing/ |
D | send.jd | 34 you can probably guess, indicates that the intent is sending data from one activity to another,
|
/frameworks/base/docs/html/design/get-started/ |
D | principles.jd | 124 <p>Take your best guess and act rather than asking first. Too many choices and decisions make people
|
/frameworks/base/docs/html/tools/help/ |
D | MonkeyImage.jd | 429 method tries to guess the format from the filename's extension. If no
|
/frameworks/base/docs/html/guide/topics/ui/ |
D | declaring-layout.jd | 74 …respondence is often so direct that you can guess what XML attribute corresponds to a class method…
|