HomeSort by relevance Sort by last modified time
    Searched defs:test (Results 151 - 175 of 4552) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/libcxx/test/std/containers/sequences/vector/vector.cons/
construct_size_value.pass.cpp 23 test(typename C::size_type n, const typename C::value_type& x) function
35 test<std::vector<int> >(50, 3);
36 test<std::vector<int, stack_allocator<int, 50> > >(50, 5);
38 test<std::vector<int, min_allocator<int>> >(50, 3);
construct_size_value_alloc.pass.cpp 21 test(typename C::size_type n, const typename C::value_type& x, function
35 test<std::vector<int> >(50, 3, std::allocator<int>());
37 test<std::vector<int, min_allocator<int>> >(50, 3, min_allocator<int>());
  /external/libcxx/test/std/containers/sequences/vector.bool/
construct_size_value.pass.cpp 22 test(typename C::size_type n, const typename C::value_type& x) function
33 test<std::vector<bool> >(50, 3);
35 test<std::vector<bool, min_allocator<bool>> >(50, 3);
construct_size_value_alloc.pass.cpp 22 test(typename C::size_type n, const typename C::value_type& x, function
35 test<std::vector<bool> >(50, 3, std::allocator<bool>());
37 test<std::vector<bool, min_allocator<bool>> >(50, 3, min_allocator<bool>());
  /external/libcxx/test/std/experimental/optional/optional.inplace/
in_place_t.pass.cpp 26 test(const in_place_t&) function
40 static_assert(test(in_place) == 3, "");
  /external/libcxx/test/std/experimental/optional/optional.nullopt/
nullopt_t.pass.cpp 26 test(const nullopt_t&) function
41 static_assert(test(nullopt) == 3, "");
  /external/libcxx/test/std/experimental/optional/optional.object/
types.pass.cpp 28 test() function
38 test<optional<int>, int>();
39 test<optional<const int>, const int>();
40 test<optional<double>, double>();
41 test<optional<const double>, const double>();
  /external/libcxx/test/std/experimental/string.view/string.view.access/
at.pass.cpp 22 void test ( const CharT *s, size_t len ) { function
35 test ( "ABCDE", 5 );
36 test ( "a", 1 );
38 test ( L"ABCDE", 5 );
39 test ( L"a", 1 );
42 test ( u"ABCDE", 5 );
43 test ( u"a", 1 );
45 test ( U"ABCDE", 5 );
46 test ( U"a", 1 );
back.pass.cpp 19 bool test ( const CharT *s, size_t len ) { function
27 assert ( test ( "ABCDE", 5 ));
28 assert ( test ( "a", 1 ));
30 assert ( test ( L"ABCDE", 5 ));
31 assert ( test ( L"a", 1 ));
34 assert ( test ( u"ABCDE", 5 ));
35 assert ( test ( u"a", 1 ));
37 assert ( test ( U"ABCDE", 5 ));
38 assert ( test ( U"a", 1 ));
front.pass.cpp 19 bool test ( const CharT *s, size_t len ) { function
27 assert ( test ( "ABCDE", 5 ));
28 assert ( test ( "a", 1 ));
30 assert ( test ( L"ABCDE", 5 ));
31 assert ( test ( L"a", 1 ));
34 assert ( test ( u"ABCDE", 5 ));
35 assert ( test ( u"a", 1 ));
37 assert ( test ( U"ABCDE", 5 ));
38 assert ( test ( U"a", 1 ));
index.pass.cpp 19 void test ( const CharT *s, size_t len ) { function
29 test ( "ABCDE", 5 );
30 test ( "a", 1 );
32 test ( L"ABCDE", 5 );
33 test ( L"a", 1 );
36 test ( u"ABCDE", 5 );
37 test ( u"a", 1 );
39 test ( U"ABCDE", 5 );
40 test ( U"a", 1 );
  /external/libcxx/test/std/experimental/utilities/time/header.chrono.synop/
treat_as_floating_point_v.pass.cpp 23 void test() function
42 test<int, false>();
43 test<unsigned, false>();
44 test<char, false>();
45 test<bool, false>();
46 test<float, true>();
47 test<double, true>();
48 test<long double, true>();
  /external/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.cons/
container.pass.cpp 22 test(C c) function
29 test(std::vector<int>());
30 test(nasty_vector<int>());
  /external/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op=/
rv_value.pass.cpp 28 test(C c) function
40 test(std::vector<std::unique_ptr<int> >());
  /external/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.cons/
container.pass.cpp 22 test(C c) function
29 test(std::list<int>());
30 test(nasty_list<int>());
  /external/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op=/
rv_value.pass.cpp 27 test(C c) function
39 test(std::list<std::unique_ptr<int> >());
  /external/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.cons/
test.pass.cpp 22 test(C c) function
29 test(std::vector<int>());
30 test(nasty_vector<int>());
  /external/libcxx/test/std/language.support/support.limits/limits/
is_specialized.pass.cpp 10 // test numeric_limits
25 // More convenient to test it here.
31 void test() function
45 test<bool>();
46 test<char>();
47 test<wchar_t>();
49 test<char16_t>();
50 test<char32_t>();
52 test<signed char>();
53 test<unsigned char>()
    [all...]
  /external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/
denorm_min.pass.cpp 10 // test numeric_limits
19 test(T expected) function
29 test<bool>(false);
30 test<char>(0);
31 test<signed char>(0);
32 test<unsigned char>(0);
33 test<wchar_t>(0);
35 test<char16_t>(0);
36 test<char32_t>(0);
38 test<short>(0)
    [all...]
digits.pass.cpp 10 // test numeric_limits
19 test() function
21 static_assert(std::numeric_limits<T>::digits == expected, "digits test 1");
22 static_assert(std::numeric_limits<const T>::digits == expected, "digits test 2");
23 static_assert(std::numeric_limits<volatile T>::digits == expected, "digits test 3");
24 static_assert(std::numeric_limits<const volatile T>::digits == expected, "digits test 4");
29 test<bool, 1>();
30 test<char, std::numeric_limits<char>::is_signed ? 7 : 8>();
31 test<signed char, 7>();
32 test<unsigned char, 8>()
    [all...]
digits10.pass.cpp 10 // test numeric_limits
19 test() function
21 static_assert(std::numeric_limits<T>::digits10 == expected, "digits10 test 1");
22 static_assert(std::numeric_limits<T>::is_bounded, "digits10 test 5");
23 static_assert(std::numeric_limits<const T>::digits10 == expected, "digits10 test 2");
24 static_assert(std::numeric_limits<const T>::is_bounded, "digits10 test 6");
25 static_assert(std::numeric_limits<volatile T>::digits10 == expected, "digits10 test 3");
26 static_assert(std::numeric_limits<volatile T>::is_bounded, "digits10 test 7");
27 static_assert(std::numeric_limits<const volatile T>::digits10 == expected, "digits10 test 4");
28 static_assert(std::numeric_limits<const volatile T>::is_bounded, "digits10 test 8")
    [all...]
epsilon.pass.cpp 10 // test numeric_limits
20 test(T expected) function
30 test<bool>(false);
31 test<char>(0);
32 test<signed char>(0);
33 test<unsigned char>(0);
34 test<wchar_t>(0);
36 test<char16_t>(0);
37 test<char32_t>(0);
39 test<short>(0)
    [all...]
has_denorm.pass.cpp 10 // test numeric_limits
18 test() function
20 static_assert(std::numeric_limits<T>::has_denorm == expected, "has_denorm test 1");
21 static_assert(std::numeric_limits<const T>::has_denorm == expected, "has_denorm test 2");
22 static_assert(std::numeric_limits<volatile T>::has_denorm == expected, "has_denorm test 3");
23 static_assert(std::numeric_limits<const volatile T>::has_denorm == expected, "has_denorm test 4");
28 test<bool, std::denorm_absent>();
29 test<char, std::denorm_absent>();
30 test<signed char, std::denorm_absent>();
31 test<unsigned char, std::denorm_absent>()
    [all...]
has_denorm_loss.pass.cpp 10 // test numeric_limits
18 test() function
20 static_assert(std::numeric_limits<T>::has_denorm_loss == expected, "has_denorm_loss test 1");
21 static_assert(std::numeric_limits<const T>::has_denorm_loss == expected, "has_denorm_loss test 2");
22 static_assert(std::numeric_limits<volatile T>::has_denorm_loss == expected, "has_denorm_loss test 3");
23 static_assert(std::numeric_limits<const volatile T>::has_denorm_loss == expected, "has_denorm_loss test 4");
28 test<bool, false>();
29 test<char, false>();
30 test<signed char, false>();
31 test<unsigned char, false>()
    [all...]
has_infinity.pass.cpp 10 // test numeric_limits
18 test() function
20 static_assert(std::numeric_limits<T>::has_infinity == expected, "has_infinity test 1");
21 static_assert(std::numeric_limits<const T>::has_infinity == expected, "has_infinity test 2");
22 static_assert(std::numeric_limits<volatile T>::has_infinity == expected, "has_infinity test 3");
23 static_assert(std::numeric_limits<const volatile T>::has_infinity == expected, "has_infinity test 4");
28 test<bool, false>();
29 test<char, false>();
30 test<signed char, false>();
31 test<unsigned char, false>()
    [all...]

Completed in 466 milliseconds

1 2 3 4 5 67 8 91011>>