Symbol: BinarySearchIndex
headers/os/support/ObjectList.h
100
int32 BinarySearchIndex(const void *, GenericCompareFunctionWithState,
headers/os/support/ObjectList.h
198
int32 BinarySearchIndex(const T&item,
headers/os/support/ObjectList.h
200
int32 BinarySearchIndex(const T&item,
headers/os/support/ObjectList.h
746
return _PointerList_::BinarySearchIndex(&item,
headers/os/support/ObjectList.h
756
return _PointerList_::BinarySearchIndex(&item,
headers/os/support/ObjectList.h
767
return _PointerList_::BinarySearchIndex(&key,
headers/os/support/ObjectList.h
776
int32 index = _PointerList_::BinarySearchIndex(item,
headers/os/support/ObjectList.h
792
int32 index = _PointerList_::BinarySearchIndex(item,
headers/os/support/ObjectList.h
807
int32 index = _PointerList_::BinarySearchIndex(item,
headers/os/support/ObjectList.h
821
int32 index = _PointerList_::BinarySearchIndex(item,
headers/os/support/ObjectList.h
834
int32 index = _PointerList_::BinarySearchIndex(&copyThis,
headers/os/support/ObjectList.h
853
int32 index = _PointerList_::BinarySearchIndex(&copyThis,
headers/os/support/ObjectList.h
871
int32 index = _PointerList_::BinarySearchIndex(&copyThis,
headers/os/support/ObjectList.h
888
int32 index = _PointerList_::BinarySearchIndex(&copyThis,
headers/os/support/ObjectList.h
99
int32 BinarySearchIndex(const void *, GenericCompareFunction) const;
src/apps/showimage/ImageFileNavigator.cpp
304
index = fEntries.BinarySearchIndex(currentRef,
src/kits/debugger/debug_info/TeamDebugInfo.cpp
148
int32 index = fFunctions.BinarySearchIndex(*function,
src/kits/debugger/model/Team.cpp
410
int32 index = fBreakpoints.BinarySearchIndex(*breakpoint,
src/kits/debugger/model/Team.cpp
524
int32 index = fWatchpoints.BinarySearchIndex(*watchpoint,
src/kits/support/PointerList.cpp
342
return helper.BinarySearchIndex(key, this);
src/kits/support/PointerList.cpp
351
return helper.BinarySearchIndex(key, this);
src/kits/support/PointerList.cpp
360
return helper.BinarySearchIndex(key, this);
src/kits/support/PointerList.cpp
48
int32 BinarySearchIndex(const void *key, const BList *list);
src/tests/kits/support/PointerListTest.cpp
427
searchIndex = list.BinarySearchIndex(item, Item::Compare);
src/tests/kits/support/PointerListTest.cpp
430
searchIndex = list.BinarySearchIndex(item, CompareWithData, gData);
src/tests/kits/support/PointerListTest.cpp
437
searchIndex = list.BinarySearchIndex(&notInListLow, Item::Compare);
src/tests/kits/support/PointerListTest.cpp
441
searchIndex = list.BinarySearchIndex(&notInListHigh, Item::Compare);
src/tests/kits/support/PointerListTest.cpp
452
int index = list.BinarySearchIndex(&notInList, Item::Compare);