HomeSort by relevance Sort by last modified time
    Searched defs:test (Results 251 - 275 of 9198) sorted by null

<<11121314151617181920>>

  /external/libcxx/test/std/numerics/complex.number/complex.ops/
complex_plus_scalar.pass.cpp 21 test(const std::complex<T>& lhs, const T& rhs, std::complex<T> x) function
28 test() function
34 test(lhs, rhs, x);
40 test(lhs, rhs, x);
46 test<float>();
47 test<double>();
48 test<long double>();
complex_times_scalar.pass.cpp 21 test(const std::complex<T>& lhs, const T& rhs, std::complex<T> x) function
28 test() function
33 test(lhs, rhs, x);
38 test<float>();
39 test<double>();
40 test<long double>();
scalar_divide_complex.pass.cpp 21 test(const T& lhs, const std::complex<T>& rhs, std::complex<T> x) function
28 test() function
33 test(lhs, rhs, x);
38 test<float>();
39 test<double>();
40 test<long double>();
scalar_minus_complex.pass.cpp 21 test(const T& lhs, const std::complex<T>& rhs, std::complex<T> x) function
28 test() function
34 test(lhs, rhs, x);
40 test(lhs, rhs, x);
46 test<float>();
47 test<double>();
48 test<long double>();
scalar_plus_complex.pass.cpp 21 test(const T& lhs, const std::complex<T>& rhs, std::complex<T> x) function
28 test() function
34 test(lhs, rhs, x);
40 test(lhs, rhs, x);
46 test<float>();
47 test<double>();
48 test<long double>();
scalar_times_complex.pass.cpp 21 test(const T& lhs, const std::complex<T>& rhs, std::complex<T> x) function
28 test() function
33 test(lhs, rhs, x);
38 test<float>();
39 test<double>();
40 test<long double>();
  /external/libcxx/test/std/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>();
imag.pass.cpp 21 test() function
29 test<float>();
30 test<double>();
31 test<long double>();
real.pass.cpp 21 test() function
29 test<float>();
30 test<double>();
31 test<long double>();
  /external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.lcong/
result_type.pass.cpp 24 test() function
33 test<unsigned short>();
34 test<unsigned int>();
35 test<unsigned long>();
36 test<unsigned long long>();
  /external/libcxx/test/std/re/re.regex/re.regex.construct/
il_flg.pass.cpp 25 test(std::initializer_list<char> il, std::regex_constants::syntax_option_type f, unsigned mc) function
40 test({'\\', '(', 'a', '\\', ')'}, std::regex_constants::basic, 1);
41 test({'\\', '(', 'a', '[', 'b', 'c', ']', '\\', ')'}, std::regex_constants::basic, 1);
42 test({'\\', '(', 'a', '\\', '(', '[', 'b', 'c', ']', '\\', ')', '\\', ')'}, std::regex_constants::basic, 2);
43 test({'(', 'a', '(', '[', 'b', 'c', ']', ')', ')'}, std::regex_constants::basic, 0);
45 test({'\\', '(', 'a', '\\', ')'}, std::regex_constants::extended, 0);
46 test({'\\', '(', 'a', '[', 'b', 'c', ']', '\\', ')'}, std::regex_constants::extended, 0);
47 test({'\\', '(', 'a', '\\', '(', '[', 'b', 'c', ']', '\\', ')', '\\', ')'}, std::regex_constants::extended, 0);
48 test({'(', 'a', '(', '[', 'b', 'c', ']', ')', ')'}, std::regex_constants::extended, 2);
50 test({'\\', '(', 'a', '\\', ')'}, std::regex_constants::ECMAScript, 0)
    [all...]
ptr.pass.cpp 22 test(const CharT* p, unsigned mc) function
31 test("\\(a\\)", 0);
32 test("\\(a[bc]\\)", 0);
33 test("\\(a\\([bc]\\)\\)", 0);
34 test("(a([bc]))", 2);
ptr_flg.pass.cpp 22 test(const CharT* p, std::regex_constants::syntax_option_type f, unsigned mc) function
31 test("\\(a\\)", std::regex_constants::basic, 1);
32 test("\\(a[bc]\\)", std::regex_constants::basic, 1);
33 test("\\(a\\([bc]\\)\\)", std::regex_constants::basic, 2);
34 test("(a([bc]))", std::regex_constants::basic, 0);
36 test("\\(a\\)", std::regex_constants::extended, 0);
37 test("\\(a[bc]\\)", std::regex_constants::extended, 0);
38 test("\\(a\\([bc]\\)\\)", std::regex_constants::extended, 0);
39 test("(a([bc]))", std::regex_constants::extended, 2);
41 test("\\(a\\)", std::regex_constants::ECMAScript, 0)
    [all...]
