HomeSort by relevance Sort by last modified time
    Searched full:binary_search (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/stlport/test/unit/
bsearch_test.cpp 35 CPPUNIT_ASSERT(binary_search(vector, vector + 100, 42));
44 CPPUNIT_ASSERT(binary_search(labels, labels + count, (const char *)"ff", str_compare));
  /ndk/tests/device/test-gnustl-full/unit/
bsearch_test.cpp 35 CPPUNIT_ASSERT(binary_search(vector, vector + 100, 42));
44 CPPUNIT_ASSERT(binary_search(labels, labels + count, (const char *)"ff", str_compare));
  /ndk/tests/device/test-stlport/unit/
bsearch_test.cpp 35 CPPUNIT_ASSERT(binary_search(vector, vector + 100, 42));
44 CPPUNIT_ASSERT(binary_search(labels, labels + count, (const char *)"ff", str_compare));
  /ndk/sources/cxx-stl/llvm-libc++/test/algorithms/alg.sorting/alg.binary.search/binary.search/
binary_search.pass.cpp 16 // binary_search(Iter first, Iter last, const T& value);
28 assert(std::binary_search(first, last, value) == x);
binary_search_comp.pass.cpp 16 // binary_search(Iter first, Iter last, const T& value, Compare comp);
29 assert(std::binary_search(first, last, value, std::greater<int>()) == x);
  /external/chromium/chrome/browser/sync/engine/
conflict_resolver.cc 165 // binary_search in ProcessConflictSet.
224 !binary_search(conflict_set->begin(), conflict_set->end(), parentid))
233 if (!binary_search(conflict_set->begin(), conflict_set->end(), id))
245 if (!binary_search(conflict_set->begin(), conflict_set->end(), id))
269 !binary_search(conflict_set->begin(), conflict_set->end(), parent_id)) {
292 if (!binary_search(conflict_set->begin(), conflict_set->end(), id)) {
319 if (!binary_search(conflict_set->begin(), conflict_set->end(), id)) {
  /external/llvm/lib/Transforms/Instrumentation/
OptimalEdgeProfiling.cpp 151 if (!std::binary_search(MST.begin(), MST.end(), edge)) {
174 if (!std::binary_search(MST.begin(), MST.end(), edge)) {
185 if (!std::binary_search(MST.begin(), MST.end(), edge)) {
  /external/llvm/include/llvm/Analysis/
LoopInfoImpl.h 44 if (!std::binary_search(LoopBBs.begin(), LoopBBs.end(), *I)) {
78 if (!std::binary_search(LoopBBs.begin(), LoopBBs.end(), *I))
108 if (!std::binary_search(LoopBBs.begin(), LoopBBs.end(), *I))
269 if (std::binary_search(LoopBBs.begin(), LoopBBs.end(), *SI)) {
278 if (std::binary_search(LoopBBs.begin(), LoopBBs.end(), N))
312 assert(std::binary_search(LoopBBs.begin(), LoopBBs.end(), *BI) &&
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
algorithmfwd.h 46 binary_search
200 binary_search(_FIter, _FIter, const _Tp&);
204 binary_search(_FIter, _FIter, const _Tp&, _Compare);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
algorithmfwd.h 48 binary_search
203 binary_search(_FIter, _FIter, const _Tp&);
207 binary_search(_FIter, _FIter, const _Tp&, _Compare);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
algorithmfwd.h 48 binary_search
203 binary_search(_FIter, _FIter, const _Tp&);
207 binary_search(_FIter, _FIter, const _Tp&, _Compare);
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
algorithmfwd.h 46 binary_search
200 binary_search(_FIter, _FIter, const _Tp&);
204 binary_search(_FIter, _FIter, const _Tp&, _Compare);
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
algorithmfwd.h 46 binary_search
200 binary_search(_FIter, _FIter, const _Tp&);
204 binary_search(_FIter, _FIter, const _Tp&, _Compare);
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
algorithmfwd.h 46 binary_search
200 binary_search(_FIter, _FIter, const _Tp&);
204 binary_search(_FIter, _FIter, const _Tp&, _Compare);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
algorithmfwd.h 46 binary_search
200 binary_search(_FIter, _FIter, const _Tp&);
204 binary_search(_FIter, _FIter, const _Tp&, _Compare);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
algorithmfwd.h 48 binary_search
203 binary_search(_FIter, _FIter, const _Tp&);
207 binary_search(_FIter, _FIter, const _Tp&, _Compare);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
algorithmfwd.h 50 binary_search
205 binary_search(_FIter, _FIter, const _Tp&);
209 binary_search(_FIter, _FIter, const _Tp&, _Compare);
  /external/chromium/chrome/browser/sync/sessions/
status_controller.cc 173 return std::binary_search(proj.begin(), proj.end(), index);
  /external/llvm/lib/Transforms/Scalar/
LoopInstSimplify.cpp 157 bool IsExitBlock = std::binary_search(ExitBlocks.begin(),
  /external/stlport/stlport/stl/
_algo.h 479 // Binary search (lower_bound, upper_bound, equal_range, binary_search).
553 inline bool binary_search(_ForwardIter __first, _ForwardIter __last, function
564 inline bool binary_search(_ForwardIter __first, _ForwardIter __last, function
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_algo.h 479 // Binary search (lower_bound, upper_bound, equal_range, binary_search).
553 inline bool binary_search(_ForwardIter __first, _ForwardIter __last, function
564 inline bool binary_search(_ForwardIter __first, _ForwardIter __last, function
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_algo.h 479 // Binary search (lower_bound, upper_bound, equal_range, binary_search).
553 inline bool binary_search(_ForwardIter __first, _ForwardIter __last, function
564 inline bool binary_search(_ForwardIter __first, _ForwardIter __last, function
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_algo.h 479 // Binary search (lower_bound, upper_bound, equal_range, binary_search).
553 inline bool binary_search(_ForwardIter __first, _ForwardIter __last, function
564 inline bool binary_search(_ForwardIter __first, _ForwardIter __last, function
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_algo.h 479 // Binary search (lower_bound, upper_bound, equal_range, binary_search).
553 inline bool binary_search(_ForwardIter __first, _ForwardIter __last, function
564 inline bool binary_search(_ForwardIter __first, _ForwardIter __last, function
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_algo.h 479 // Binary search (lower_bound, upper_bound, equal_range, binary_search).
553 inline bool binary_search(_ForwardIter __first, _ForwardIter __last, function
564 inline bool binary_search(_ForwardIter __first, _ForwardIter __last, function

Completed in 684 milliseconds

1 2 3