HomeSort by relevance Sort by last modified time
    Searched refs:guess (Results 1 - 25 of 108) sorted by null

1 2 3 4 5

  /frameworks/base/core/tests/coretests/src/android/util/
TimeUtilsTest.java 41 TimeZone guess; local
44 guess = guess(c, "us");
45 assertEquals(name, guess.getID());
48 guess = guess(c, "us");
49 assertEquals(name, guess.getID());
62 TimeZone guess; local
65 guess = guess(c, "us")
78 TimeZone guess; local
392 TimeZone guess; local
416 TimeZone guess; local
424 private static TimeZone guess(Calendar c, String country) { method in class:TimeUtilsTest
    [all...]
  /cts/tests/tests/util/src/android/util/cts/
TimeUtilsTest.java 39 TimeZone guess; local
42 guess = guessTimeZone(c, "us");
43 assertEquals(name, guess.getID());
46 guess = guessTimeZone(c, "us");
47 assertEquals(name, guess.getID());
60 TimeZone guess; local
63 guess = guessTimeZone(c, "us");
64 assertEquals(name, guess.getID());
76 TimeZone guess; local
79 guess = guessTimeZone(c, "us")
96 TimeZone guess; local
    [all...]
  /dalvik/libdex/
DexCatch.cpp 59 int guess = (min + max) >> 1; local
60 const DexTry* pTry = &pTries[guess];
64 max = guess - 1;
71 min = guess + 1;
DexDataMap.cpp 104 u4 guess = offsets[guessIdx]; local
106 if (offset < guess) {
108 } else if (offset > guess) {
  /external/srtp/crypto/replay/
rdbx.c 76 * index_guess(&local, &guess, seq_from_packet). This function
77 * returns the difference of the guess and the local value. The local
78 * xtd_seq_num_t can be moved forward to the guess using the function
79 * index_advance(&guess, delta), where delta is the difference.
111 * index_guess(local, guess, s)
115 * (from a newly arrived packet), sets the contents of *guess to
116 * contain the best guess of the packet index to which s corresponds,
117 * and returns the difference between *guess and *local
125 xtd_seq_num_t *guess,
136 uint32_t guess_roc = ((high32(*guess) << 16)
    [all...]
  /external/srtp/crypto/include/
rdbx.h 75 * rdbx_estimate_index(rdbx, guess, s)
78 * sets the contents of *guess to contain the best guess of the packet
80 * *guess and the locally stored synch info
85 xtd_seq_num_t *guess,
162 * index_guess(local, guess, s)
166 * arrived packet), sets the contents of *guess to contain the best
167 * guess of the packet index to which s corresponds, and returns the
168 * difference between *guess and *local
173 xtd_seq_num_t *guess,
    [all...]
  /external/v8/src/
strtod.cc 366 // The variable guess should be a close guess that is either the correct double
374 double guess) {
375 if (guess == V8_INFINITY) {
376 return guess;
379 DiyFp upper_boundary = Double(guess).UpperBoundary();
405 return guess;
407 return Double(guess).NextDouble();
408 } else if ((Double(guess).Significand() & 1) == 0) {
410 return guess;
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameSplitter.java 499 // There is no separator. Try to guess family name.
888 * Makes the best guess at the expected full name style based on the character set
922 * Makes the best guess at the expected full name style based on the character set
939 int guess = guessFullNameStyle(name.familyName); local
1044 int guess = guessPhoneticNameStyle(name.phoneticGivenName); local
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
SparseIntArray.java 239 int high = start + len, low = start - 1, guess; local
242 guess = (high + low) / 2;
244 if (a[guess] < key)
245 low = guess;
247 high = guess;
SparseArray.java 336 int high = start + len, low = start - 1, guess; local
339 guess = (high + low) / 2;
341 if (a[guess] < key)
342 low = guess;
344 high = guess;
  /frameworks/base/core/java/android/util/
SparseBooleanArray.java 224 int high = start + len, low = start - 1, guess; local
227 guess = (high + low) / 2;
229 if (a[guess] < key)
230 low = guess;
232 high = guess;
SparseIntArray.java 235 int high = start + len, low = start - 1, guess; local
238 guess = (high + low) / 2;
240 if (a[guess] < key)
241 low = guess;
243 high = guess;
SparseLongArray.java 227 int high = start + len, low = start - 1, guess; local
230 guess = (high + low) / 2;
232 if (a[guess] < key)
233 low = guess;
235 high = guess;
LongSparseArray.java 337 int high = start + len, low = start - 1, guess; local
340 guess = (high + low) / 2;
342 if (a[guess] < key)
343 low = guess;
345 high = guess;
SparseArray.java 337 int high = start + len, low = start - 1, guess; local
340 guess = (high + low) / 2;
342 if (a[guess] < key)
343 low = guess;
345 high = guess;
  /external/libvpx/libvpx/vp8/common/
mfqe.c 101 unsigned int guess; local
106 guess=0;
109 guess |= (1<<p);
110 if (x<guess*guess)
111 guess -= (1<<p);
114 /* choose between guess or guess+1 */
115 return guess+(guess*guess+guess+1<=x)
    [all...]
  /external/icu4c/test/perf/collationperf/
collperf.cpp 499 int guess = -1; local
502 if (newGuess == guess)
504 guess = newGuess;
506 r = (*pf)((gSortedLines[line])->name, (gSortedLines[guess])->name);
512 hi = guess;
514 lo = guess;
537 int guess = -1; local
540 if (newGuess == guess)
542 guess = newGuess;
546 ri = strcmp((gSortedLines[line])->icuSortKey, (gSortedLines[guess])->icuSortKey)
588 int guess = -1; local
639 int guess = -1; local
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSparseArray.java 338 int high = start + len, low = start - 1, guess; local
341 guess = (high + low) / 2;
343 if (a[guess] < key)
344 low = guess;
346 high = guess;
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
SparseWeakArray.java 354 int high = start + len, low = start - 1, guess; local
357 guess = (high + low) / 2;
359 if (a[guess] < key)
360 low = guess;
362 high = guess;
  /frameworks/support/v4/java/android/support/v4/util/
LongSparseArray.java 335 int high = start + len, low = start - 1, guess; local
338 guess = (high + low) / 2;
340 if (a[guess] < key)
341 low = guess;
343 high = guess;
SparseArrayCompat.java 326 int high = start + len, low = start - 1, guess; local
329 guess = (high + low) / 2;
331 if (a[guess] < key)
332 low = guess;
334 high = guess;
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebEditorClient.cpp 702 BSTR guess; local
703 if (enumGuessesObj->Next(1, &guess, &fetched) != S_OK)
705 detail.guesses.append(String(guess, SysStringLen(guess)));
706 SysFreeString(guess);
721 BString guess(detail.guesses[i]);
722 guessesBSTRs.append(guess.release());
775 BSTR guess; local
776 if (enumGuessesObj->Next(1, &guess, &fetched) != S_OK)
778 guesses.append(String(guess, SysStringLen(guess)))
    [all...]
  /external/chromium/sdch/open-vcdiff/packages/deb/
rules 14 # from having to guess our platform (since we know it already)
64 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
65 cp -f /usr/share/misc/config.guess config.guess
  /external/open-vcdiff/packages/deb/
rules 14 # from having to guess our platform (since we know it already)
64 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
65 cp -f /usr/share/misc/config.guess config.guess
  /dalvik/dx/src/com/android/dx/dex/code/
OutputFinisher.java 488 * opcode as a first "best guess" and then pessimizes from there
492 * @param guess {@code null-ok;} the current guess as to the best
498 private Dop findOpcodeForInsn(DalvInsn insn, Dop guess) {
500 * Note: The initial guess might be null, meaning that an
505 while (guess != null) {
506 if (guess.getFormat().isCompatible(insn)) {
512 guess.getOpcode() != Opcodes.CONST_STRING) {
517 guess = Dops.getNextOrNull(guess, dexOptions)
    [all...]

Completed in 2383 milliseconds

1 2 3 4 5