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

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/
max_exponent.pass.cpp 10 // test numeric_limits
19 test() function
21 static_assert(std::numeric_limits<T>::max_exponent == expected, "max_exponent test 1");
22 static_assert(std::numeric_limits<const T>::max_exponent == expected, "max_exponent test 2");
23 static_assert(std::numeric_limits<volatile T>::max_exponent == expected, "max_exponent test 3");
24 static_assert(std::numeric_limits<const volatile T>::max_exponent == expected, "max_exponent test 4");
29 test<bool, 0>();
30 test<char, 0>();
31 test<signed char, 0>();
32 test<unsigned char, 0>()
    [all...]
max_exponent10.pass.cpp 10 // test numeric_limits
19 test() function
21 static_assert(std::numeric_limits<T>::max_exponent10 == expected, "max_exponent10 test 1");
22 static_assert(std::numeric_limits<const T>::max_exponent10 == expected, "max_exponent10 test 2");
23 static_assert(std::numeric_limits<volatile T>::max_exponent10 == expected, "max_exponent10 test 3");
24 static_assert(std::numeric_limits<const volatile T>::max_exponent10 == expected, "max_exponent10 test 4");
29 test<bool, 0>();
30 test<char, 0>();
31 test<signed char, 0>();
32 test<unsigned char, 0>()
    [all...]
min.pass.cpp 10 // test numeric_limits
22 test(T expected) function
36 test<bool>(false);
37 test<char>(CHAR_MIN);
38 test<signed char>(SCHAR_MIN);
39 test<unsigned char>(0);
40 test<wchar_t>(WCHAR_MIN);
42 test<char16_t>(0);
43 test<char32_t>(0);
45 test<short>(SHRT_MIN)
    [all...]
min_exponent.pass.cpp 10 // test numeric_limits
19 test() function
21 static_assert(std::numeric_limits<T>::min_exponent == expected, "min_exponent test 1");
22 static_assert(std::numeric_limits<const T>::min_exponent == expected, "min_exponent test 2");
23 static_assert(std::numeric_limits<volatile T>::min_exponent == expected, "min_exponent test 3");
24 static_assert(std::numeric_limits<const volatile T>::min_exponent == expected, "min_exponent test 4");
29 test<bool, 0>();
30 test<char, 0>();
31 test<signed char, 0>();
32 test<unsigned char, 0>()
    [all...]
min_exponent10.pass.cpp 10 // test numeric_limits
19 test() function
21 static_assert(std::numeric_limits<T>::min_exponent10 == expected, "min_exponent10 test 1");
22 static_assert(std::numeric_limits<const T>::min_exponent10 == expected, "min_exponent10 test 2");
23 static_assert(std::numeric_limits<volatile T>::min_exponent10 == expected, "min_exponent10 test 3");
24 static_assert(std::numeric_limits<const volatile T>::min_exponent10 == expected, "min_exponent10 test 4");
29 test<bool, 0>();
30 test<char, 0>();
31 test<signed char, 0>();
32 test<unsigned char, 0>()
    [all...]
radix.pass.cpp 10 // test numeric_limits
19 test() function
21 static_assert(std::numeric_limits<T>::radix == expected, "radix test 1");
22 static_assert(std::numeric_limits<const T>::radix == expected, "radix test 2");
23 static_assert(std::numeric_limits<volatile T>::radix == expected, "radix test 3");
24 static_assert(std::numeric_limits<const volatile T>::radix == expected, "radix test 4");
29 test<bool, 2>();
30 test<char, 2>();
31 test<signed char, 2>();
32 test<unsigned char, 2>()
    [all...]
round_error.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...]
round_style.pass.cpp 10 // test numeric_limits
18 test() function
20 static_assert(std::numeric_limits<T>::round_style == expected, "round_style test 1");
21 static_assert(std::numeric_limits<const T>::round_style == expected, "round_style test 2");
22 static_assert(std::numeric_limits<volatile T>::round_style == expected, "round_style test 3");
23 static_assert(std::numeric_limits<const volatile T>::round_style == expected, "round_style test 4");
28 test<bool, std::round_toward_zero>();
29 test<char, std::round_toward_zero>();
30 test<signed char, std::round_toward_zero>();
31 test<unsigned char, std::round_toward_zero>()
    [all...]
tinyness_before.pass.cpp 10 // test numeric_limits
18 test() function
20 static_assert(std::numeric_limits<T>::tinyness_before == expected, "tinyness_before test 1");
21 static_assert(std::numeric_limits<const T>::tinyness_before == expected, "tinyness_before test 2");
22 static_assert(std::numeric_limits<volatile T>::tinyness_before == expected, "tinyness_before test 3");
23 static_assert(std::numeric_limits<const volatile T>::tinyness_before == expected, "tinyness_before test 4");
28 test<bool, false>();
29 test<char, false>();
30 test<signed char, false>();
31 test<unsigned char, false>()
    [all...]
  /external/libcxx/test/std/language.support/support.types/byteops/
