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

<<11121314151617181920>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/complex.number/complex.value.ops/
real.pass.cpp 21 test() function
29 test<float>();
30 test<double>();
31 test<long double>();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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>();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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 );
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/allocator.tag/
allocator_arg.pass.cpp 17 void test(std::allocator_arg_t) {} function
21 test(std::allocator_arg);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/optional/optional.nullopt/
nullopt_t.pass.cpp 30 test(const nullopt_t&) function
42 static_assert(test(nullopt) == 3, "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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>();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/ratio/ratio.ratio/
ratio.pass.cpp 10 // test ratio: The static data members num and den shall have the common
16 void test() function
24 test<1, 1, 1, 1>();
25 test<1, 10, 1, 10>();
26 test<10, 10, 1, 1>();
27 test<10, 1, 10, 1>();
28 test<12, 4, 3, 1>();
29 test<12, -4, -3, 1>();
30 test<-12, 4, -3, 1>();
31 test<-12, -4, 3, 1>()
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.duration/time.duration.cons/
rep.pass.cpp 25 test(R r) function
37 test<std::chrono::duration<int> >(5);
38 test<std::chrono::duration<int, std::ratio<3, 2> > >(5);
39 test<std::chrono::duration<Rep, std::ratio<3, 2> > >(Rep(3));
40 test<std::chrono::duration<double, std::ratio<2, 3> > >(5.5);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.helper/
tuple.include.array.pass.cpp 28 void test() function
46 test<std::array<int, 5>, 5, int, 0>();
47 test<std::array<int, 5>, 5, int, 1>();
48 test<std::array<const char *, 4>, 4, const char *, 3>();
49 test<std::array<volatile int, 4>, 4, volatile int, 3>();
50 test<std::array<char *, 3>, 3, char *, 1>();
51 test<std::array<char *, 3>, 3, char *, 2>();
tuple.include.utility.pass.cpp 26 void test() function
44 test<std::pair<int, int>, 2, int, 0>();
45 test<std::pair<int, int>, 2, int, 1>();
46 test<std::pair<const int, int>, 2, int, 1>();
47 test<std::pair<int, volatile int>, 2, volatile int, 1>();
48 test<std::pair<char *, int>, 2, char *, 0>();
49 test<std::pair<char *, int>, 2, int, 1>();
tuple_element.pass.cpp 29 void test() function
45 test<std::tuple<int>, 0, int>();
46 test<std::tuple<char, int>, 0, char>();
47 test<std::tuple<char, int>, 1, int>();
48 test<std::tuple<int*, char, int>, 0, int*>();
49 test<std::tuple<int*, char, int>, 1, char>();
50 test<std::tuple<int*, char, int>, 2, int>();
tuple_size.pass.cpp 24 void test() function
38 test<std::tuple<>, 0>();
39 test<std::tuple<int>, 1>();
40 test<std::tuple<char, int>, 2>();
41 test<std::tuple<char, char*, int>, 3>();
tuple_size_v.pass.cpp 21 void test() function
32 test<std::tuple<>, 0>();
34 test<std::tuple<int>, 1>();
35 test<std::array<int, 1>, 1>();
37 test<std::tuple<int, int>, 2>();
38 test<std::pair<int, int>, 2>();
39 test<std::array<int, 2>, 2>();
41 test<std::tuple<int, int, int>, 3>();
42 test<std::array<int, 3>, 3>();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/variant/variant.helpers/
variant_alternative.pass.cpp 32 template <class V, size_t I, class E> void test() { function
62 test<V, 0, int>();
63 test<V, 1, void *>();
64 test<V, 2, const void *>();
65 test<V, 3, long double>();
70 test<V, 0, int>();
71 test<V, 1, int &>();
72 test<V, 2, const int &>();
73 test<V, 3, int &&>();
74 test<V, 4, long double>()
    [all...]

Completed in 653 milliseconds

<<11121314151617181920>>