/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.cons/ |
D | construct_iter_iter.pass.cpp | 37 int* an = a + sizeof(a)/sizeof(a[0]); in main() local 38 test<std::vector<int> >(input_iterator<const int*>(a), input_iterator<const int*>(an)); in main() 39 test<std::vector<int> >(forward_iterator<const int*>(a), forward_iterator<const int*>(an)); in main() 40 …<std::vector<int> >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an)); in main() 41 …<std::vector<int> >(random_access_iterator<const int*>(a), random_access_iterator<const int*>(an)); in main() 42 test<std::vector<int> >(a, an); in main() 44 …r<int, stack_allocator<int, 63> > >(input_iterator<const int*>(a), input_iterator<const int*>(an)); in main() 45 …t, stack_allocator<int, 18> > >(forward_iterator<const int*>(a), forward_iterator<const int*>(an)); in main() 46 …ocator<int, 18> > >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an)); in main() 47 …ocator<int, 18> > >(random_access_iterator<const int*>(a), random_access_iterator<const int*>(an)); in main() [all …]
|
D | construct_iter_iter_alloc.pass.cpp | 50 int* an = a + sizeof(a)/sizeof(a[0]); in main() local 52 test<std::vector<int> >(input_iterator<const int*>(a), input_iterator<const int*>(an), alloc); in main() 53 … test<std::vector<int> >(forward_iterator<const int*>(a), forward_iterator<const int*>(an), alloc); in main() 54 …ector<int> >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an), alloc); in main() 55 …ector<int> >(random_access_iterator<const int*>(a), random_access_iterator<const int*>(an), alloc); in main() 56 test<std::vector<int> >(a, an, alloc); in main() 61 int* an = a + sizeof(a)/sizeof(a[0]); in main() local 63 …r<int, min_allocator<int>> >(input_iterator<const int*>(a), input_iterator<const int*>(an), alloc); in main() 64 …t, min_allocator<int>> >(forward_iterator<const int*>(a), forward_iterator<const int*>(an), alloc); in main() 65 …ator<int>> >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an), alloc); in main() [all …]
|
D | copy_alloc.pass.cpp | 36 int* an = a + sizeof(a)/sizeof(a[0]); in main() local 37 test(std::vector<int>(a, an), std::allocator<int>()); in main() 54 int* an = a + sizeof(a)/sizeof(a[0]); in main() local 55 test(std::vector<int, min_allocator<int>>(a, an), min_allocator<int>()); in main()
|
D | copy.pass.cpp | 36 int* an = a + sizeof(a)/sizeof(a[0]); in main() local 37 test(std::vector<int>(a, an)); in main() 64 int* an = a + sizeof(a)/sizeof(a[0]); in main() local 65 test(std::vector<int, min_allocator<int>>(a, an)); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/ |
D | construct_iter_iter.pass.cpp | 35 bool* an = a + sizeof(a)/sizeof(a[0]); in main() local 36 test<std::vector<bool> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an)); in main() 37 test<std::vector<bool> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an)); in main() 38 …d::vector<bool> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an)); in main() 39 …d::vector<bool> >(random_access_iterator<const bool*>(a), random_access_iterator<const bool*>(an)); in main() 40 test<std::vector<bool> >(a, an); in main() 42 …ctor<bool, min_allocator<bool>> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an)); in main() 43 …<bool, min_allocator<bool>> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an)); in main() 44 …llocator<bool>> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an)); in main() 45 …llocator<bool>> >(random_access_iterator<const bool*>(a), random_access_iterator<const bool*>(an)); in main() [all …]
|
D | construct_iter_iter_alloc.pass.cpp | 36 bool* an = a + sizeof(a)/sizeof(a[0]); in main() local 39 … test<std::vector<bool> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an), alloc); in main() 40 …test<std::vector<bool> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an), allo… in main() 41 …or<bool> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an), alloc); in main() 42 …or<bool> >(random_access_iterator<const bool*>(a), random_access_iterator<const bool*>(an), alloc); in main() 43 test<std::vector<bool> >(a, an, alloc); in main() 48 …ol, min_allocator<bool>> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an), alloc); in main() 49 …min_allocator<bool>> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an), alloc); in main() 50 …r<bool>> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an), alloc); in main() 51 …r<bool>> >(random_access_iterator<const bool*>(a), random_access_iterator<const bool*>(an), alloc); in main() [all …]
|
D | copy.pass.cpp | 35 bool* an = a + sizeof(a)/sizeof(a[0]); in main() local 36 test(std::vector<bool>(a, an)); in main() 55 bool* an = a + sizeof(a)/sizeof(a[0]); in main() local 56 test(std::vector<bool, min_allocator<bool>>(a, an)); in main()
|
D | copy_alloc.pass.cpp | 34 int* an = a + sizeof(a)/sizeof(a[0]); in main() local 35 test(std::vector<bool>(a, an), std::allocator<bool>()); in main() 52 int* an = a + sizeof(a)/sizeof(a[0]); in main() local 53 test(std::vector<bool, min_allocator<bool>>(a, an), min_allocator<bool>()); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/ |
D | iter_iter_alloc.pass.cpp | 40 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() local 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_alloc.pass.cpp | 33 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() local 34 test(std::deque<int, test_allocator<int> >(ab, an, test_allocator<int>(3)), in main() 39 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() local 40 test(std::deque<int, other_allocator<int> >(ab, an, other_allocator<int>(3)), in main() 46 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() local 47 test(std::deque<int, min_allocator<int> >(ab, an, min_allocator<int>()), in main()
|
D | move_alloc.pass.cpp | 26 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() local 29 for (int* p = ab; p < an; ++p) in main() 32 for (int* p = ab; p < an; ++p) in main() 41 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() local 44 for (int* p = ab; p < an; ++p) in main() 47 for (int* p = ab; p < an; ++p) in main() 56 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() local 59 for (int* p = ab; p < an; ++p) in main() 62 for (int* p = ab; p < an; ++p) in main() 72 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() local [all …]
|
D | move_assign.pass.cpp | 26 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() local 29 for (int* p = ab; p < an; ++p) in main() 32 for (int* p = ab; p < an; ++p) in main() 42 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() local 45 for (int* p = ab; p < an; ++p) in main() 48 for (int* p = ab; p < an; ++p) in main() 58 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() local 61 for (int* p = ab; p < an; ++p) in main() 64 for (int* p = ab; p < an; ++p) in main() 75 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() local [all …]
|
D | move.pass.cpp | 26 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() local 29 for (int* p = ab; p < an; ++p) in main() 32 for (int* p = ab; p < an; ++p) in main() 41 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() local 44 for (int* p = ab; p < an; ++p) in main() 47 for (int* p = ab; p < an; ++p) in main() 57 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() local 60 for (int* p = ab; p < an; ++p) in main() 63 for (int* p = ab; p < an; ++p) in main()
|
D | iter_iter.pass.cpp | 53 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() local 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()
|
D | copy.pass.cpp | 31 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() local 32 test(std::deque<int>(ab, an)); in main() 51 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() local 52 test(std::deque<int, min_allocator<int>>(ab, an)); in main()
|
D | op_equal.pass.cpp | 32 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() local 33 test(std::deque<int>(ab, an)); in main() 52 int* an = ab + sizeof(ab)/sizeof(ab[0]); in main() local 53 test(std::deque<int, min_allocator<int>>(ab, an)); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/priqueue.cons/ |
D | ctor_iter_iter.pass.cpp | 21 int* an = a + sizeof(a)/sizeof(a[0]); in main() local 22 std::priority_queue<int> q(a, an); in main() 23 assert(q.size() == an - a); in main()
|
D | ctor_iter_iter_comp.pass.cpp | 22 int* an = a + sizeof(a)/sizeof(a[0]); in main() local 24 q(a, an, std::greater<int>()); in main() 25 assert(q.size() == an - a); in main()
|
/ndk/sources/host-tools/make-3.81/po/ |
D | ga.po | 30 msgstr "touch: N�l an chartlann `%s' ann" 51 "n�orbh fh�idir le lbr$set_module an t-eolas mod�il a bhaint amach, st�das = %" 63 "n� f�idir leabharlann `%s' a oscailt chun cuardach a dh�anamh ar an mball `%" 73 msgstr " (is f�idir go bhfuil an t-ainm teasctha)" 193 msgstr "D�anann an athr�g athch�rsach `%s' tagairt d� f�in (sa deireadh)" 285 msgid "# File is an intermediate prerequisite." 286 msgstr "# T� an comhad ina r�amhriachtanas idirmhe�nach." 294 msgstr "# N�or seice�ladh an t-am mionathraithe riamh." 302 msgstr "# Is cianaosta an comhad seo." 311 msgstr "# Nuashonra�odh an comhad." [all …]
|
D | en@quot.header | 14 # When output to an UTF-8 terminal, the quotation characters appear perfectly. 15 # When output to an ISO-8859-1 terminal, the single quotation marks are 19 # When output to an ASCII terminal, the single quotation marks are
|
D | en@boldquot.header | 14 # When output to an UTF-8 terminal, the quotation characters appear perfectly. 15 # When output to an ISO-8859-1 terminal, the single quotation marks are 19 # When output to an ASCII terminal, the single quotation marks are
|
/ndk/build/tools/toolchain-licenses/ |
D | COPYING.RUNTIME | 10 This GCC Runtime Library Exception ("Exception") is an additional 24 A file is an "Independent Module" if it either requires the Runtime 25 Library for execution after a Compilation Process, or makes use of an 40 input to an assembler, loader, linker and/or execution 56 optimize any GCC intermediate representations would not qualify as an
|
/ndk/sources/host-tools/make-3.81/tests/scripts/misc/ |
D | close_stdout | 3 $description = "Make sure make exits with an error if stdout is full.";
|
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/ |
D | origin | 18 # Set an environment variable 48 # Reset an environment variable
|
/ndk/sources/host-tools/make-3.81/tests/scripts/features/ |
D | comments | 7 ."an error since it is within a comment. We then continue the \n" 9 ."the comment really continued, we place an echo command with some\n"
|