/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/ |
D | copy_alloc.pass.cpp | 32 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; in main() local 33 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() 34 test(std::deque<int, test_allocator<int> >(ab, an, test_allocator<int>(3)), in main() 38 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; in main() local 39 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() 40 test(std::deque<int, other_allocator<int> >(ab, an, other_allocator<int>(3)), in main() 45 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; in main() local 46 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() 47 test(std::deque<int, min_allocator<int> >(ab, an, min_allocator<int>()), in main()
|
D | move_alloc.pass.cpp | 25 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; in main() local 26 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() 29 for (int* p = ab; p < an; ++p) in main() 32 for (int* p = ab; p < an; ++p) in main() 40 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; in main() local 41 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() 44 for (int* p = ab; p < an; ++p) in main() 47 for (int* p = ab; p < an; ++p) in main() 55 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; in main() local 56 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() [all …]
|
D | move_assign.pass.cpp | 25 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; in main() local 26 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() 29 for (int* p = ab; p < an; ++p) in main() 32 for (int* p = ab; p < an; ++p) in main() 41 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; in main() local 42 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() 45 for (int* p = ab; p < an; ++p) in main() 48 for (int* p = ab; p < an; ++p) in main() 57 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; in main() local 58 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() [all …]
|
D | move.pass.cpp | 25 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; in main() local 26 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() 29 for (int* p = ab; p < an; ++p) in main() 32 for (int* p = ab; p < an; ++p) in main() 40 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; in main() local 41 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() 44 for (int* p = ab; p < an; ++p) in main() 47 for (int* p = ab; p < an; ++p) in main() 56 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; in main() local 57 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() [all …]
|
D | iter_iter_alloc.pass.cpp | 39 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; in main() local 40 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() 41 test(input_iterator<const int*>(ab), input_iterator<const int*>(an), test_allocator<int>(3)); in main() 42 … test(forward_iterator<const int*>(ab), forward_iterator<const int*>(an), test_allocator<int>(4)); in main() 43 …test(bidirectional_iterator<const int*>(ab), bidirectional_iterator<const int*>(an), test_allocato… in main() 44 …test(random_access_iterator<const int*>(ab), random_access_iterator<const int*>(an), test_allocato… in main() 46 test(input_iterator<const int*>(ab), input_iterator<const int*>(an), min_allocator<int>()); in main() 47 test(forward_iterator<const int*>(ab), forward_iterator<const int*>(an), min_allocator<int>()); in main() 48 …test(bidirectional_iterator<const int*>(ab), bidirectional_iterator<const int*>(an), min_allocator… in main() 49 …test(random_access_iterator<const int*>(ab), random_access_iterator<const int*>(an), min_allocator… in main()
|
D | copy.pass.cpp | 30 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; in main() local 31 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() 32 test(std::deque<int>(ab, an)); in main() 50 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; in main() local 51 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() 52 test(std::deque<int, min_allocator<int>>(ab, an)); in main()
|
D | op_equal.pass.cpp | 31 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; in main() local 32 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() 33 test(std::deque<int>(ab, an)); in main() 51 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; in main() local 52 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() 53 test(std::deque<int, min_allocator<int>>(ab, an)); in main()
|
D | iter_iter.pass.cpp | 52 int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45}; in main() local 53 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() 54 test(input_iterator<const int*>(ab), input_iterator<const int*>(an)); in main() 55 test(forward_iterator<const int*>(ab), forward_iterator<const int*>(an)); in main() 56 test(bidirectional_iterator<const int*>(ab), bidirectional_iterator<const int*>(an)); in main() 57 test(random_access_iterator<const int*>(ab), random_access_iterator<const int*>(an)); in main() 58 test<stack_allocator<int, 4096> >(ab, an); in main() 60 test<min_allocator<int> >(ab, an); in main()
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
D | BOOST.tests | 100 ab* a 0 1 101 ab* ab 0 2 102 ab* sssabbbbbbsss 3 10 103 ab*c* a 0 1 104 ab*c* abbb 0 4 105 ab*c* accc 0 4 106 ab*c* abbcc 0 5 115 ab+ a -1 -1 116 ab+ ab 0 2 117 ab+ sssabbbbbbsss 3 10 [all …]
|
D | SPENCER.tests | 58 a()b - ab ab 59 a\(\)b b ab ab 106 |ab C EMPTY 107 ab| C EMPTY 162 \(ab*\)[ab]*\1 b ababaaa ababaaa a 172 ab*c & abc abc 173 ab+c - abc abc 174 ab?c - abc abc 176 a\(**\)b b ab ab 194 a{1}b - ab ab [all …]
|
D | PCRE.tests | 81 /a*abc?xyz+pqr{3}ab{2,}xy{4,5}pq{0,6}AB{0,}zz/ 398 ab-c.pq-r. 399 0: ab-c.pq-r. 512 12345678ab 513 0: 12345678ab 608 /^[ab]{1,3}(ab*|b)/ 639 ab 651 ab 670 ab 677 /ab{1,3}bc/ [all …]
|
D | recall2.sed | 5 /\(ab*\)\+/ s//>\1</g
|
/ndk/sources/host-tools/make-3.81/tests/scripts/features/ |
D | patspecific_vars | 30 .PHONY: ab 31 ab: ; @echo $(AAA); echo $(BBB) 60 &run_make_with_options($makefile, "ab", &get_logfile);
|
/ndk/sources/host-tools/make-3.81/tests/scripts/options/ |
D | dash-t | 10 # make 3.79.1 touches only interm-[ab] but reports final-[a] as
|
/ndk/docs/renderscript/ |
D | jquery.js | 20 …ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="stri… argument
|
/ndk/build/gmsl/ |
D | gmsl-tests | 443 $(call test_assert,$(call uniq,a b ba ab b a a ba a),a b ba ab)
|
/ndk/sources/host-tools/sed-4.2.1/po/ |
D | de.po | 299 " schaltet alle GNU-Funktions-Erweiterungen ab.\n"
|
/ndk/sources/host-tools/sed-4.2.1/doc/ |
D | sed.texi | 823 Matches @samp{b} or @samp{ab}. 827 @samp{b}s: @samp{ab} is the shortest possible match, but 3455 ab(?i)c 3488 matches @samp{ab}, @samp{aB}, @samp{c}, and @samp{C}, 3906 (?<=ab(c|de)) 4240 (ab(cd)ef)
|
D | sed-in.texi | 822 Matches @samp{b} or @samp{ab}. 826 @samp{b}s: @samp{ab} is the shortest possible match, but 3288 ab(?i)c 3321 matches @samp{ab}, @samp{aB}, @samp{c}, and @samp{C}, 3739 (?<=ab(c|de)) 4073 (ab(cd)ef)
|
D | sed.info | 593 Matches `b' or `ab'. 596 Matches one or more `a's followed by one or more `b's: `ab' is the
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | fstream | 504 __mdstr = "ab";
|
D | locale | 425 // If the input is "abc", no match is found and "ab" are consumed.
|
/ndk/sources/host-tools/make-3.81/ |
D | configure | 3176 [ab].out )
|
/ndk/sources/host-tools/sed-4.2.1/build-aux/ |
D | texinfo.tex | 8146 \gdef^^ab{\guillemetleft} 8268 \gdef^^ab{\v T}
|
/ndk/sources/host-tools/make-3.81/autom4te.cache/ |
D | output.0 | 3176 [ab].out )
|