HomeSort by relevance Sort by last modified time
    Searched refs:binarySearch (Results 26 - 50 of 94) sorted by null

12 3 4

  /external/webkit/Source/JavaScriptCore/dfg/
DFGGraph.h 97 BasicBlock* block = binarySearch<BasicBlock, unsigned, BasicBlock::getBytecodeBegin>(begin, m_blocks.size(), bytecodeBegin);
  /libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
ElementTypeTest.java 48 assertTrue(Arrays.binarySearch(values, ElementType.METHOD) >= 0);
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
AreaCodeMap.java 157 currentIndex = binarySearch(0, currentIndex, phonePrefix);
176 private int binarySearch(int start, int end, long value) {
FlyweightMapStorage.java 143 Arrays.binarySearch(descriptionPool, description, new Comparator<String>() {
MappingFileProvider.java 158 int index = Arrays.binarySearch(countryCallingCodes, countryCallingCode);
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactsSectionIndexer.java 86 int index = Arrays.binarySearch(mPositions, position);
  /libcore/luni/src/main/java/javax/net/ssl/
DefaultHostnameVerifier.java 128 int x = Arrays.binarySearch(BAD_COUNTRY_2LDS, s);
  /libcore/luni/src/main/java/libcore/icu/
TimeZones.java 110 int index = Arrays.binarySearch(zoneStrings, needle, ZONE_STRINGS_COMPARATOR);
  /bionic/libc/tools/zoneinfo/
ZoneInfo.java 183 int trans = Arrays.binarySearch(mTransitions, unix);
208 int trans = Arrays.binarySearch(mTransitions, unix);
  /external/guava/src/com/google/common/collect/
Ordering.java 383 * {@link Collections#binarySearch(List, Object, Comparator) Searches}
390 public int binarySearch(List<? extends T> sortedList, T key) {
391 return Collections.binarySearch(sortedList, key, this);
ImmutableSortedMap.java 405 i = binarySearch(key);
412 private int binarySearch(Object key) {
655 int index = binarySearch(key);
  /external/jdiff/src/jdiff/
APIComparator.java 59 int idx = Collections.binarySearch(newAPI.packages_, oldPkg);
88 int idx = Collections.binarySearch(oldAPI.packages_, newPkg);
166 int idx = Collections.binarySearch(newPkg.classes_, oldClass);
194 int idx = Collections.binarySearch(oldPkg.classes_, newClass);
374 int idx = Collections.binarySearch(newClass.ctors_, oldCtor);
423 int idx = Collections.binarySearch(oldClass.ctors_, newCtor);
474 // NOTE: there was a problem with the binarySearch for
479 // int idx = Collections.binarySearch(newClass.methods_, oldMethod);
497 // has changed, because the binarySearch did not find it.
534 // See note above about searching an array instead of binarySearch
    [all...]
Comments.java 199 int idx = Collections.binarySearch(comments.commentsList_, key);
448 int idx = Collections.binarySearch(newComments.commentsList_, oldComment);
  /libcore/luni/src/main/java/libcore/util/
ZoneInfo.java 150 int transition = Arrays.binarySearch(mTransitions, unix);
166 int transition = Arrays.binarySearch(mTransitions, unix);
ZoneInfoDB.java 185 int index = Arrays.binarySearch(ids, id);
  /libcore/luni/src/test/java/libcore/java/util/
OldCollectionsTest.java 56 * java.util.Collections#binarySearch(java.util.List,
64 int index = Collections.binarySearch(lst, new Integer(2), null);
76 Collections.binarySearch(ll, new Integer(10), null);
84 * java.util.Collections#binarySearch(java.util.List,
91 assertEquals(-1, Collections.binarySearch(localList, new Object()));
94 Collections.binarySearch(localList, new Integer(1));
109 Collections.binarySearch(ll, new Integer(10));
  /libcore/luni/src/test/java/tests/java/sql/
DatabaseMetaDataTest.java 358 assertTrue("Invalid table name", Arrays.binarySearch(
360 assertTrue("Invalid field name", Arrays.binarySearch(fields, rs
362 assertTrue("Invalid nullable value", Arrays.binarySearch(
364 assertTrue("Invalid nullable code", Arrays.binarySearch(
378 assertTrue("Wrong table name", Arrays.binarySearch(tablesName,
393 assertTrue("Wrong table name", Arrays.binarySearch(tablesName,
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
Collections2Test.java 54 * @tests java.util.Collections#binarySearch(java.util.List,
62 int index = Collections.binarySearch(lst, new Integer(2), null);
67 * @tests java.util.Collections#binarySearch(java.util.List,
74 assertEquals(-1, Collections.binarySearch(localList, new Object()));
77 Collections.binarySearch(localList, new Integer(1));
  /external/webkit/Source/JavaScriptCore/bytecode/
CodeBlock.h 179 // valueAtPosition helpers for the binarySearch algorithm.
250 return *(binarySearch<StructureStubInfo, void*, getStructureStubInfoReturnLocation>(m_structureStubInfos.begin(), m_structureStubInfos.size(), returnAddress.value()));
255 return *(binarySearch<CallLinkInfo, void*, getCallLinkInfoReturnLocation>(m_callLinkInfos.begin(), m_callLinkInfos.size(), returnAddress.value()));
260 return *(binarySearch<MethodCallLinkInfo, void*, getMethodCallLinkInfoReturnLocation>(m_methodCallLinkInfos.begin(), m_methodCallLinkInfos.size(), returnAddress.value()));
270 return binarySearch<CallReturnOffsetToBytecodeOffset, unsigned, getCallReturnOffset>(callIndices.begin(), callIndices.size(), getJITCode().offsetOf(returnAddress.value()))->bytecodeOffset;
  /frameworks/base/core/java/android/preference/
PreferenceGroup.java 143 int insertionIndex = Collections.binarySearch(mPreferenceList, preference);
  /sdk/layoutopt/libs/uix/src/com/android/layoutopt/uix/groovy/
LayoutAnalysisCategory.java 66 return Arrays.binarySearch(sContainers, element.getNodeName()) >= 0;
  /dalvik/dx/src/com/android/dx/command/findusages/
FindUsages.java 71 int typeIndex = Collections.binarySearch(dex.typeIds(), typeStringIndex);
  /external/apache-http/src/org/apache/http/conn/ssl/
AbstractVerifier.java 197 int x = Arrays.binarySearch(BAD_COUNTRY_2LDS, s);
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
FileClientSessionCache.java 147 if (Arrays.binarySearch(initialFiles, name) < 0) {
  /external/mesa3d/test/
egl.cpp     [all...]

Completed in 1419 milliseconds

12 3 4