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

1 2 3 4 5 6 7 8 9

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
find_if.hpp 13 // $Id: find_if.hpp 49274 2008-10-11 07:22:05Z agurtovoy $
26 BOOST_MPL_AUX_COMMON_NAME_WKND(find_if)
32 struct find_if struct in namespace:boost::mpl
43 BOOST_MPL_AUX_LAMBDA_SUPPORT(2,find_if,(Sequence,Predicate))
46 BOOST_MPL_AUX_NA_SPEC(2,find_if)
find.hpp 17 #include <boost/mpl/find_if.hpp>
29 : find_if< Sequence,same_as<T> >
  /external/libcxx/test/algorithms/alg.nonmodifying/alg.find/
find_if.pass.cpp 15 // find_if(Iter first, Iter last, Pred pred);
27 input_iterator<const int*> r = std::find_if(input_iterator<const int*>(ia),
31 r = std::find_if(input_iterator<const int*>(ia),
Android.mk 19 test_name := algorithms/alg.nonmodifying/alg.find/find_if
20 test_src := find_if.pass.cpp
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.find/
find_if.pass.cpp 15 // find_if(Iter first, Iter last, Pred pred);
27 input_iterator<const int*> r = std::find_if(input_iterator<const int*>(ia),
31 r = std::find_if(input_iterator<const int*>(ia),
  /external/oprofile/libutil++/
glob_filter.cpp 30 cit = find_if(exclude.begin(), exclude.end(), fnmatcher(str));
34 cit = find_if(include.begin(), include.end(), fnmatcher(str));
path_filter.cpp 29 cit = find_if(exclude.begin(), exclude.end(),
43 cit = find_if(exclude.begin(), exclude.end(), fnmatcher(base));
48 cit = find_if(include.begin(), include.end(), fnmatcher(base));
56 cit = find_if(include.begin(), include.end(),
  /external/chromium_org/components/invalidation/
mock_ack_handler.cc 47 InvalidationVector::const_iterator it = std::find_if(
56 InvalidationVector::const_iterator it = std::find_if(
65 InvalidationVector::const_iterator it = std::find_if(
74 InvalidationVector::const_iterator it1 = std::find_if(
89 InvalidationVector::iterator it = std::find_if(
108 InvalidationVector::iterator it = std::find_if(
  /external/stlport/test/unit/
bcompos_test.cpp 41 int* p = find_if((int*)array, (int*)array + 6, b);
51 int* p = find_if((int*)array, (int*)array + 6,
unary_test.cpp 48 int* p = find_if((int*)array, (int*)array + 3, unary_negate<odd>(odd()));
55 int* p = find_if((int*)array, (int*)array + 3, not1(odd()));
67 int* p = find_if((int*)array, (int*)array + 3, not1(ptr_fun(test_func)));
ptr2_test.cpp 73 int* p = find_if((int*)array, (int*)array + 3, pointer_to_unary_function<int, bool>(even));
81 int* p = find_if((int*)array, (int*)array + 3, ptr_fun(even));
find_test.cpp 78 int *location = find_if((int*)numbers, (int*)numbers + 6, odd);
84 int *out_range = find_if((int*)numbers_even, (int*)numbers_even + 6, odd);
103 iter = find_if(v.begin(), v.end(), div_3);
  /ndk/tests/device/test-gnustl-full/unit/
bcompos_test.cpp 41 int* p = find_if((int*)array, (int*)array + 6, b);
51 int* p = find_if((int*)array, (int*)array + 6,
unary_test.cpp 48 int* p = find_if((int*)array, (int*)array + 3, unary_negate<odd>(odd()));
55 int* p = find_if((int*)array, (int*)array + 3, not1(odd()));
67 int* p = find_if((int*)array, (int*)array + 3, not1(ptr_fun(test_func)));
ptr2_test.cpp 73 int* p = find_if((int*)array, (int*)array + 3, pointer_to_unary_function<int, bool>(even));
81 int* p = find_if((int*)array, (int*)array + 3, ptr_fun(even));
find_test.cpp 78 int *location = find_if((int*)numbers, (int*)numbers + 6, odd);
84 int *out_range = find_if((int*)numbers_even, (int*)numbers_even + 6, odd);
103 iter = find_if(v.begin(), v.end(), div_3);
  /ndk/tests/device/test-stlport/unit/
bcompos_test.cpp 41 int* p = find_if((int*)array, (int*)array + 6, b);
51 int* p = find_if((int*)array, (int*)array + 6,
unary_test.cpp 48 int* p = find_if((int*)array, (int*)array + 3, unary_negate<odd>(odd()));
55 int* p = find_if((int*)array, (int*)array + 3, not1(odd()));
67 int* p = find_if((int*)array, (int*)array + 3, not1(ptr_fun(test_func)));
ptr2_test.cpp 73 int* p = find_if((int*)array, (int*)array + 3, pointer_to_unary_function<int, bool>(even));
81 int* p = find_if((int*)array, (int*)array + 3, ptr_fun(even));
find_test.cpp 78 int *location = find_if((int*)numbers, (int*)numbers + 6, odd);
84 int *out_range = find_if((int*)numbers_even, (int*)numbers_even + 6, odd);
103 iter = find_if(v.begin(), v.end(), div_3);
  /external/chromium_org/components/autofill/core/browser/
autofill-inl.h 31 return std::find_if(
  /external/chromium_org/content/renderer/media/
tagged_list.h 57 typename ItemList::iterator it = std::find_if(
70 return std::find_if(items_.begin(), items_.end(), predicate) !=
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
algorithm.hpp 114 if( std::find_if( first2, last2, std::bind1st( pred, *first1 ) ) == last2 )
164 while( --it1 != first1 && std::find_if( first2, last2, std::bind1st( pred, *it1 ) ) == last2 ) {}
166 return it1 == first1 && std::find_if( first2, last2, std::bind1st( pred, *it1 ) ) == last2 ? last1 : it1;
211 while( --it1 != first1 && std::find_if( first2, last2, std::bind1st( pred, *it1 ) ) != last2 ) {}
213 return it1 == first1 && std::find_if( first2, last2, std::bind1st( pred, *it1 ) ) == last2 ? last1 : it1;
  /external/lldb/source/Core/
VMRange.cpp 25 pos = std::find_if( coll.begin(), end, in_range_predicate );
37 pos = std::find_if( coll.begin(), end, in_range_predicate );
49 VMRange::const_iterator pos = std::find_if (begin, end, in_range_predicate);
  /external/chromium_org/content/shell/renderer/test_runner/
mock_grammar_check.cc 22 if (std::find_if(string_text.begin(), string_text.end(), IsASCIIAlpha) ==

Completed in 498 milliseconds

1 2 3 4 5 6 7 8 9