Searched refs:guess (Results 1 – 8 of 8) sorted by relevance
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/util/ |
D | SparseWeakArray.java | 308 int high = start + len, low = start - 1, guess; in binarySearch() local 311 guess = (high + low) / 2; in binarySearch() 313 if (a[guess] < key) in binarySearch() 314 low = guess; in binarySearch() 316 high = guess; in binarySearch()
|
/frameworks/base/services/core/java/com/android/server/biometrics/sensors/ |
D | BiometricUserState.java | 184 int guess = 1; in getUniqueName() local 187 String name = mContext.getString(getNameTemplateResource(), guess); in getUniqueName() 191 guess++; in getUniqueName()
|
/frameworks/base/core/java/android/text/ |
D | Layout.java | 1484 int high = getLineCount(), low = -1, guess; in getLineForVertical() local 1487 guess = (high + low) / 2; in getLineForVertical() 1489 if (getLineTop(guess) > vertical) in getLineForVertical() 1490 high = guess; in getLineForVertical() 1492 low = guess; in getLineForVertical() 1507 int high = getLineCount(), low = -1, guess; in getLineForOffset() local 1510 guess = (high + low) / 2; in getLineForOffset() 1512 if (getLineStart(guess) > offset) in getLineForOffset() 1513 high = guess; in getLineForOffset() 1515 low = guess; in getLineForOffset() [all …]
|
D | StaticLayout.java | 1192 int guess; 1195 guess = (high + low) >> 1; 1196 if (lines[mColumns * guess + TOP] > vertical){ 1197 high = guess; 1199 low = guess;
|
/frameworks/base/libs/hwui/ |
D | SkiaInterpolator.cpp | 72 Dot14 guess = eval_cubic(t, A, B, C); in SkUnitCubicInterp() local 73 if (x < guess) { in SkUnitCubicInterp()
|
/frameworks/base/media/java/android/media/ |
D | ExifInterface.java | 1827 Pair<Integer, Integer> guess = guessDataFormat(value); in setAttribute() local 1829 if (exifTag.primaryFormat == guess.first || exifTag.primaryFormat == guess.second) { in setAttribute() 1831 } else if (exifTag.secondaryFormat != -1 && (exifTag.secondaryFormat == guess.first in setAttribute() 1832 || exifTag.secondaryFormat == guess.second)) { in setAttribute() 1845 + IFD_FORMAT_NAMES[guess.first] + (guess.second == -1 ? "" : ", " in setAttribute() 1846 + IFD_FORMAT_NAMES[guess.second]) + ")"); in setAttribute()
|
/frameworks/av/media/codec2/docs/ |
D | doxygen.config | 284 # Fortran. In the later case the parser tries to guess whether the code is fixed
|
/frameworks/base/media/native/midi/include/ |
D | Doxyfile | 284 # Fortran. In the later case the parser tries to guess whether the code is fixed
|