rshift.pass.cpp 21 constexpr std::byte test(std::byte b) { function
  /external/libcxx/test/std/localization/locale.categories/category.ctype/
ctype_base.pass.cpp 10 // This test uses new symbols that were not defined in the libc++ shipped on
40 void test(const T &) {} function
66 test(std::ctype_base::space);
67 test(std::ctype_base::print);
68 test(std::ctype_base::cntrl);
69 test(std::ctype_base::upper);
70 test(std::ctype_base::lower);
71 test(std::ctype_base::alpha);
72 test(std::ctype_base::digit);
73 test(std::ctype_base::punct)
    [all...]
  /external/libcxx/test/std/localization/locale.categories/category.monetary/locale.moneypunct/
types.pass.cpp 10 // This test uses new symbols that were not defined in the libc++ shipped on
31 void test(const T &) {} function
44 test(std::moneypunct<char, false>::intl);
45 test(std::moneypunct<char, true>::intl);
46 test(std::moneypunct<wchar_t, false>::intl);
47 test(std::moneypunct<wchar_t, true>::intl);
  /external/libcxx/test/std/localization/locales/locale/locale.types/locale.category/
category.pass.cpp 10 // This test uses new symbols that were not defined in the libc++ shipped on
24 void test(const T &) {} function
51 test(std::locale::none);
52 test(std::locale::collate);
53 test(std::locale::ctype);
54 test(std::locale::monetary);
55 test(std::locale::numeric);
56 test(std::locale::time);
57 test(std::locale::messages);
58 test(std::locale::all)
    [all...]
  /external/libcxx/test/std/numerics/complex.number/cmplx.over/
arg.pass.cpp 24 test(T x, typename std::enable_if<std::is_integral<T>::value>::type* = 0) function
32 test(T x, typename std::enable_if<!std::is_integral<T>::value>::type* = 0) function
40 test() function
42 test<T>(0);
43 test<T>(1);
44 test<T>(10);
49 test<float>();
50 test<double>();
51 test<long double>();
52 test<int>()
    [all...]
conj.pass.cpp 26 test(T x, typename std::enable_if<std::is_integral<T>::value>::type* = 0) function
34 test(T x, typename std::enable_if<std::is_floating_point<T>::value>::type* = 0) function
42 test(T x, typename std::enable_if<!std::is_integral<T>::value && function
51 test() function
53 test<T>(0);
54 test<T>(1);
55 test<T>(10);
60 test<float>();
61 test<double>();
62 test<long double>()
    [all...]
imag.pass.cpp 25 test(typename std::enable_if<std::is_integral<T>::value>::type* = 0) function
39 test(typename std::enable_if<!std::is_integral<T>::value>::type* = 0) function
53 test() function
55 test<T, 0>();
56 test<T, 1>();
57 test<T, 10>();
62 test<float>();
63 test<double>();
64 test<long double>();
65 test<int>()
    [all...]
norm.pass.cpp 24 test(T x, typename std::enable_if<std::is_integral<T>::value>::type* = 0) function
32 test(T x, typename std::enable_if<!std::is_integral<T>::value>::type* = 0) function
40 test() function
42 test<T>(0);
43 test<T>(1);
44 test<T>(10);
49 test<float>();
50 test<double>();
51 test<long double>();
52 test<int>()
    [all...]
proj.pass.cpp 26 test(T x, typename std::enable_if<std::is_integral<T>::value>::type* = 0) function
34 test(T x, typename std::enable_if<std::is_floating_point<T>::value>::type* = 0) function
42 test(T x, typename std::enable_if<!std::is_integral<T>::value && function
51 test() function
53 test<T>(0);
54 test<T>(1);
55 test<T>(10);
60 test<float>();
61 test<double>();
62 test<long double>()
    [all...]
real.pass.cpp 25 test(typename std::enable_if<std::is_integral<T>::value>::type* = 0) function
39 test(typename std::enable_if<!std::is_integral<T>::value>::type* = 0) function
53 test() function
55 test<T, 0>();
56 test<T, 1>();
57 test<T, 10>();
62 test<float>();
63 test<double>();
64 test<long double>();
65 test<int>()
    [all...]
  /external/libcxx/test/std/numerics/complex.number/complex.member.ops/
divide_equal_scalar.pass.cpp 19 test() function
41 test<float>();
42 test<double>();
43 test<long double>();
times_equal_scalar.pass.cpp 19 test() function
41 test<float>();
42 test<double>();
43 test<long double>();
  /external/libcxx/test/std/numerics/complex.number/complex.ops/
complex_divide_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>();
complex_minus_complex.pass.cpp 21 test(const std::complex<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>();
complex_minus_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_plus_complex.pass.cpp 21 test(const std::complex<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>();

Completed in 344 milliseconds

1 2 3 4 5 6 7 8 91011>>