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

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/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);
  /external/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/
unique_copy.pass.cpp 93 int jh[sh] = {-1}; local
94 r = std::unique_copy(InIter(ih), InIter(ih+sh), OutIter(jh));
95 assert(base(r) == jh + 2);
96 assert(jh[0] == 0);
97 assert(jh[1] == 1);
unique_copy_pred.pass.cpp 117 int jh[sh] = {-1}; local
119 r = std::unique_copy(InIter(ih), InIter(ih+sh), OutIter(jh), count_equal());
120 assert(base(r) == jh + 2);
121 assert(jh[0] == 0);
122 assert(jh[1] == 1);

Completed in 83 milliseconds