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

1 2 3 4 5

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
algorithm.hpp 36 /// @param last2 - second collection end iterator
40 InputIter2 first2, InputIter2 last2 )
42 while( first1 != last1 && first2 != last2 && *first1 == *first2 ) {
59 /// @param last2 - second collection end iterator
64 InputIter2 first2, InputIter2 last2,
67 while( first1 != last1 && first2 != last2 && pred( *first1, *first2 ) ) {
82 /// @param last2 - second collection end iterator
86 ForwardIterator2 first2, ForwardIterator2 last2 )
89 if( std::find( first2, last2, *first1 ) == last2 )
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/range/algorithm/
equal.hpp 30 SinglePassTraversalReadableIterator2 last2,
40 return first2 == last2;
45 if (first2 == last2)
69 SinglePassTraversalReadableIterator2 last2,
80 return first2 == last2;
85 if (first2 == last2)
108 RandomAccessTraversalReadableIterator2 last2,
112 return ((last1 - first1) == (last2 - first2))
122 RandomAccessTraversalReadableIterator2 last2,
125 return ((last1 - first1) == (last2 - first2)
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_AggregationSuggestionsTest.java 124 .addNameParameter("first2 last2")
134 values.put(Contacts.DISPLAY_NAME, "first2 last2");
144 .addNameParameter("first2 last2")
155 values.put(Contacts.DISPLAY_NAME, "first2 last2");
177 .with(StructuredName.FAMILY_NAME, "last2")
  /ndk/sources/cxx-stl/stlport/src/
num_get.cpp 39 const char * first2, const char * last2) {
40 if (first1 == last1 || first2 == last2) return true;
42 --last1; --last2;
48 if (first2 != last2) ++first2;
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_uninitialized.h 328 // move [first2, last2) into
329 // [result, result + (last1 - first1) + (last2 - first2)).
356 // copies [first2, last2) into
357 // [result, result + (last1 - first1) + (last2 - first2)).
406 // fills [first2 + (last1 - first1), last2) with x.
stl_algo.h 678 * @param last2 End of sequence to match.
680 * @p [first1,last1-(last2-first2)) such that @c *(i+N) == @p *(first2+N)
681 * for each @c N in the range @p [0,last2-first2), or @p last1 if no
685 * equal value-by-value with the sequence given by @p [first2,last2) and
692 * @p last1-(last2-first2) where @p last2-first2 is the length of the
695 * @p [first1,last1-(last2-first2))
722 * @param last2 End of sequence to match.
725 * @p [first1,last1-(last2-first2)) such that @c predicate(*(i+N), @p
726 * (first2+N)) is true for each @c N in the range @p [0,last2-first2), o
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_uninitialized.h 328 // move [first2, last2) into
329 // [result, result + (last1 - first1) + (last2 - first2)).
356 // copies [first2, last2) into
357 // [result, result + (last1 - first1) + (last2 - first2)).
406 // fills [first2 + (last1 - first1), last2) with x.
stl_algo.h 678 * @param last2 End of sequence to match.
680 * @p [first1,last1-(last2-first2)) such that @c *(i+N) == @p *(first2+N)
681 * for each @c N in the range @p [0,last2-first2), or @p last1 if no
685 * equal value-by-value with the sequence given by @p [first2,last2) and
692 * @p last1-(last2-first2) where @p last2-first2 is the length of the
695 * @p [first1,last1-(last2-first2))
722 * @param last2 End of sequence to match.
725 * @p [first1,last1-(last2-first2)) such that @c predicate(*(i+N), @p
726 * (first2+N)) is true for each @c N in the range @p [0,last2-first2), o
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_uninitialized.h 328 // move [first2, last2) into
329 // [result, result + (last1 - first1) + (last2 - first2)).
356 // copies [first2, last2) into
357 // [result, result + (last1 - first1) + (last2 - first2)).
406 // fills [first2 + (last1 - first1), last2) with x.
stl_algo.h 678 * @param last2 End of sequence to match.
680 * @p [first1,last1-(last2-first2)) such that @c *(i+N) == @p *(first2+N)
681 * for each @c N in the range @p [0,last2-first2), or @p last1 if no
685 * equal value-by-value with the sequence given by @p [first2,last2) and
692 * @p last1-(last2-first2) where @p last2-first2 is the length of the
695 * @p [first1,last1-(last2-first2))
722 * @param last2 End of sequence to match.
725 * @p [first1,last1-(last2-first2)) such that @c predicate(*(i+N), @p
726 * (first2+N)) is true for each @c N in the range @p [0,last2-first2), o
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
stl_uninitialized.h 328 // move [first2, last2) into
329 // [result, result + (last1 - first1) + (last2 - first2)).
356 // copies [first2, last2) into
357 // [result, result + (last1 - first1) + (last2 - first2)).
406 // fills [first2 + (last1 - first1), last2) with x.
stl_algo.h 678 * @param last2 End of sequence to match.
680 * @p [first1,last1-(last2-first2)) such that @c *(i+N) == @p *(first2+N)
681 * for each @c N in the range @p [0,last2-first2), or @p last1 if no
685 * equal value-by-value with the sequence given by @p [first2,last2) and
692 * @p last1-(last2-first2) where @p last2-first2 is the length of the
695 * @p [first1,last1-(last2-first2))
722 * @param last2 End of sequence to match.
725 * @p [first1,last1-(last2-first2)) such that @c predicate(*(i+N), @p
726 * (first2+N)) is true for each @c N in the range @p [0,last2-first2), o
    [all...]
  /external/libcxx/test/std/algorithms/alg.nonmodifying/alg.find.first.of/
find_first_of.pass.cpp 15 // find_first_of(Iter1 first1, Iter1 last1, Iter2 first2, Iter2 last2);
find_first_of_pred.pass.cpp 16 // find_first_of(Iter1 first1, Iter1 last1, Iter2 first2, Iter2 last2, Pred pred);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.find.first.of/
find_first_of.pass.cpp 15 // find_first_of(Iter1 first1, Iter1 last1, Iter2 first2, Iter2 last2);
find_first_of_pred.pass.cpp 16 // find_first_of(Iter1 first1, Iter1 last1, Iter2 first2, Iter2 last2, Pred pred);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stl_algo.h 663 * @param last2 End of sequence to match.
665 * @p [first1,last1-(last2-first2)) such that @c *(i+N) == @p *(first2+N)
666 * for each @c N in the range @p [0,last2-first2), or @p last1 if no
670 * equal value-by-value with the sequence given by @p [first2,last2) and
677 * @p last1-(last2-first2) where @p last2-first2 is the length of the
680 * @p [first1,last1-(last2-first2))
707 * @param last2 End of sequence to match.
710 * @p [first1,last1-(last2-first2)) such that @c predicate(*(i+N), @p
711 * (first2+N)) is true for each @c N in the range @p [0,last2-first2), o
    [all...]
stl_uninitialized.h 330 // move [first2, last2) into
331 // [result, result + (last1 - first1) + (last2 - first2)).
358 // copies [first2, last2) into
359 // [result, result + (last1 - first1) + (last2 - first2)).
408 // fills [first2 + (last1 - first1), last2) with x.
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stl_algo.h 663 * @param last2 End of sequence to match.
665 * @p [first1,last1-(last2-first2)) such that @c *(i+N) == @p *(first2+N)
666 * for each @c N in the range @p [0,last2-first2), or @p last1 if no
670 * equal value-by-value with the sequence given by @p [first2,last2) and
677 * @p last1-(last2-first2) where @p last2-first2 is the length of the
680 * @p [first1,last1-(last2-first2))
707 * @param last2 End of sequence to match.
710 * @p [first1,last1-(last2-first2)) such that @c predicate(*(i+N), @p
711 * (first2+N)) is true for each @c N in the range @p [0,last2-first2), o
    [all...]
stl_uninitialized.h 330 // move [first2, last2) into
331 // [result, result + (last1 - first1) + (last2 - first2)).
358 // copies [first2, last2) into
359 // [result, result + (last1 - first1) + (last2 - first2)).
408 // fills [first2 + (last1 - first1), last2) with x.
  /external/llvm/test/Transforms/InstSimplify/
ptr_diff.ll 26 %last2 = getelementptr inbounds i8, i8* %last1, i32 8
27 %last3 = getelementptr inbounds i8, i8* %last2, i32 -4
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
stl_uninitialized.h 344 // move [first2, last2) into
345 // [result, result + (last1 - first1) + (last2 - first2)).
372 // copies [first2, last2) into
373 // [result, result + (last1 - first1) + (last2 - first2)).
422 // fills [first2 + (last1 - first1), last2) with x.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_uninitialized.h 344 // move [first2, last2) into
345 // [result, result + (last1 - first1) + (last2 - first2)).
372 // copies [first2, last2) into
373 // [result, result + (last1 - first1) + (last2 - first2)).
422 // fills [first2 + (last1 - first1), last2) with x.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_uninitialized.h 344 // move [first2, last2) into
345 // [result, result + (last1 - first1) + (last2 - first2)).
372 // copies [first2, last2) into
373 // [result, result + (last1 - first1) + (last2 - first2)).
422 // fills [first2 + (last1 - first1), last2) with x.
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_uninitialized.h 346 // move [first2, last2) into
347 // [result, result + (last1 - first1) + (last2 - first2)).
374 // copies [first2, last2) into
375 // [result, result + (last1 - first1) + (last2 - first2)).
424 // fills [first2 + (last1 - first1), last2) with x.

Completed in 1456 milliseconds

1 2 3 4 5