/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.rotate/ |
D | rotate.pass.cpp | 111 int ie[] = {0, 1, 2, 3, 4}; in test() local 112 const unsigned se = sizeof(ie)/sizeof(ie[0]); in test() 113 r = std::rotate(Iter(ie), Iter(ie), Iter(ie+se)); in test() 114 assert(base(r) == ie+se); in test() 115 assert(ie[0] == 0); in test() 116 assert(ie[1] == 1); in test() 117 assert(ie[2] == 2); in test() 118 assert(ie[3] == 3); in test() 119 assert(ie[4] == 4); in test() 120 r = std::rotate(Iter(ie), Iter(ie+1), Iter(ie+se)); in test() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.unique/ |
D | unique.pass.cpp | 56 int ie[] = {0, 0, 1, 0}; in test() local 57 const unsigned se = sizeof(ie)/sizeof(ie[0]); in test() 58 r = std::unique(Iter(ie), Iter(ie+se)); in test() 59 assert(base(r) == ie + 3); in test() 60 assert(ie[0] == 0); in test() 61 assert(ie[1] == 1); in test() 62 assert(ie[2] == 0); in test() 130 Ptr ie[4]; in test1() local 131 ie[2].reset(&one); in test1() 132 const unsigned se = sizeof(ie)/sizeof(ie[0]); in test1() [all …]
|
D | unique_pred.pass.cpp | 74 int ie[] = {0, 0, 1, 0}; in test() local 75 const unsigned se = sizeof(ie)/sizeof(ie[0]); in test() 77 r = std::unique(Iter(ie), Iter(ie+se), count_equal()); in test() 78 assert(base(r) == ie + 3); in test() 79 assert(ie[0] == 0); in test() 80 assert(ie[1] == 1); in test() 81 assert(ie[2] == 0); in test() 164 Ptr ie[4]; in test1() local 165 ie[2].reset(&one); in test1() 166 const unsigned se = sizeof(ie)/sizeof(ie[0]); in test1() [all …]
|
D | unique_copy.pass.cpp | 59 const int ie[] = {0, 0, 1, 0}; in test() local 60 const unsigned se = sizeof(ie)/sizeof(ie[0]); in test() 62 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je)); in test()
|
D | unique_copy_pred.pass.cpp | 78 const int ie[] = {0, 0, 1, 0}; in test() local 79 const unsigned se = sizeof(ie)/sizeof(ie[0]); in test() 82 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je), count_equal()); in test()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.search/ |
D | search.pass.cpp | 46 int ie[] = {1, 2, 3}; in test() local 47 assert(std::search(Iter1(ib), Iter1(ib+sb), Iter2(ie), Iter2(ie+3)) == Iter1(ib+4)); in test()
|
D | search_pred.pass.cpp | 85 int ie[] = {1, 2, 3}; in test() local 86 …assert(std::search(Iter1(ib), Iter1(ib+sb), Iter2(ie), Iter2(ie+3), count_equal()) == Iter1(ib+4)); in test()
|
/ndk/sources/host-tools/make-3.81/ |
D | README.Amiga | 28 works. Note that the @@ must stand alone (ie. "make@@\" is illegal). 29 Also be carefull that there is a space after the "\" (ie, at the 39 tries to make dummy.h from "src/*.c" (ie. no wildcard-expansion takes
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cstddef | 53 // If compiler doesn't have max_align_t (ie. clang), and it's on 32-bit Android, typedef max_align_…
|
/ndk/sources/host-tools/make-3.81/tests/ |
D | README | 42 that it finds in your path. You may use the -make_path option (ie, 62 is (ie, "chgrp kmem make;chmod g+s make" as root). In any case, the
|
D | NEWS | 75 too, will get in eventually. Contributions of scripts (ie, tests
|
/ndk/sources/host-tools/make-3.81/config/ |
D | texinfo.tex | 445 % Actually, I use \csname\string\foo\endcsname, ie. \\foo, as it is my 2696 % ie, @tab@tab@tab will produce two empty columns. 5238 % the (first) argument ends when '@end verbatim' is reached, ie:
|