/external/clang/test/CodeGenCXX/ |
debug-info-globalinit.cpp | 8 int test() { function 13 static int i = test(); 14 __attribute__((nodebug)) static int j = test();
|
/external/clang/test/Lexer/ |
char-escapes.c | 3 int test['\\' == 92 ? 1 : -1]; variable 4 int test['\"' == 34 ? 1 : -1]; variable 5 int test['\'' == 39 ? 1 : -1]; variable 6 int test['\?' == 63 ? 1 : -1]; variable 7 int test['\a' == 7 ? 1 : -1]; variable 8 int test['\b' == 8 ? 1 : -1]; variable 9 int test['\e' == 27 ? 1 : -1]; // expected-warning {{non-standard escape}} variable 10 int test['\E' == 27 ? 1 : -1]; // expected-warning {{non-standard escape}} variable 11 int test['\f' == 12 ? 1 : -1]; variable 12 int test['\n' == 10 ? 1 : -1] variable 13 int test['\\r' == 13 ? 1 : -1]; variable 14 int test['\\t' == 9 ? 1 : -1]; variable 15 int test['\\v' == 11 ? 1 : -1]; variable 16 int test['\\xa' == 10 ? 1 : -1]; variable 17 int test['\\1' == 1 ? 1 : -1]; variable 18 int test['\\(' == 40 ? 1 : -1]; \/\/ expected-warning {{non-standard escape}} variable 19 int test['\\{' == 123 ? 1 : -1]; \/\/ expected-warning {{non-standard escape}} variable 20 int test['\\[' == 91 ? 1 : -1]; \/\/ expected-warning {{non-standard escape}} variable 21 int test['\\%' == 37 ? 1 : -1]; \/\/ expected-warning {{non-standard escape}} variable [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/ios.base/fmtflags.state/ |
precision.pass.cpp | 19 class test class in inherits:std::ios 23 test() function in class:test 31 const test t;
|
width.pass.cpp | 19 class test class in inherits:std::ios 23 test() function in class:test 31 const test t;
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/stream.buffers/streambuf/streambuf.members/streambuf.buffer/ |
pubsync.pass.cpp | 21 struct test struct in inherits:std::basic_streambuf 24 test() {} function in struct:test 30 test<char> t;
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.get/ |
uflow.pass.cpp | 22 struct test struct in inherits:std::basic_streambuf 25 test() {} function in struct:test 31 test t;
|
underflow.pass.cpp | 20 struct test struct in inherits:std::basic_streambuf 23 test() {} function in struct:test 28 test t;
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.pback/ |
pbackfail.pass.cpp | 22 struct test struct in inherits:std::basic_streambuf 25 test() {} function in struct:test 30 test t;
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.put/ |
overflow.pass.cpp | 20 struct test struct in inherits:std::basic_streambuf 23 test() {} function in struct:test 28 test t;
|
/ndk/sources/cxx-stl/llvm-libc++/test/numerics/numeric.ops/inner.product/ |
inner_product.pass.cpp | 29 test(Iter1 first1, Iter1 last1, Iter2 first2, T init, T x) function 36 test() function 41 test(Iter1(a), Iter1(a), Iter2(b), 0, 0); 42 test(Iter1(a), Iter1(a), Iter2(b), 10, 10); 43 test(Iter1(a), Iter1(a+1), Iter2(b), 0, 6); 44 test(Iter1(a), Iter1(a+1), Iter2(b), 10, 16); 45 test(Iter1(a), Iter1(a+2), Iter2(b), 0, 16); 46 test(Iter1(a), Iter1(a+2), Iter2(b), 10, 26); 47 test(Iter1(a), Iter1(a+sa), Iter2(b), 0, 56); 48 test(Iter1(a), Iter1(a+sa), Iter2(b), 10, 66) [all...] |
inner_product_comp.pass.cpp | 31 test(Iter1 first1, Iter1 last1, Iter2 first2, T init, T x) function 39 test() function 44 test(Iter1(a), Iter1(a), Iter2(b), 1, 1); 45 test(Iter1(a), Iter1(a), Iter2(b), 10, 10); 46 test(Iter1(a), Iter1(a+1), Iter2(b), 1, 7); 47 test(Iter1(a), Iter1(a+1), Iter2(b), 10, 70); 48 test(Iter1(a), Iter1(a+2), Iter2(b), 1, 49); 49 test(Iter1(a), Iter1(a+2), Iter2(b), 10, 490); 50 test(Iter1(a), Iter1(a+sa), Iter2(b), 1, 117649); 51 test(Iter1(a), Iter1(a+sa), Iter2(b), 10, 1176490) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/string.modifiers/string_op_plus_equal/ |
pointer.pass.cpp | 19 test(S s, const typename S::value_type* str, S expected) function 29 test(S(), "", S()); 30 test(S(), "12345", S("12345")); 31 test(S(), "1234567890", S("1234567890")); 32 test(S(), "12345678901234567890", S("12345678901234567890")); 34 test(S("12345"), "", S("12345")); 35 test(S("12345"), "12345", S("1234512345")); 36 test(S("12345"), "1234567890", S("123451234567890")); 37 test(S("12345"), "12345678901234567890", S("1234512345678901234567890")); 39 test(S("1234567890"), "", S("1234567890")) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/string.nonmembers/string_op!=/ |
string_string.pass.cpp | 21 test(const S& lhs, const S& rhs, bool x) function 30 test(S(""), S(""), false); 31 test(S(""), S("abcde"), true); 32 test(S(""), S("abcdefghij"), true); 33 test(S(""), S("abcdefghijklmnopqrst"), true); 34 test(S("abcde"), S(""), true); 35 test(S("abcde"), S("abcde"), false); 36 test(S("abcde"), S("abcdefghij"), true); 37 test(S("abcde"), S("abcdefghijklmnopqrst"), true); 38 test(S("abcdefghij"), S(""), true) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/string.nonmembers/string_operator==/ |
string_string.pass.cpp | 21 test(const S& lhs, const S& rhs, bool x) function 30 test(S(""), S(""), true); 31 test(S(""), S("abcde"), false); 32 test(S(""), S("abcdefghij"), false); 33 test(S(""), S("abcdefghijklmnopqrst"), false); 34 test(S("abcde"), S(""), false); 35 test(S("abcde"), S("abcde"), true); 36 test(S("abcde"), S("abcdefghij"), false); 37 test(S("abcde"), S("abcdefghijklmnopqrst"), false); 38 test(S("abcdefghij"), S(""), false) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/string.nonmembers/string_opgt/ |
string_string.pass.cpp | 21 test(const S& lhs, const S& rhs, bool x) function 30 test(S(""), S(""), false); 31 test(S(""), S("abcde"), false); 32 test(S(""), S("abcdefghij"), false); 33 test(S(""), S("abcdefghijklmnopqrst"), false); 34 test(S("abcde"), S(""), true); 35 test(S("abcde"), S("abcde"), false); 36 test(S("abcde"), S("abcdefghij"), false); 37 test(S("abcde"), S("abcdefghijklmnopqrst"), false); 38 test(S("abcdefghij"), S(""), true) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/string.nonmembers/string_opgt=/ |
string_string.pass.cpp | 21 test(const S& lhs, const S& rhs, bool x) function 30 test(S(""), S(""), true); 31 test(S(""), S("abcde"), false); 32 test(S(""), S("abcdefghij"), false); 33 test(S(""), S("abcdefghijklmnopqrst"), false); 34 test(S("abcde"), S(""), true); 35 test(S("abcde"), S("abcde"), true); 36 test(S("abcde"), S("abcdefghij"), false); 37 test(S("abcde"), S("abcdefghijklmnopqrst"), false); 38 test(S("abcdefghij"), S(""), true) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/string.nonmembers/string_oplt/ |
string_string.pass.cpp | 21 test(const S& lhs, const S& rhs, bool x) function 30 test(S(""), S(""), false); 31 test(S(""), S("abcde"), true); 32 test(S(""), S("abcdefghij"), true); 33 test(S(""), S("abcdefghijklmnopqrst"), true); 34 test(S("abcde"), S(""), false); 35 test(S("abcde"), S("abcde"), false); 36 test(S("abcde"), S("abcdefghij"), true); 37 test(S("abcde"), S("abcdefghijklmnopqrst"), true); 38 test(S("abcdefghij"), S(""), false) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/string.nonmembers/string_oplt=/ |
string_string.pass.cpp | 21 test(const S& lhs, const S& rhs, bool x) function 30 test(S(""), S(""), true); 31 test(S(""), S("abcde"), true); 32 test(S(""), S("abcdefghij"), true); 33 test(S(""), S("abcdefghijklmnopqrst"), true); 34 test(S("abcde"), S(""), false); 35 test(S("abcde"), S("abcde"), true); 36 test(S("abcde"), S("abcdefghij"), true); 37 test(S("abcde"), S("abcdefghijklmnopqrst"), true); 38 test(S("abcdefghij"), S(""), false) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/string.ops/string_compare/ |
pointer.pass.cpp | 28 test(const S& s, const typename S::value_type* str, int x) function 37 test(S(""), "", 0); 38 test(S(""), "abcde", -5); 39 test(S(""), "abcdefghij", -10); 40 test(S(""), "abcdefghijklmnopqrst", -20); 41 test(S("abcde"), "", 5); 42 test(S("abcde"), "abcde", 0); 43 test(S("abcde"), "abcdefghij", -5); 44 test(S("abcde"), "abcdefghijklmnopqrst", -15); 45 test(S("abcdefghij"), "", 10) [all...] |
string.pass.cpp | 28 test(const S& s, const S& str, int x) function 37 test(S(""), S(""), 0); 38 test(S(""), S("abcde"), -5); 39 test(S(""), S("abcdefghij"), -10); 40 test(S(""), S("abcdefghijklmnopqrst"), -20); 41 test(S("abcde"), S(""), 5); 42 test(S("abcde"), S("abcde"), 0); 43 test(S("abcde"), S("abcdefghij"), -5); 44 test(S("abcde"), S("abcdefghijklmnopqrst"), -15); 45 test(S("abcdefghij"), S(""), 10) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/algorithms/alg.modifying.operations/alg.remove/ |
remove_copy.pass.cpp | 24 test() function 41 test<input_iterator<const int*>, output_iterator<int*> >(); 42 test<input_iterator<const int*>, forward_iterator<int*> >(); 43 test<input_iterator<const int*>, bidirectional_iterator<int*> >(); 44 test<input_iterator<const int*>, random_access_iterator<int*> >(); 45 test<input_iterator<const int*>, int*>(); 47 test<forward_iterator<const int*>, output_iterator<int*> >(); 48 test<forward_iterator<const int*>, forward_iterator<int*> >(); 49 test<forward_iterator<const int*>, bidirectional_iterator<int*> >(); 50 test<forward_iterator<const int*>, random_access_iterator<int*> >() [all...] |
remove_copy_if.pass.cpp | 26 test() function 44 test<input_iterator<const int*>, output_iterator<int*> >(); 45 test<input_iterator<const int*>, forward_iterator<int*> >(); 46 test<input_iterator<const int*>, bidirectional_iterator<int*> >(); 47 test<input_iterator<const int*>, random_access_iterator<int*> >(); 48 test<input_iterator<const int*>, int*>(); 50 test<forward_iterator<const int*>, output_iterator<int*> >(); 51 test<forward_iterator<const int*>, forward_iterator<int*> >(); 52 test<forward_iterator<const int*>, bidirectional_iterator<int*> >(); 53 test<forward_iterator<const int*>, random_access_iterator<int*> >() [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/algorithms/alg.modifying.operations/alg.replace/ |
replace_copy.pass.cpp | 27 test() function 43 test<input_iterator<const int*>, output_iterator<int*> >(); 44 test<input_iterator<const int*>, forward_iterator<int*> >(); 45 test<input_iterator<const int*>, bidirectional_iterator<int*> >(); 46 test<input_iterator<const int*>, random_access_iterator<int*> >(); 47 test<input_iterator<const int*>, int*>(); 49 test<forward_iterator<const int*>, output_iterator<int*> >(); 50 test<forward_iterator<const int*>, forward_iterator<int*> >(); 51 test<forward_iterator<const int*>, bidirectional_iterator<int*> >(); 52 test<forward_iterator<const int*>, random_access_iterator<int*> >() [all...] |
replace_copy_if.pass.cpp | 28 test() function 45 test<input_iterator<const int*>, output_iterator<int*> >(); 46 test<input_iterator<const int*>, forward_iterator<int*> >(); 47 test<input_iterator<const int*>, bidirectional_iterator<int*> >(); 48 test<input_iterator<const int*>, random_access_iterator<int*> >(); 49 test<input_iterator<const int*>, int*>(); 51 test<forward_iterator<const int*>, output_iterator<int*> >(); 52 test<forward_iterator<const int*>, forward_iterator<int*> >(); 53 test<forward_iterator<const int*>, bidirectional_iterator<int*> >(); 54 test<forward_iterator<const int*>, random_access_iterator<int*> >() [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/algorithms/alg.sorting/alg.lex.comparison/ |
lexicographical_compare.pass.cpp | 25 test() function 40 test<input_iterator<const int*>, input_iterator<const int*> >(); 41 test<input_iterator<const int*>, forward_iterator<const int*> >(); 42 test<input_iterator<const int*>, bidirectional_iterator<const int*> >(); 43 test<input_iterator<const int*>, random_access_iterator<const int*> >(); 44 test<input_iterator<const int*>, const int*>(); 46 test<forward_iterator<const int*>, input_iterator<const int*> >(); 47 test<forward_iterator<const int*>, forward_iterator<const int*> >(); 48 test<forward_iterator<const int*>, bidirectional_iterator<const int*> >(); 49 test<forward_iterator<const int*>, random_access_iterator<const int*> >() [all...] |