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

<<21222324252627282930>>

  /external/libcxx/test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opgt/
test.pass.cpp 26 test(It l, It r, bool x) function
36 test(random_access_iterator<const char*>(s), random_access_iterator<const char*>(s), false);
37 test(random_access_iterator<const char*>(s), random_access_iterator<const char*>(s+1), true);
38 test(random_access_iterator<const char*>(s+1), random_access_iterator<const char*>(s), false);
39 test(s, s, false);
40 test(s, s+1, true);
41 test(s+1, s, false);
  /external/libcxx/test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.oplt=/
test.pass.cpp 26 test(It l, It r, bool x) function
36 test(random_access_iterator<const char*>(s), random_access_iterator<const char*>(s), true);
37 test(random_access_iterator<const char*>(s), random_access_iterator<const char*>(s+1), false);
38 test(random_access_iterator<const char*>(s+1), random_access_iterator<const char*>(s), true);
39 test(s, s, true);
40 test(s, s+1, false);
41 test(s+1, s, true);
  /external/libcxx/test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opsum/
difference_type.pass.cpp 25 test(It i, typename std::iterator_traits<It>::difference_type n, It x) function
35 test(random_access_iterator<const char*>(s+5), 5, random_access_iterator<const char*>(s));
36 test(s+5, 5, s);
  /external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/
const_data_members.pass.cpp 41 void test(const _Tp &) {} function
44 test(std::numeric_limits<type>::is_specialized); \
45 test(std::numeric_limits<type>::digits); \
46 test(std::numeric_limits<type>::digits10); \
47 test(std::numeric_limits<type>::max_digits10); \
48 test(std::numeric_limits<type>::is_signed); \
49 test(std::numeric_limits<type>::is_integer); \
50 test(std::numeric_limits<type>::is_exact); \
51 test(std::numeric_limits<type>::radix); \
52 test(std::numeric_limits<type>::min_exponent);
    [all...]
infinity.pass.cpp 10 // test numeric_limits
20 test(T expected) function
32 test<bool>(false);
33 test<char>(0);
34 test<signed char>(0);
35 test<unsigned char>(0);
36 test<wchar_t>(0);
38 test<char16_t>(0);
39 test<char32_t>(0);
41 test<short>(0)
    [all...]
quiet_NaN.pass.cpp 10 // test numeric_limits
42 test() function
49 test<bool>();
50 test<char>();
51 test<signed char>();
52 test<unsigned char>();
53 test<wchar_t>();
55 test<char16_t>();
56 test<char32_t>();
58 test<short>()
    [all...]
signaling_NaN.pass.cpp 10 // test numeric_limits
42 test() function
49 test<bool>();
50 test<char>();
51 test<signed char>();
52 test<unsigned char>();
53 test<wchar_t>();
55 test<char16_t>();
56 test<char32_t>();
58 test<short>()
    [all...]
traps.pass.cpp 10 // test numeric_limits
24 test() function
26 static_assert(std::numeric_limits<T>::traps == expected, "traps test 1");
27 static_assert(std::numeric_limits<const T>::traps == expected, "traps test 2");
28 static_assert(std::numeric_limits<volatile T>::traps == expected, "traps test 3");
29 static_assert(std::numeric_limits<const volatile T>::traps == expected, "traps test 4");
34 test<bool, false>();
35 test<char, integral_types_trap>();
36 test<signed char, integral_types_trap>();
37 test<unsigned char, integral_types_trap>()
    [all...]
  /external/libcxx/test/std/numerics/complex.number/cmplx.over/
pow.pass.cpp 40 test(T x, const std::complex<U>& y) function
49 test(const std::complex<T>& x, U y) function
58 test(const std::complex<T>& x, const std::complex<U>& y) function
67 test(typename std::enable_if<std::is_integral<T>::value>::type* = 0, typename std::enable_if<!std::is_integral<U>::value>::type* = 0) function
69 test(T(3), std::complex<U>(4, 5));
70 test(std::complex<U>(3, 4), T(5));
75 test(typename std::enable_if<!std::is_integral<T>::value>::type* = 0, typename std::enable_if<!std::is_integral<U>::value>::type* = 0) function
77 test(T(3), std::complex<U>(4, 5));
78 test(std::complex<T>(3, 4), U(5));
79 test(std::complex<T>(3, 4), std::complex<U>(5, 6))
    [all...]
  /external/libcxx/test/std/numerics/complex.number/complex/
types.pass.cpp 25 test() function
33 test<float>();
34 test<double>();
35 test<long double>();
  /external/libcxx/test/std/numerics/complex.number/complex.member.ops/
assignment_complex.pass.cpp 20 test() function
37 test<float, float>();
38 test<float, double>();
39 test<float, long double>();
41 test<double, float>();
42 test<double, double>();
43 test<double, long double>();
45 test<long double, float>();
46 test<long double, double>();
47 test<long double, long double>()
    [all...]
assignment_scalar.pass.cpp 19 test() function
34 test<float>();
35 test<double>();
36 test<long double>();
divide_equal_complex.pass.cpp 19 test() function
50 test<float>();
51 test<double>();
52 test<long double>();
minus_equal_complex.pass.cpp 19 test() function
49 test<float>();
50 test<double>();
51 test<long double>();
minus_equal_scalar.pass.cpp 19 test() function
37 test<float>();
38 test<double>();
39 test<long double>();
plus_equal_complex.pass.cpp 19 test() function
49 test<float>();
50 test<double>();
51 test<long double>();
plus_equal_scalar.pass.cpp 19 test() function
37 test<float>();
38 test<double>();
39 test<long double>();
times_equal_complex.pass.cpp 19 test() function
49 test<float>();
50 test<double>();
51 test<long double>();
  /external/libcxx/test/std/numerics/complex.number/complex.members/
construct.pass.cpp 19 test() function
67 test<float>();
68 test<double>();
69 test<long double>();
  /external/libcxx/test/std/numerics/complex.number/complex.ops/
complex_equals_complex.pass.cpp 39 test() function
56 test<float>();
57 test<double>();
58 test<long double>();
complex_equals_scalar.pass.cpp 49 test() function
77 test<float>();
78 test<double>();
79 test<long double>();
complex_not_equals_complex.pass.cpp 40 test() function
58 test<float>();
59 test<double>();
60 test<long double>();
complex_not_equals_scalar.pass.cpp 49 test() function
77 test<float>();
78 test<double>();
79 test<long double>();
scalar_equals_complex.pass.cpp 49 test() function
77 test<float>();
78 test<double>();
79 test<long double>();
scalar_not_equals_complex.pass.cpp 49 test() function
77 test<float>();
78 test<double>();
79 test<long double>();

Completed in 695 milliseconds

<<21222324252627282930>>