Searched defs:test (Results 101 - 125 of 5411) sorted by relevance

1234567891011>>

/external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/
H A Dround_style.pass.cpp10 // 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<unsigne
[all...]
H A Dtinyness_before.pass.cpp10 // 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<unsigne
[all...]
/external/libcxx/test/std/localization/locale.categories/category.ctype/
H A Dctype_base.pass.cpp10 // This test uses new symbols that were not defined in the libc++ shipped on
40 void test(const _Tp &) {} 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(st
[all...]
/external/libcxx/test/std/localization/locale.categories/category.monetary/locale.moneypunct/
H A Dtypes.pass.cpp10 // This test uses new symbols that were not defined in the libc++ shipped on
31 void test(const _Tp &) {} 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/
H A Dcategory.pass.cpp10 // This test uses new symbols that were not defined in the libc++ shipped on
24 void test(const _Tp &) {} 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(st
[all...]
/external/libcxx/test/std/numerics/complex.number/complex.member.ops/
H A Ddivide_equal_scalar.pass.cpp19 test() function
41 test<float>();
42 test<double>();
43 test<long double>();
H A Dtimes_equal_scalar.pass.cpp19 test() function
41 test<float>();
42 test<double>();
43 test<long double>();
/external/libcxx/test/std/numerics/complex.number/complex.value.ops/
H A Dimag.pass.cpp21 test() function
29 test<float>();
30 test<double>();
31 test<long double>();
H A Dreal.pass.cpp21 test() function
29 test<float>();
30 test<double>();
31 test<long double>();
/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.lcong/
H A Dresult_type.pass.cpp24 test() function
33 test<unsigned short>();
34 test<unsigned int>();
35 test<unsigned long>();
36 test<unsigned long long>();
/external/libcxx/test/std/utilities/memory/allocator.tag/
H A Dallocator_arg.pass.cpp17 void test(std::allocator_arg_t) {} function
21 test(std::allocator_arg);
/external/libcxx/test/std/utilities/optional/optional.object/
H A Dtypes.pass.cpp27 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>();
/external/libcxx/test/std/utilities/ratio/ratio.ratio/
H A Dratio.pass.cpp10 // 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<
[all...]
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.helper/
H A Dtuple.include.array.pass.cpp28 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>();
H A Dtuple.include.utility.pass.cpp26 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>();
H A Dtuple_element.pass.cpp29 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>();
H A Dtuple_size.pass.cpp24 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>();
H A Dtuple_size_v.pass.cpp21 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>();
/external/libcxx/test/std/utilities/variant/variant.helpers/
H A Dvariant_alternative.pass.cpp32 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<
[all...]
H A Dvariant_size.pass.cpp26 template <class V, size_t E> void test() { function
41 test<std::variant<>, 0>();
42 test<std::variant<void *>, 1>();
43 test<std::variant<long, long, void *, double>, 4>();
/external/llvm/test/MC/ARM/
H A Dtarget-expressions.s16 .type test,%function
17 test: label
48 @ CHECK-LABEL: test:
H A Dthumb-movwt-reloc.s14 .type test,%function
15 test: label
19 @ CHECK-LABEL: test:
/external/ltp/lib/newlib_tests/
H A Dtest01.c20 * The test should abort when oldlib function is called from newlib.
32 static struct tst_test test = { variable in typeref:struct:tst_test
H A Dtest03.c30 static struct tst_test test = { variable in typeref:struct:tst_test
H A Dtest10.c29 static struct tst_test test = { variable in typeref:struct:tst_test

Completed in 438 milliseconds

1234567891011>>