ptr_size.pass.cpp 21 test(const CharT* p, std::size_t len, unsigned mc) function
30 test("\\(a\\)", 5, 0);
31 test("\\(a[bc]\\)", 9, 0);
32 test("\\(a\\([bc]\\)\\)", 13, 0);
33 test("(a([bc]))", 9, 2);
35 test("(\0)(b)(c)(d)", 12, 4);
36 test("(\0)(b)(c)(d)", 9, 3);
37 test("(\0)(b)(c)(d)", 3, 1);
38 test("(\0)(b)(c)(d)", 0, 0);
ptr_size_flg.pass.cpp 22 test(const CharT* p, std::size_t len, std::regex_constants::syntax_option_type f, function
32 test("\\(a\\)", 5, std::regex_constants::basic, 1);
33 test("\\(a[bc]\\)", 9, std::regex_constants::basic, 1);
34 test("\\(a\\([bc]\\)\\)", 13, std::regex_constants::basic, 2);
35 test("(a([bc]))", 9, std::regex_constants::basic, 0);
37 test("\\(a\\)", 5, std::regex_constants::extended, 0);
38 test("\\(a[bc]\\)", 9, std::regex_constants::extended, 0);
39 test("\\(a\\([bc]\\)\\)", 13, std::regex_constants::extended, 0);
40 test("(a([bc]))", 9, std::regex_constants::extended, 2);
42 test("\\(a\\)", 5, std::regex_constants::ECMAScript, 0)
    [all...]
string.pass.cpp 23 test(const String& p, unsigned mc) function
32 test(std::string("\\(a\\)"), 0);
33 test(std::string("\\(a[bc]\\)"), 0);
34 test(std::string("\\(a\\([bc]\\)\\)"), 0);
35 test(std::string("(a([bc]))"), 2);
  /external/libcxx/test/std/re/re.results/re.results.all/
get_allocator.pass.cpp 24 test(const Allocator& a) function
34 test<char>(test_allocator<std::sub_match<const char*> >(3));
35 test<wchar_t>(test_allocator<std::sub_match<const wchar_t*> >(3));
  /external/libcxx/test/std/re/re.results/re.results.const/
allocator.pass.cpp 24 test(const Allocator& a) function
34 test<char>(test_allocator<std::sub_match<const char*> >(3));
35 test<wchar_t>(test_allocator<std::sub_match<const wchar_t*> >(3));
  /external/libcxx/test/std/strings/string.view/string.view.access/
at.pass.cpp 26 void test ( const CharT *s, size_t len ) { function
41 test ( "ABCDE", 5 );
42 test ( "a", 1 );
44 test ( L"ABCDE", 5 );
45 test ( L"a", 1 );
48 test ( u"ABCDE", 5 );
49 test ( u"a", 1 );
51 test ( U"ABCDE", 5 );
52 test ( U"a", 1 );
back.pass.cpp 21 bool test ( const CharT *s, size_t len ) { function
29 assert ( test ( "ABCDE", 5 ));
30 assert ( test ( "a", 1 ));
32 assert ( test ( L"ABCDE", 5 ));
33 assert ( test ( L"a", 1 ));
36 assert ( test ( u"ABCDE", 5 ));
37 assert ( test ( u"a", 1 ));
39 assert ( test ( U"ABCDE", 5 ));
40 assert ( test ( U"a", 1 ));
front.pass.cpp 21 bool test ( const CharT *s, size_t len ) { function
29 assert ( test ( "ABCDE", 5 ));
30 assert ( test ( "a", 1 ));
32 assert ( test ( L"ABCDE", 5 ));
33 assert ( test ( L"a", 1 ));
36 assert ( test ( u"ABCDE", 5 ));
37 assert ( test ( u"a", 1 ));
39 assert ( test ( U"ABCDE", 5 ));
40 assert ( test ( U"a", 1 ));
index.pass.cpp 21 void test ( const CharT *s, size_t len ) { function
31 test ( "ABCDE", 5 );
32 test ( "a", 1 );
34 test ( L"ABCDE", 5 );
35 test ( L"a", 1 );
38 test ( u"ABCDE", 5 );
39 test ( u"a", 1 );
41 test ( U"ABCDE", 5 );
42 test ( U"a", 1 );
  /external/libcxx/test/std/utilities/memory/allocator.tag/
allocator_arg.pass.cpp 17 void test(std::allocator_arg_t) {} function
21 test(std::allocator_arg);
  /external/libcxx/test/std/utilities/optional/optional.nullopt/
nullopt_t.pass.cpp 26 constexpr bool test() function
39 static_assert(test());
  /external/libcxx/test/std/utilities/optional/optional.object/
types.pass.cpp 27 test() function
34 test<optional<int>, int>();
35 test<optional<const int>, const int>();
36 test<optional<double>, double>();
37 test<optional<const double>, const double>();

Completed in 245 milliseconds

<<11121314151617181920>>