Searched refs:test (Results 51 - 75 of 4153) sorted by relevance

1234567891011>>

/external/libcxx/test/std/experimental/string.view/string.view.comparison/
H A Dopne.string_view.string.pass.cpp22 test(const std::string &lhs, S rhs, bool x) function
32 test("", S(""), false);
33 test("", S("abcde"), true);
34 test("", S("abcdefghij"), true);
35 test("", S("abcdefghijklmnopqrst"), true);
36 test("abcde", S(""), true);
37 test("abcde", S("abcde"), false);
38 test("abcde", S("abcdefghij"), true);
39 test("abcde", S("abcdefghijklmnopqrst"), true);
40 test("abcdefghi
[all...]
/external/libcxx/test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/
H A Ddefault.pass.cpp22 test() function
29 test<input_iterator<char*> >();
30 test<forward_iterator<char*> >();
31 test<bidirectional_iterator<char*> >();
32 test<random_access_iterator<char*> >();
33 test<char*>();
/external/v8/test/mjsunit/regress/
H A Dregress-131923.js28 assertFalse(/\u9999{4}/.test(""));
29 assertTrue(/\u9999{0,4}/.test(""));
30 assertFalse(/\u9999{4,}/.test(""));
H A Dregress-2226.js32 var test = foo.test = bar.test = baz;
34 assertEquals(baz, test);
35 assertEquals(baz, foo.test);
36 assertEquals(baz, bar.test);
H A Dregress-148378.js30 function test() { function
32 test();
38 test();
H A Dregress-1132.js33 // If the test starts to fail in Genesis, consider increasing this constant.
35 function test() { function
37 test(1, test(1));
46 test();
/external/libcxx/test/std/input.output/iostreams.base/ios.base/fmtflags.state/
H A Dflags_fmtflags.pass.cpp19 class test class in inherits:std::ios
23 test() function in class:test
31 test t;
32 assert(t.flags() == (test::skipws | test::dec));
33 test::fmtflags f = t.flags(test::hex | test::right);
34 assert(f == (test::skipws | test
[all...]
/external/clang/test/CodeGen/
H A D2003-08-20-vfork-bug.c4 test() { function
H A D2004-05-21-IncompleteEnum.c3 void test(enum foo *X) { function
H A Dint-to-pointer.c3 void *test(int i) function
H A Dopaque-pointer.c2 struct test;
4 typedef void (*my_func) (struct test *);
7 struct test { struct
11 char f(struct test *t) {
/external/clang/test/CodeGenCXX/
H A Dmicrosoft-interface.cpp4 int test() { function
10 virtual int test() override {
11 return I::test();
17 return s.test();
/external/clang/test/Index/
H A Dpreamble-reparse-warn-macro.c3 // RUN: env CINDEXTEST_EDITING=1 c-index-test -test-load-source-reparse 2 local %s -I %t 2>&1 > %t.out.txt | FileCheck %s
11 void test();
/external/clang/test/Sema/
H A Dmemset-invalid.c4 char test() { function
/external/clang/test/SemaCXX/
H A Ddo-while-scope.cpp4 void test() { function
/external/libcxx/test/std/utilities/time/time.traits/time.traits.is_fp/
H A Dtreat_as_floating_point.pass.cpp19 test() function
29 test<int>();
30 test<unsigned>();
31 test<char>();
32 test<bool>();
33 test<float>();
34 test<double>();
35 test<long double>();
36 test<A>();
/external/v8/test/mjsunit/
H A Dmath-sqrt.js30 function test(expected_sqrt, value) { function
42 test(2, 4);
43 test(0.1, 0.01);
46 test(NaN, NaN);
47 test(NaN, -1);
48 test(+0, +0);
49 test(-0, -0);
50 test(Infinity, Infinity);
52 test(NaN, -Infinity);
/external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/
H A Dis_iec559.pass.cpp10 // test numeric_limits
18 test() function
20 static_assert(std::numeric_limits<T>::is_iec559 == expected, "is_iec559 test 1");
21 static_assert(std::numeric_limits<const T>::is_iec559 == expected, "is_iec559 test 2");
22 static_assert(std::numeric_limits<volatile T>::is_iec559 == expected, "is_iec559 test 3");
23 static_assert(std::numeric_limits<const volatile T>::is_iec559 == expected, "is_iec559 test 4");
28 test<bool, false>();
29 test<char, false>();
30 test<signed char, false>();
31 test<unsigne
[all...]
/external/libcxx/test/std/strings/basic.string/string.ops/string_compare/
H A Dsize_size_string_size_size.pass.cpp33 test(const S& s, typename S::size_type pos1, typename S::size_type n1, function
68 test(S(""), 0, 0, S(""), 0, 0, 0);
69 test(S(""), 0, 0, S(""), 0, 1, 0);
70 test(S(""), 0, 0, S(""), 1, 0, 0);
71 test(S(""), 0, 0, S("abcde"), 0, 0, 0);
72 test(S(""), 0, 0, S("abcde"), 0, 1, -1);
73 test(S(""), 0, 0, S("abcde"), 0, 2, -2);
74 test(S(""), 0, 0, S("abcde"), 0, 4, -4);
75 test(S(""), 0, 0, S("abcde"), 0, 5, -5);
76 test(
[all...]
/external/libcxx/test/std/strings/basic.string/string.modifiers/string_op_plus_equal/
H A Dpointer.pass.cpp21 test(S s, const typename S::value_type* str, S expected) function
32 test(S(), "", S());
33 test(S(), "12345", S("12345"));
34 test(S(), "1234567890", S("1234567890"));
35 test(S(), "12345678901234567890", S("12345678901234567890"));
37 test(S("12345"), "", S("12345"));
38 test(S("12345"), "12345", S("1234512345"));
39 test(S("12345"), "1234567890", S("123451234567890"));
40 test(S("12345"), "12345678901234567890", S("1234512345678901234567890"));
42 test(
[all...]
/external/libcxx/test/std/strings/basic.string/string.nonmembers/string_op!=/
H A Dpointer_string.pass.cpp22 test(const typename S::value_type* lhs, const S& rhs, bool x) function
31 test("", S(""), false);
32 test("", S("abcde"), true);
33 test("", S("abcdefghij"), true);
34 test("", S("abcdefghijklmnopqrst"), true);
35 test("abcde", S(""), true);
36 test("abcde", S("abcde"), false);
37 test("abcde", S("abcdefghij"), true);
38 test("abcde", S("abcdefghijklmnopqrst"), true);
39 test("abcdefghi
[all...]
H A Dstring_pointer.pass.cpp22 test(const S& lhs, const typename S::value_type* rhs, bool x) function
31 test(S(""), "", false);
32 test(S(""), "abcde", true);
33 test(S(""), "abcdefghij", true);
34 test(S(""), "abcdefghijklmnopqrst", true);
35 test(S("abcde"), "", true);
36 test(S("abcde"), "abcde", false);
37 test(S("abcde"), "abcdefghij", true);
38 test(S("abcde"), "abcdefghijklmnopqrst", true);
39 test(
[all...]
H A Dstring_string.pass.cpp23 test(const S& lhs, const S& rhs, bool x) function
32 test(S(""), S(""), false);
33 test(S(""), S("abcde"), true);
34 test(S(""), S("abcdefghij"), true);
35 test(S(""), S("abcdefghijklmnopqrst"), true);
36 test(S("abcde"), S(""), true);
37 test(S("abcde"), S("abcde"), false);
38 test(S("abcde"), S("abcdefghij"), true);
39 test(S("abcde"), S("abcdefghijklmnopqrst"), true);
40 test(
[all...]
/external/libcxx/test/std/strings/basic.string/string.nonmembers/string_operator==/
H A Dpointer_string.pass.cpp22 test(const typename S::value_type* lhs, const S& rhs, bool x) function
31 test("", S(""), true);
32 test("", S("abcde"), false);
33 test("", S("abcdefghij"), false);
34 test("", S("abcdefghijklmnopqrst"), false);
35 test("abcde", S(""), false);
36 test("abcde", S("abcde"), true);
37 test("abcde", S("abcdefghij"), false);
38 test("abcde", S("abcdefghijklmnopqrst"), false);
39 test("abcdefghi
[all...]
H A Dstring_pointer.pass.cpp22 test(const S& lhs, const typename S::value_type* rhs, bool x) function
31 test(S(""), "", true);
32 test(S(""), "abcde", false);
33 test(S(""), "abcdefghij", false);
34 test(S(""), "abcdefghijklmnopqrst", false);
35 test(S("abcde"), "", false);
36 test(S("abcde"), "abcde", true);
37 test(S("abcde"), "abcdefghij", false);
38 test(S("abcde"), "abcdefghijklmnopqrst", false);
39 test(
[all...]

Completed in 587 milliseconds

1234567891011>>