Home
last modified time | relevance | path

Searched refs:test_type (Results 1 – 25 of 125) sorted by relevance

12345

/third_party/json/test/src/
Dunit-pointer_access.cpp39 using test_type = json::object_t; typedef
43 test_type* p1 = value.get_ptr<test_type*>();
44 CHECK(p1 == value.get_ptr<test_type*>());
45 CHECK(*p1 == value.get<test_type>());
47 const test_type* p2 = value.get_ptr<const test_type*>();
48 CHECK(p2 == value.get_ptr<const test_type*>());
49 CHECK(*p2 == value.get<test_type>());
51 const test_type* const p3 = value.get_ptr<const test_type* const>();
52 CHECK(p3 == value.get_ptr<const test_type* const>());
53 CHECK(*p3 == value.get<test_type>());
[all …]
Dunit-reference_access.cpp55 using test_type = json::object_t; typedef
59 test_type& p1 = value.get_ref<test_type&>();
60 CHECK(&p1 == value.get_ptr<test_type*>());
61 CHECK(p1 == value.get<test_type>());
63 const test_type& p2 = value.get_ref<const test_type&>();
64 CHECK(&p2 == value.get_ptr<const test_type*>());
65 CHECK(p2 == value.get<test_type>());
91 using test_type = json::object_t; typedef
98 const test_type& p2 = value.get_ref<const test_type&>();
99 CHECK(&p2 == value.get_ptr<const test_type*>());
[all …]
/third_party/boost/libs/multiprecision/test/
Dtest_cpp_bin_float.cpp48 …edef number<cpp_bin_float<std::numeric_limits<good_type>::digits, digit_base_2>, et_off> test_type; typedef
52 test_type max_val = (std::numeric_limits<test_type>::max)(); in test_special_cases()
53 test_type min_val = (std::numeric_limits<test_type>::min)(); in test_special_cases()
54 test_type eps = std::numeric_limits<test_type>::epsilon(); in test_special_cases()
55 test_type inf_val = (std::numeric_limits<test_type>::infinity)(); in test_special_cases()
56 test_type nan_val = (std::numeric_limits<test_type>::quiet_NaN)(); in test_special_cases()
57 test_type half = 0.5; in test_special_cases()
58 test_type one_point_5 = 1.5; in test_special_cases()
69 if (std::numeric_limits<test_type>::has_denorm) in test_special_cases()
70 min_val = std::numeric_limits<test_type>::denorm_min(); in test_special_cases()
[all …]
Dtest_cpp_int.cpp85 typedef Number test_type; typedef
86 typedef typename test_type::backend_type::checked_type checked;
94 test_type a1, b1, c1, d1;
103 BOOST_CHECK_EQUAL(mpz_int(a + b).str(), test_type(a1 + b1).str()); in t1()
104 BOOST_CHECK_EQUAL((mpz_int(a) += b).str(), (test_type(a1) += b1).str()); in t1()
105 BOOST_CHECK_EQUAL((mpz_int(b) += a).str(), (test_type(b1) += a1).str()); in t1()
106 BOOST_CHECK_EQUAL(mpz_int(a - b).str(), test_type(a1 - b1).str()); in t1()
107 BOOST_CHECK_EQUAL((mpz_int(a) -= b).str(), (test_type(a1) -= b1).str()); in t1()
108 BOOST_CHECK_EQUAL(mpz_int(mpz_int(-a) + b).str(), test_type(test_type(-a1) + b1).str()); in t1()
109 BOOST_CHECK_EQUAL(mpz_int(mpz_int(-a) - b).str(), test_type(test_type(-a1) - b1).str()); in t1()
[all …]
Dtest_checked_cpp_int.cpp71 typedef Number test_type; in test() typedef
73 if (std::numeric_limits<test_type>::is_bounded) in test()
75 test_type val = (std::numeric_limits<test_type>::max)(); in test()
78 val = (std::numeric_limits<test_type>::max)(); in test()
79 BOOST_CHECK_THROW(test_type(1 + val), std::overflow_error); in test()
80 BOOST_CHECK_THROW(test_type(val + 1), std::overflow_error); in test()
81 BOOST_CHECK_THROW(test_type(2 * val), std::overflow_error); in test()
84 BOOST_CHECK_THROW(test_type(2 * val), std::overflow_error); in test()
86 if (std::numeric_limits<test_type>::is_signed) in test()
88 val = (std::numeric_limits<test_type>::min)(); in test()
[all …]
Dtest_unchecked_cpp_int.cpp58 typedef Number test_type; in test() typedef
60 for (unsigned i = 30; i < std::numeric_limits<test_type>::digits; ++i) in test()
62 …for (unsigned j = std::numeric_limits<test_type>::digits - i - 1; j < std::numeric_limits<test_typ… in test()
66 test_type a = static_cast<test_type>(generate_random<cpp_int>(i)); in test()
67 test_type b = static_cast<test_type>(generate_random<cpp_int>(j)); in test()
68 test_type c = static_cast<test_type>(cpp_int(a) * cpp_int(b)); in test()
69 test_type d = a * b; in test()
74 for (unsigned s = 1; s < std::numeric_limits<test_type>::digits; ++s) in test()
75 BOOST_CHECK_EQUAL(a << s, test_type(cpp_int(a) << s)); in test()
Dtest_mixed_cpp_int.cpp21 typedef Number test_type; in test() typedef
23 test_type h = (std::numeric_limits<test_type>::max)(); in test()
24 test_type l = (std::numeric_limits<test_type>::max)(); in test()
33 if (std::numeric_limits<test_type>::is_signed) in test()
48 …max_digits = std::numeric_limits<test_type>::is_signed ? std::numeric_limits<long long>::digits : … in test()
52 …require_digits = std::numeric_limits<test_type>::digits <= 2 * max_digits ? std::numeric_limits<te… in test()
56 …typedef typename boost::mpl::if_c<std::numeric_limits<test_type>::is_signed, int_least, uint_least… in test()
67 if (std::numeric_limits<test_type>::is_signed) in test()
Dtest_miller_rabin.cpp31 typedef I test_type; in test() typedef
34 std::numeric_limits<test_type>::digits && (std::numeric_limits<test_type>::digits <= 256) in test()
35 ? std::numeric_limits<test_type>::digits in test()
38 independent_bits_engine<mt11213b, test_bits, test_type> gen; in test()
51 BOOST_TEST(miller_rabin_test(test_type(boost::math::prime(i)), 25, gen)); in test()
59 test_type n = gen(); in test()
/third_party/boost/libs/math/tools/
Dhypergeometric_1F1_map_neg_b_fwd_recurrence.cpp42 typedef boost::multiprecision::cpp_bin_float_quad test_type; typedef
49 test_type a_start, a_end; in main()
50 test_type b_start, b_end; in main()
51 test_type a_mult, b_mult; in main()
65 for (test_type a = a_start; a < a_end; a_start < 0 ? a /= a_mult : a *= a_mult) in main()
67 for (test_type b = b_start; b < b_end; b_start < 0 ? b /= b_mult : b *= b_mult) in main()
69 test_type z_mult = 2; in main()
70 test_type last_good = 0; in main()
71 test_type bad = 0; in main()
73 for (test_type z = 1; z < 1e10; z *= z_mult, z_mult *= 2) in main()
[all …]
Dhypergeometric_1F1_error_plot.cpp26 typedef double test_type; typedef
80 test_type max_a, max_b, max_z, min_a, min_b, min_z; in main()
109 boost::random::uniform_real_distribution<test_type> a_dist(min_a, max_a); in main()
110 boost::random::uniform_real_distribution<test_type> b_dist(min_b, max_b); in main()
111 boost::random::uniform_real_distribution<test_type> z_dist(min_z, max_z); in main()
118 test_type max_error = 0; in main()
122 test_type a = a_dist(gen); in main()
123 test_type b = b_dist(gen); in main()
124 test_type z = z_dist(gen); in main()
125 test_type found, expected; in main()
[all …]
/third_party/boost/libs/exception/test/
Drefcount_ptr_test.cpp10 test_type struct
12 test_type( int & count ): in test_type() function
19 ~test_type() in ~test_type() argument
45 test_type( test_type const & ); argument
46 test_type & operator=( test_type const & );
57 refcount_ptr<test_type> x; in main() argument
63 test_type * a=new test_type(count); in main()
66 refcount_ptr<test_type> p; in main()
72 refcount_ptr<test_type> q; in main()
77 refcount_ptr<test_type> t(p); in main()
[all …]
/third_party/boost/libs/spirit/classic/test/
Dscanner_value_type_tests.cpp93 test_type() in test_type() function
122 test_type<grammar, char>(); in main()
123 test_type<grammar, unsigned char>(); in main()
124 test_type<grammar, wchar_t>(); in main()
125 test_type<grammar, int>(); in main()
126 test_type<grammar, long>(); in main()
127 test_type<grammar, short>(); in main()
128 test_type<grammar, bool>(); in main()
132 test_type<grammar, convertable_non_pod<char> >(); in main()
133 test_type<grammar, convertable_non_pod<wchar_t> >(); in main()
[all …]
/third_party/openssl/test/
Dshlibloadtest.c38 static TEST_TYPE test_type; variable
136 switch (test_type) { in test_lib()
145 if (test_type != CRYPTO_FIRST) in test_lib()
154 if (test_type != SSL_FIRST) in test_lib()
163 if (test_type == NO_ATEXIT) { in test_lib()
177 if (test_type != JUST_CRYPTO in test_lib()
178 && test_type != DSO_REFTEST in test_lib()
179 && test_type != NO_ATEXIT) { in test_lib()
221 if (test_type == DSO_REFTEST) { in test_lib()
261 if (test_type == CRYPTO_FIRST || test_type == SSL_FIRST) { in test_lib()
[all …]
/third_party/boost/libs/type_erasure/test/
Dtest_assign.cpp313 typedef test_class<int, false, false, false, false> test_type; in BOOST_AUTO_TEST_CASE() typedef
319 …oncept> test_binding = make_binding< ::boost::mpl::map< ::boost::mpl::pair<_self, test_type> > >(); in BOOST_AUTO_TEST_CASE()
376 typedef test_class<int, false, false, true, false> test_type; in BOOST_AUTO_TEST_CASE() typedef
383 …oncept> test_binding = make_binding< ::boost::mpl::map< ::boost::mpl::pair<_self, test_type> > >(); in BOOST_AUTO_TEST_CASE()
461 typedef test_class<int, false, false, true, false> test_type; in BOOST_AUTO_TEST_CASE() typedef
468 …oncept> test_binding = make_binding< ::boost::mpl::map< ::boost::mpl::pair<_self, test_type> > >(); in BOOST_AUTO_TEST_CASE()
597 typedef test_class<int, false, false, false, true> test_type; in BOOST_AUTO_TEST_CASE() typedef
603 …oncept> test_binding = make_binding< ::boost::mpl::map< ::boost::mpl::pair<_self, test_type> > >(); in BOOST_AUTO_TEST_CASE()
650 typedef test_class<int, false, false, false, true> test_type; in BOOST_AUTO_TEST_CASE() typedef
656 …oncept> test_binding = make_binding< ::boost::mpl::map< ::boost::mpl::pair<_self, test_type> > >(); in BOOST_AUTO_TEST_CASE()
[all …]
/third_party/boost/libs/pfr/test/run/
Dread_write.cpp34 void test_type(const T& value, const char* ethalon) { in test_type() function
62 test_type(test1{1, 2, '3', 4, 5}, "{1, 2, 3, 4, 5}"); in main()
63 test_type(test1{199, 299, '9', 499, 599}, "{199, 299, 9, 499, 599}"); in main()
72test_type(test2{}, "{{with_operator}, {with_operator}, {with_operator}, {with_operator}, {with_ope… in main()
82 test_type( in main()
/third_party/boost/libs/array/test/
Darray_getfail2.cpp24 typedef boost::array< T, 5 > test_type; in RunStdTests() typedef
26 test_type test_case; // = { 1, 1, 2, 3, 5 }; in RunStdTests()
39 typedef boost::array< T, 5 > test_type; in RunBoostTests() typedef
41 test_type test_case; // = { 1, 1, 2, 3, 5 }; in RunBoostTests()
Darray7.cpp24 typedef boost::array< T, 5 > test_type; in RunStdTests() typedef
25 test_type test_case; // = { 1, 1, 2, 3, 5 }; in RunStdTests()
38 typedef boost::array< T, 5 > test_type; in RunBoostTests() typedef
39 test_type test_case; // = { 1, 1, 2, 3, 5 }; in RunBoostTests()
Darray6.cpp19 typedef boost::array< T, 5 > test_type; in RunTests() typedef
21 test_type test_case; // = { 1, 1, 2, 3, 5 }; in RunTests()
27 typename test_type::const_iterator iter = test_case.begin (); in RunTests()
/third_party/ltp/testcases/network/stress/route/
Droute6-rmmod197 test_type=$1
199 TCID=route6-rmmod0${test_type}
200 TST_COUNT=$test_type
202 case $test_type in
226 case $test_type in
Droute4-rmmod201 test_type=$1
203 TCID=route4-rmmod0${test_type}
204 TST_COUNT=$test_type
206 case $test_type in
230 case $test_type in
/third_party/boost/libs/align/test/
Dalignment_of_test.cpp73 void test_type() in test_type() function
84 test_type<T>(); in test_reference()
85 test_type<T&>(); in test_reference()
88 test_type<T&&>(); in test_reference()
97 test_type<T[]>(); in test_array()
/third_party/boost/libs/math/doc/graphs/
Dbessel_i1_errors.cpp22 void test_type(const char* name) in test_type() function
141 test_type<float>("float"); in main()
142 test_type<double>("double"); in main()
144 test_type<long double>("long double"); in main()
146 test_type<boost::multiprecision::cpp_bin_float_double_extended>("double-extended"); in main()
149 test_type<boost::multiprecision::float128>("float128"); in main()
151 test_type<boost::multiprecision::cpp_bin_float_quad>("quad"); in main()
/third_party/glib/tests/refcount/
Dobjects2.c39 static GType test_type = 0; in my_test_get_type() local
41 if (!test_type) { in my_test_get_type()
55 test_type = g_type_register_static (G_TYPE_OBJECT, "GTest", in my_test_get_type()
58 return test_type; in my_test_get_type()
/third_party/boost/libs/lockfree/test/
Dfreelist_test.cpp218 typedef freelist_tester<boost::lockfree::detail::freelist_stack<dummy>, false > test_type; in BOOST_AUTO_TEST_CASE() typedef
219 run_tester<test_type>(); in BOOST_AUTO_TEST_CASE()
225 typedef freelist_tester<boost::lockfree::detail::freelist_stack<dummy>, true > test_type; in BOOST_AUTO_TEST_CASE() typedef
226 run_tester<test_type>(); in BOOST_AUTO_TEST_CASE()
231 typedef freelist_tester<boost::lockfree::detail::fixed_size_freelist<dummy>, true > test_type; in BOOST_AUTO_TEST_CASE() typedef
232 run_tester<test_type>(); in BOOST_AUTO_TEST_CASE()
/third_party/node/test/parallel/
Dtest-http-parser-lazy-loaded.js10 this.test_type = null;
13 this.test_type = type;
29 assert.strictEqual(parser.test_type, DummyParser.REQUEST);

12345