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

1 2

  /external/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;
  /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;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/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...]
stl_algobase.h     [all...]
  /prebuilt/ndk/android-ndk-r5/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...]
stl_algobase.h     [all...]
  /prebuilt/ndk/android-ndk-r6/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...]
stl_algobase.h     [all...]
  /prebuilt/ndk/android-ndk-r7/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...]
stl_algobase.h     [all...]
  /external/llvm/include/llvm/ADT/
ilist.h 603 iterator first2 = right.begin(), last2 = right.end(); local
604 while (first1 != last1 && first2 != last2)
612 if (first2 != last2) transfer(last1, right, first2, last2);
674 iterator first2 = this->begin(), last2 = this->end(); local
675 for ( ; first1 != last1 && first2 != last2; ++first1, ++first2)
677 if (first2 == last2)
680 insert(last1, first2, last2);
  /external/stlport/stlport/stl/
_uninitialized.h 366 // copies [first2, last2) into
367 // [result + (last1 - first1), result + (last1 - first1) + (last2 - first2)).
401 // fills [first2 + (last1 - first1), last2) with x.
_algobase.c 362 // Search [first2, last2) as a subsequence in [first1, last1), and return
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_uninitialized.h 366 // copies [first2, last2) into
367 // [result + (last1 - first1), result + (last1 - first1) + (last2 - first2)).
401 // fills [first2 + (last1 - first1), last2) with x.
_algobase.c 362 // Search [first2, last2) as a subsequence in [first1, last1), and return
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_uninitialized.h 366 // copies [first2, last2) into
367 // [result + (last1 - first1), result + (last1 - first1) + (last2 - first2)).
401 // fills [first2 + (last1 - first1), last2) with x.
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_uninitialized.h 366 // copies [first2, last2) into
367 // [result + (last1 - first1), result + (last1 - first1) + (last2 - first2)).
401 // fills [first2 + (last1 - first1), last2) with x.
  /prebuilt/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/stl/
_uninitialized.h 366 // copies [first2, last2) into
367 // [result + (last1 - first1), result + (last1 - first1) + (last2 - first2)).
401 // fills [first2 + (last1 - first1), last2) with x.
  /external/llvm/test/CodeGen/Thumb2/
2010-03-08-addi12-ccout.ll 16 %last2 = alloca [256 x i8], align 4 ; <[256 x i8]*> [#uses=1]
169 %scevgep666 = getelementptr [256 x i8]* %last2, i32 0, i32 %tmp665 ; <i8*> [#uses=1]
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
AttributedCharacterIteratorTest.java 108 assertEquals("Wrong last2", 's', it.last());
  /external/chromium/net/disk_cache/
eviction.cc 552 Rankings::ScopedRankingsBlock last2(rankings_,
562 if (last2.get())
564 Time::FromInternalValue(last2.get()->Data()->last_used));

Completed in 1430 milliseconds

1 2