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

1 2 3

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.count/
count_if.pass.cpp 15 // count_if(Iter first, Iter last, Pred pred);
27 assert(std::count_if(input_iterator<const int*>(ia),
30 assert(std::count_if(input_iterator<const int*>(ia),
33 assert(std::count_if(input_iterator<const int*>(ia),
  /external/stlport/test/unit/
count_test.cpp 62 int elements = count_if(numbers.begin(), numbers.end(), odd);
66 count_if(numbers.begin(), numbers.end(), odd, elements);
logic_test.cpp 50 int n = count_if(input, input + 7, logical_not<bool>());
func_test.cpp 49 int n = count_if(v.begin(), v.end(), bigger);
  /ndk/tests/device/test-gnustl-full/unit/
count_test.cpp 62 int elements = count_if(numbers.begin(), numbers.end(), odd);
66 count_if(numbers.begin(), numbers.end(), odd, elements);
logic_test.cpp 50 int n = count_if(input, input + 7, logical_not<bool>());
func_test.cpp 49 int n = count_if(v.begin(), v.end(), bigger);
  /ndk/tests/device/test-stlport/unit/
count_test.cpp 62 int elements = count_if(numbers.begin(), numbers.end(), odd);
66 count_if(numbers.begin(), numbers.end(), odd, elements);
logic_test.cpp 50 int n = count_if(input, input + 7, logical_not<bool>());
func_test.cpp 49 int n = count_if(v.begin(), v.end(), bigger);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
PrerenderingTest.cpp 135 return std::count_if(m_addedPrerenders.begin(), m_addedPrerenders.end(), std::bind1st(WebPrerenderEqual(), prerender));
140 return std::count_if(m_canceledPrerenders.begin(), m_canceledPrerenders.end(), std::bind1st(WebPrerenderEqual(), prerender));
145 return std::count_if(m_abandonedPrerenders.begin(), m_abandonedPrerenders.end(), std::bind1st(WebPrerenderEqual(), prerender));
  /external/chromium_org/chrome/browser/thumbnails/
content_analysis_unittest.cc 464 int above_count = std::count_if(
477 above_count = std::count_if(
544 int row_above_count = std::count_if(
554 int column_above_count = std::count_if(
724 int non_zero_color_count = std::count_if(
content_analysis.cc 168 size_for_threshold = std::count_if(
616 int auto_segmented_width = count_if(
619 int auto_segmented_height = count_if(
  /external/chromium_org/chrome/browser/extensions/
bundle_installer.cc 190 size_t apps = std::count_if(
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
algorithmfwd.h 102 count_if(_IIter, _IIter, _Predicate);
106 count_if(_IIter, _IIter, _Predicate, __gnu_parallel::sequential_tag);
110 count_if(_IIter, _IIter, _Predicate, __gnu_parallel::_Parallelism);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/parallel/
algorithmfwd.h 102 count_if(_IIter, _IIter, _Predicate);
106 count_if(_IIter, _IIter, _Predicate, __gnu_parallel::sequential_tag);
110 count_if(_IIter, _IIter, _Predicate, __gnu_parallel::_Parallelism);
  /external/chromium_org/chrome/browser/rlz/
rlz.cc 239 std::count_if(session_startup_prefs.urls.begin(),
  /external/stlport/stlport/stl/
_algo.h 65 // count_if
68 count_if(_InputIter __first, _InputIter __last, _Predicate __pred) { function
115 count_if(_InputIter __first, _InputIter __last, _Predicate __pred, _Size& __n) { function
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_algo.h 65 // count_if
68 count_if(_InputIter __first, _InputIter __last, _Predicate __pred) { function
115 count_if(_InputIter __first, _InputIter __last, _Predicate __pred, _Size& __n) { function
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_algo.h 65 // count_if
68 count_if(_InputIter __first, _InputIter __last, _Predicate __pred) { function
115 count_if(_InputIter __first, _InputIter __last, _Predicate __pred, _Size& __n) { function
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_algo.h 65 // count_if
68 count_if(_InputIter __first, _InputIter __last, _Predicate __pred) { function
115 count_if(_InputIter __first, _InputIter __last, _Predicate __pred, _Size& __n) { function
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_algo.h 65 // count_if
68 count_if(_InputIter __first, _InputIter __last, _Predicate __pred) { function
115 count_if(_InputIter __first, _InputIter __last, _Predicate __pred, _Size& __n) { function
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_algo.h 65 // count_if
68 count_if(_InputIter __first, _InputIter __last, _Predicate __pred) { function
115 count_if(_InputIter __first, _InputIter __last, _Predicate __pred, _Size& __n) { function
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_algo.h 65 // count_if
68 count_if(_InputIter __first, _InputIter __last, _Predicate __pred) { function
115 count_if(_InputIter __first, _InputIter __last, _Predicate __pred, _Size& __n) { function
  /external/chromium/testing/gtest/src/
gtest-internal-inl.h 274 return static_cast<int>(std::count_if(c.begin(), c.end(), predicate));
    [all...]

Completed in 778 milliseconds

1 2 3