HomeSort by relevance Sort by last modified time
    Searched defs:jh (Results 1 - 2 of 2) sorted by null

  /ndk/sources/cxx-stl/llvm-libc++/test/algorithms/alg.modifying.operations/alg.unique/
unique_copy.pass.cpp 78 int jh[sh] = {-1}; local
79 r = std::unique_copy(InIter(ih), InIter(ih+sh), OutIter(jh));
80 assert(base(r) == jh + 2);
81 assert(jh[0] == 0);
82 assert(jh[1] == 1);
unique_copy_pred.pass.cpp 101 int jh[sh] = {-1}; local
103 r = std::unique_copy(InIter(ih), InIter(ih+sh), OutIter(jh), count_equal());
104 assert(base(r) == jh + 2);
105 assert(jh[0] == 0);
106 assert(jh[1] == 1);

Completed in 43 milliseconds