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

1 2 3

  /external/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),
Android.mk 19 test_name := algorithms/alg.nonmodifying/alg.count/count_if
20 test_src := count_if.pass.cpp
  /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/base/memory/
discardable_memory_unittest.cc 50 EXPECT_NE(0, std::count_if(supported_types.begin(),
58 EXPECT_EQ(0, std::count_if(supported_types.begin(),
  /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/lldb/source/Core/
Event.cpp 143 size_t num_printable_chars = std::count_if (m_bytes.begin(), m_bytes.end(), isprint);
  /external/chromium_org/chrome/browser/thumbnails/
content_analysis_unittest.cc 445 int above_count = std::count_if(
458 above_count = std::count_if(
525 int row_above_count = std::count_if(
535 int column_above_count = std::count_if(
704 int non_zero_color_count = std::count_if(
content_analysis.cc 168 size_for_threshold = std::count_if(
613 int auto_segmented_width = count_if(
616 int auto_segmented_height = count_if(
  /external/chromium_org/chrome/browser/extensions/
bundle_installer.cc 194 size_t apps = std::count_if(
  /external/chromium_org/media/base/
stream_parser_unittest.cc 69 return static_cast<size_t>(count_if(merged_buffers_.begin(),
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/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/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.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);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/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/cc/resources/
task_graph_runner.cc 77 return static_cast<size_t>(std::count_if(graph_->edges.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

Completed in 763 milliseconds

1 2 3