/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.min.max/ |
max_element_comp.pass.cpp | 25 test(Iter first, Iter last) function 39 test(unsigned N) function 45 test(Iter(a), Iter(a+N)); 51 test() function 53 test<Iter>(0); 54 test<Iter>(1); 55 test<Iter>(2); 56 test<Iter>(3); 57 test<Iter>(10); 58 test<Iter>(1000) [all...] |
min_element.pass.cpp | 24 test(Iter first, Iter last) function 38 test(unsigned N) function 44 test(Iter(a), Iter(a+N)); 50 test() function 52 test<Iter>(0); 53 test<Iter>(1); 54 test<Iter>(2); 55 test<Iter>(3); 56 test<Iter>(10); 57 test<Iter>(1000) [all...] |
min_element_comp.pass.cpp | 25 test(Iter first, Iter last) function 39 test(unsigned N) function 45 test(Iter(a), Iter(a+N)); 51 test() function 53 test<Iter>(0); 54 test<Iter>(1); 55 test<Iter>(2); 56 test<Iter>(3); 57 test<Iter>(10); 58 test<Iter>(1000) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.heap.operations/make.heap/ |
make_heap.pass.cpp | 20 void test(unsigned N) function 33 test(0); 34 test(1); 35 test(2); 36 test(3); 37 test(10); 38 test(1000);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.capacity/ |
empty.pass.cpp | 21 test(const S& s) function 30 test(S()); 31 test(S("123")); 32 test(S("12345678901234567890123456789012345678901234567890")); 37 test(S()); 38 test(S("123")); 39 test(S("12345678901234567890123456789012345678901234567890"));
|
length.pass.cpp | 21 test(const S& s) function 30 test(S()); 31 test(S("123")); 32 test(S("12345678901234567890123456789012345678901234567890")); 37 test(S()); 38 test(S("123")); 39 test(S("12345678901234567890123456789012345678901234567890"));
|
max_size.pass.cpp | 21 test(const S& s) function 30 test(S()); 31 test(S("123")); 32 test(S("12345678901234567890123456789012345678901234567890")); 37 test(S()); 38 test(S("123")); 39 test(S("12345678901234567890123456789012345678901234567890"));
|
size.pass.cpp | 21 test(const S& s, typename S::size_type c) function 30 test(S(), 0); 31 test(S("123"), 3); 32 test(S("12345678901234567890123456789012345678901234567890"), 50); 37 test(S(), 0); 38 test(S("123"), 3); 39 test(S("12345678901234567890123456789012345678901234567890"), 50);
|
resize_size_char.pass.cpp | 22 test(S s, typename S::size_type n, typename S::value_type c, S expected) function 41 test(S(), 0, 'a', S()); 42 test(S(), 1, 'a', S("a")); 43 test(S(), 10, 'a', S(10, 'a')); 44 test(S(), 100, 'a', S(100, 'a')); 45 test(S("12345"), 0, 'a', S()); 46 test(S("12345"), 2, 'a', S("12")); 47 test(S("12345"), 5, 'a', S("12345")); 48 test(S("12345"), 15, 'a', S("12345aaaaaaaaaa")); 49 test(S("12345678901234567890123456789012345678901234567890"), 0, 'a', S()) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_replace/ |
size_size_string_size_size.pass.cpp | 25 test(S s, typename S::size_type pos1, typename S::size_type n1, function 51 test(S(""), 0, 0, S(""), 0, 0, S("")); 52 test(S(""), 0, 0, S(""), 0, 1, S("")); 53 test(S(""), 0, 0, S(""), 1, 0, S("can't happen")); 54 test(S(""), 0, 0, S("12345"), 0, 0, S("")); 55 test(S(""), 0, 0, S("12345"), 0, 1, S("1")); 56 test(S(""), 0, 0, S("12345"), 0, 2, S("12")); 57 test(S(""), 0, 0, S("12345"), 0, 4, S("1234")); 58 test(S(""), 0, 0, S("12345"), 0, 5, S("12345")); 59 test(S(""), 0, 0, S("12345"), 0, 6, S("12345")) [all...] |
iter_iter_string.pass.cpp | 25 test(S s, typename S::size_type pos1, typename S::size_type n1, S str, S expected) function 41 test(S(""), 0, 0, S(""), S("")); 42 test(S(""), 0, 0, S("12345"), S("12345")); 43 test(S(""), 0, 0, S("1234567890"), S("1234567890")); 44 test(S(""), 0, 0, S("12345678901234567890"), S("12345678901234567890")); 45 test(S("abcde"), 0, 0, S(""), S("abcde")); 46 test(S("abcde"), 0, 0, S("12345"), S("12345abcde")); 47 test(S("abcde"), 0, 0, S("1234567890"), S("1234567890abcde")); 48 test(S("abcde"), 0, 0, S("12345678901234567890"), S("12345678901234567890abcde")); 49 test(S("abcde"), 0, 1, S(""), S("bcde")) [all...] |
iter_iter_iter_iter.pass.cpp | 24 test(S s, typename S::size_type pos1, typename S::size_type n1, It f, It l, S expected) function 42 test(S(""), 0, 0, str, str+0, S("")); 43 test(S(""), 0, 0, str, str+0, S("")); 44 test(S(""), 0, 0, str, str+1, S("1")); 45 test(S(""), 0, 0, str, str+2, S("12")); 46 test(S(""), 0, 0, str, str+4, S("1234")); 47 test(S(""), 0, 0, str, str+5, S("12345")); 48 test(S(""), 0, 0, str, str+0, S("")); 49 test(S(""), 0, 0, str, str+1, S("1")); 50 test(S(""), 0, 0, str, str+5, S("12345")) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_append/ |
size_char.pass.cpp | 22 test(S s, typename S::size_type n, typename S::value_type c, S expected) function 33 test(S(), 0, 'a', S()); 34 test(S(), 1, 'a', S(1, 'a')); 35 test(S(), 10, 'a', S(10, 'a')); 36 test(S(), 100, 'a', S(100, 'a')); 38 test(S("12345"), 0, 'a', S("12345")); 39 test(S("12345"), 1, 'a', S("12345a")); 40 test(S("12345"), 10, 'a', S("12345aaaaaaaaaa")); 42 test(S("12345678901234567890"), 0, 'a', S("12345678901234567890")); 43 test(S("12345678901234567890"), 1, 'a', S("12345678901234567890a")) [all...] |
string_size_size.pass.cpp | 23 test(S s, S str, typename S::size_type pos, typename S::size_type n, S expected) function 42 test(S(), S(), 0, 0, S()); 43 test(S(), S(), 1, 0, S()); 44 test(S(), S("12345"), 0, 3, S("123")); 45 test(S(), S("12345"), 1, 4, S("2345")); 46 test(S(), S("12345"), 3, 15, S("45")); 47 test(S(), S("12345"), 5, 15, S("")); 48 test(S(), S("12345"), 6, 15, S("not happening")); 49 test(S(), S("12345678901234567890"), 0, 0, S()); 50 test(S(), S("12345678901234567890"), 1, 1, S("2")) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_assign/ |
size_char.pass.cpp | 22 test(S s, typename S::size_type n, typename S::value_type c, S expected) function 33 test(S(), 0, 'a', S()); 34 test(S(), 1, 'a', S(1, 'a')); 35 test(S(), 10, 'a', S(10, 'a')); 36 test(S(), 100, 'a', S(100, 'a')); 38 test(S("12345"), 0, 'a', S()); 39 test(S("12345"), 1, 'a', S(1, 'a')); 40 test(S("12345"), 10, 'a', S(10, 'a')); 42 test(S("12345678901234567890"), 0, 'a', S()); 43 test(S("12345678901234567890"), 1, 'a', S(1, 'a')) [all...] |
string_size_size.pass.cpp | 23 test(S s, S str, typename S::size_type pos, typename S::size_type n, S expected) function 42 test(S(), S(), 0, 0, S()); 43 test(S(), S(), 1, 0, S()); 44 test(S(), S("12345"), 0, 3, S("123")); 45 test(S(), S("12345"), 1, 4, S("2345")); 46 test(S(), S("12345"), 3, 15, S("45")); 47 test(S(), S("12345"), 5, 15, S("")); 48 test(S(), S("12345"), 6, 15, S("not happening")); 49 test(S(), S("12345678901234567890"), 0, 0, S()); 50 test(S(), S("12345678901234567890"), 1, 1, S("2")) [all...] |
/art/test/010-instance/src/ |
InstanceTest.java | 20 * Test some instanceof stuff. 36 Object test; local 38 test = x; 39 System.out.println("x instanceof X (true): " + (test instanceof X)); 40 System.out.println("x instanceof Y (false): " + (test instanceof Y)); 41 test = y; 42 System.out.println("y instanceof X (true): " + (test instanceof X)); 43 System.out.println("y instanceof Y (true): " + (test instanceof Y)); 45 test = xar; 47 + (test instanceof Object)) [all...] |
/dalvik/tests/010-instance/src/ |
InstanceTest.java | 6 * Test some instanceof stuff. 22 Object test; local 24 test = x; 25 System.out.println("x instanceof X (true): " + (test instanceof X)); 26 System.out.println("x instanceof Y (false): " + (test instanceof Y)); 27 test = y; 28 System.out.println("y instanceof X (true): " + (test instanceof X)); 29 System.out.println("y instanceof Y (true): " + (test instanceof Y)); 31 test = xar; 33 + (test instanceof Object)) [all...] |
/libcore/luni/src/test/java/libcore/java/text/ |
OldSimpleDateFormatTest.java | 52 public void test(String pattern, Calendar cal, String expected, int field) { method in class:OldSimpleDateFormatTest.FormatTester 81 assertEquals("Test z for TimeZone : " + timeZoneId, expected1, 85 assertEquals("Test Z for TimeZone : " + timeZoneId, expected2, 95 // Test for method java.text.SimpleDateFormat(java.lang.String, 122 // Test for method java.text.SimpleDateFormat(java.lang.String, 148 // Test for method void 152 // This test doesn't work like this. The cause lies inside of icu 154 // test fails because the pattern template contains characters that are 163 // test the new "Z" pattern char 170 // test invalid pattern 233 FormatTester test = new FormatTester(); local 361 FormatTester test = new FormatTester(); local 380 FormatTester test = new FormatTester(); local 399 FormatTester test = new FormatTester(); local 444 FormatTester test = new FormatTester(); local [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.value.ops/ |
conj.pass.cpp | 21 test(const std::complex<T>& z, std::complex<T> x) function 28 test() function 30 test(std::complex<T>(1, 2), std::complex<T>(1, -2)); 31 test(std::complex<T>(-1, 2), std::complex<T>(-1, -2)); 32 test(std::complex<T>(1, -2), std::complex<T>(1, 2)); 33 test(std::complex<T>(-1, -2), std::complex<T>(-1, 2)); 38 test<float>(); 39 test<double>(); 40 test<long double>();
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_op_plus_equal/ |
char.pass.cpp | 21 test(S s, typename S::value_type str, S expected) function 32 test(S(), 'a', S("a")); 33 test(S("12345"), 'a', S("12345a")); 34 test(S("1234567890"), 'a', S("1234567890a")); 35 test(S("12345678901234567890"), 'a', S("12345678901234567890a")); 40 test(S(), 'a', S("a")); 41 test(S("12345"), 'a', S("12345a")); 42 test(S("1234567890"), 'a', S("1234567890a")); 43 test(S("12345678901234567890"), 'a', S("12345678901234567890a"));
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/ |
EclipseTestResultsGeneratorNoMail.java | 42 EclipseTestResultsGeneratorNoMail test = new EclipseTestResultsGeneratorNoMail(); local 43 test.buildType="N"; 44 test.setIsBuildTested(true); 45 test.setDropTokenList( 47 test.getDropTokensFromList(test.getDropTokenList()); 48 test.setXmlDirectoryName("C:\\junk\\testresults\\xml"); 49 test.setHtmlDirectoryName("C:\\junk\\testresults\\html"); 50 test.setDropDirectoryName("C:\\junk"); 51 test.setTestResultsTemplateFileName [all...] |
/external/openssh/openbsd-compat/regress/ |
strduptest.c | 23 test(const char *a) function 40 test(""); 41 test("a"); 42 test("\0"); 43 test("abcdefghijklmnopqrstuvwxyz");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.generate/ |
generate.pass.cpp | 30 test() function 43 test<forward_iterator<int*> >(); 44 test<bidirectional_iterator<int*> >(); 45 test<random_access_iterator<int*> >(); 46 test<int*>();
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/ |
default.pass.cpp | 23 test() function 31 test<int, std::allocator<int> >(); 32 test<NotConstructible, stack_allocator<NotConstructible, 1> >(); 34 test<int, min_allocator<int> >(); 35 test<NotConstructible, min_allocator<NotConstructible> >();
|