Home
last modified time | relevance | path

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

123456

/external/tensorflow/tensorflow/lite/kernels/
Dsplit_test.cc80 void Check(TestType test_type, int axis, int num_splits, in Check() argument
92 if (test_type == TestType::kDynamic) { in Check()
130 for (TestType test_type : SplitOpTest<TestType>::range_) { in TYPED_TEST()
131 Check<TypeParam>(/*axis_as_tensor*/ test_type, in TYPED_TEST()
139 Check<TypeParam>(/*axis_as_tensor*/ test_type, in TYPED_TEST()
147 Check<TypeParam>(/*axis_as_tensor*/ test_type, in TYPED_TEST()
155 Check<TypeParam>(/*axis_as_tensor*/ test_type, in TYPED_TEST()
167 for (TestType test_type : SplitOpTest<TestType>::range_) { in TYPED_TEST()
168 Check<TypeParam>(/*axis_as_tensor*/ test_type, in TYPED_TEST()
176 Check<TypeParam>(/*axis_as_tensor*/ test_type, in TYPED_TEST()
[all …]
Dexpand_dims_test.cc87 for (TestType test_type : ExpandDimsOpTest<TestType>::range_) { in TYPED_TEST()
90 ExpandDimsOpModel<TypeParam> axis_0(0, {2, 2}, values, test_type); in TYPED_TEST()
95 ExpandDimsOpModel<TypeParam> axis_1(1, {2, 2}, values, test_type); in TYPED_TEST()
100 ExpandDimsOpModel<TypeParam> axis_2(2, {2, 2}, values, test_type); in TYPED_TEST()
108 for (TestType test_type : ExpandDimsOpTest<TestType>::range_) { in TYPED_TEST()
111 ExpandDimsOpModel<TypeParam> m(-1, {2, 2}, values, test_type); in TYPED_TEST()
/external/autotest/server/cros/network/
Dnetperf_runner.py21 def from_netperf_results(test_type, results, duration_seconds): argument
38 if test_type in NetperfConfig.TCP_STREAM_TESTS:
54 result = NetperfResult(test_type, duration_seconds,
56 elif test_type in NetperfConfig.UDP_STREAM_TESTS:
73 result = NetperfResult(test_type, duration_seconds,
76 elif test_type in NetperfConfig.REQUEST_RESPONSE_TESTS:
93 result = NetperfResult(test_type, duration_seconds,
96 raise error.TestFail('Invalid netperf test type: %r.' % test_type)
128 if len(set([x.test_type for x in samples])) != 1:
140 samples[0].test_type,
[all …]
/external/llvm-project/libcxx/test/std/containers/sequences/array/
Dsize_and_alignment.pass.cpp40 void test_type() { in test_type() function
65 test_type<char>(); in main()
66 test_type<int>(); in main()
67 test_type<double>(); in main()
68 test_type<long double>(); in main()
71 test_type<std::max_align_t>(); in main()
73 test_type<TestType1>(); in main()
74 test_type<TestType2>(); in main()
/external/autotest/client/bin/
Dfio_util.py81 test_type = '' variable in fio_graph_generator
149 def _gen_data_row(cls, test_type, pass_list, percentile): argument
168 def _write_data(cls, f, test_type, pass_list, percentile): argument
179 row = cls._gen_data_row(test_type, pass_list, percentile)
187 def _write_option(cls, f, test_name, test_type, percentile): argument
199 (cls.graph_title[test_type], test_name))
202 (cls.graph_title[test_type], test_name))
205 option['vAxis'] = {'title': cls.v_title[test_type]}
212 def _write_graph(cls, test_name, test_type, pass_list, percentile=False): argument
222 test_name, test_type, str(pass_list))
[all …]
/external/libcxx/test/std/containers/sequences/array/
Dsize_and_alignment.pass.cpp47 void test_type() { in test_type() function
64 test_type<char>(); in main()
65 test_type<int>(); in main()
66 test_type<double>(); in main()
67 test_type<long double>(); in main()
68 test_type<std::max_align_t>(); in main()
69 test_type<TestType1>(); in main()
70 test_type<TestType2>(); in main()
/external/llvm-project/mlir/test/mlir-tblgen/
Dinterfaces.mlir3 // expected-remark@below {{'!test.test_type' - TestA}}
4 // expected-remark@below {{'!test.test_type' - TestB}}
5 // expected-remark@below {{'!test.test_type' - TestC}}
6 // expected-remark@below {{'!test.test_type' - TestD}}
7 // expected-remark@below {{'!test.test_type' - TestRet}}
8 // expected-remark@below {{'!test.test_type' - TestE}}
9 %foo0 = "foo.test"() : () -> (!test.test_type)
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.noreturn/
Dp1.cpp30 template<typename T> void test_type(T) { T::error; } // expected-error {{has no members}} in test_type() function
31 template<> void test_type(int (*)()) {} in test_type() function
40 test_type(e); in check()
41 test_type(f); in check()
42 test_type(g); in check()
43 test_type(h); // expected-note {{instantiation}} in check()
/external/llvm-project/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.noreturn/
Dp1.cpp37 template<typename T> void test_type(T) { T::error; } // expected-error {{has no members}} in test_type() function
38 template<> void test_type(int (*)()) {} in test_type() function
47 test_type(e); in check()
48 test_type(f); in check()
49 test_type(g); in check()
50 test_type(h); // expected-note {{instantiation}} in check()
/external/vixl/tools/test_generator/
Dgenerator.py312 def __init__(self, test_name, test_isa, test_type, mnemonics, operands, argument
316 self.test_type = test_type
322 if self.test_type == "simulator":
331 if self.test_type in ["simulator", "macro-assembler"]:
475 if self.test_type == "simulator":
477 elif self.test_type == "assembler":
479 elif self.test_type == "macro-assembler":
481 elif self.test_type == "assembler-negative":
484 raise Exception("Unrecognized test type \"{}\".".format(self.test_type))
529 if self.test_type in ["simulator", "macro-assembler"]:
[all …]
/external/rust/crates/ring/src/rsa/
Dconvert_nist_rsa_test_vectors.py146 def main(fn, test_type, padding_alg): argument
158 if test_type == "verify":
160 elif test_type == "sign":
163 print("Invalid test_type: %s" % test_type)
174 if test_type == "verify":
205 if test_type == 'sign':
239 test_type = 'sign' variable
241 test_type = 'verify' variable
246 main(sys.argv[1], test_type, pad_alg)
/external/OpenCL-CTS/test_conformance/basic/
Dtest_vector_swizzle.cpp666 static int test_type(const char* type_name, cl_device_id device, in test_type() function
682 result |= test_type<cl_char>("char", device, context, queue); in test_vector_swizzle()
683 result |= test_type<cl_uchar>("uchar", device, context, queue); in test_vector_swizzle()
684 result |= test_type<cl_short>("short", device, context, queue); in test_vector_swizzle()
685 result |= test_type<cl_ushort>("ushort", device, context, queue); in test_vector_swizzle()
686 result |= test_type<cl_int>("int", device, context, queue); in test_vector_swizzle()
687 result |= test_type<cl_uint>("uint", device, context, queue); in test_vector_swizzle()
690 result |= test_type<cl_long>("long", device, context, queue); in test_vector_swizzle()
691 result |= test_type<cl_ulong>("ulong", device, context, queue); in test_vector_swizzle()
693 result |= test_type<cl_float>("float", device, context, queue); in test_vector_swizzle()
[all …]
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
Drx-take_while.hpp45 typedef rxu::decay_t<Predicate> test_type; typedef
46 test_type test;
49 take_while(test_type t) in take_while()
62 test_type test;
64 take_while_observer(dest_type d, test_type t) in take_while_observer()
83 static subscriber<value_type, observer_type> make(dest_type d, test_type t) { in make()
Drx-skip_while.hpp45 typedef rxu::decay_t<Predicate> test_type; typedef
46 test_type test;
49 skip_while(test_type t) in skip_while()
62 test_type test;
65 skip_while_observer(dest_type d, test_type t) in skip_while_observer()
85 static subscriber<value_type, observer_type> make(dest_type d, test_type t) { in make()
Drx-filter.hpp45 typedef rxu::decay_t<Predicate> test_type; typedef
46 test_type test;
48 filter(test_type t) in filter()
61 mutable test_type test;
63 filter_observer(dest_type d, test_type t) in filter_observer()
89 static subscriber<value_type, observer_type> make(dest_type d, test_type t) { in make()
Drx-all.hpp46 typedef rxu::decay_t<Predicate> test_type; typedef
47 test_type test;
51 all(test_type t) in all()
64 test_type test;
67 all_observer(dest_type d, test_type t) in all_observer()
97 static subscriber<value_type, observer_type> make(dest_type d, test_type t) { in make()
Drx-any.hpp55 typedef rxu::decay_t<Predicate> test_type; typedef
56 test_type test;
58 any(test_type t) in any()
71 test_type test;
74 any_observer(dest_type d, test_type t) in any_observer()
104 static subscriber<value_type, observer_type> make(dest_type d, test_type t) { in make()
/external/igt-gpu-tools/tests/
Dkms_atomic_interruptible.c42 static int block_plane(igt_display_t *display, igt_output_t *output, enum plane_test_type test_type in block_plane() argument
50 if (test_type == test_legacy_modeset || test_type == test_atomic_modeset) { in block_plane()
79 enum plane_test_type test_type, unsigned plane_type) in run_plane_test() argument
113 if (test_type != test_legacy_modeset && test_type != test_atomic_modeset) { in run_plane_test()
120 block = block_plane(display, output, test_type, plane); in run_plane_test()
138 switch (test_type) { in run_plane_test()
259 if (test_type == test_legacy_modeset || test_type == test_atomic_modeset) in run_plane_test()
/external/autotest/server/site_tests/bluetooth_AdapterLEHealth/
Dbluetooth_AdapterLEHealth.py158 test_type=self.flag)
174 test_type=self.flag)
196 test_type=self.flag)
217 test_type=self.flag)
234 test_type=self.flag)
256 test_type=self.flag)
280 test_type=self.flag)
297 test_type=self.flag)
322 test_type=self.flag)
344 test_type=self.flag)
/external/ltp/testcases/network/stress/route/
Droute6-rmmod194 test_type=$1
196 TCID=route6-rmmod0${test_type}
197 TST_COUNT=$test_type
199 case $test_type in
223 case $test_type in
Droute4-rmmod198 test_type=$1
200 TCID=route4-rmmod0${test_type}
201 TST_COUNT=$test_type
203 case $test_type in
227 case $test_type in
/external/igt-gpu-tools/lib/tests/
Digt_exit_handler.c55 enum test_type { enum
63 static int testfunc(enum test_type test_type) in testfunc() argument
88 switch (test_type) { in testfunc()
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/schedulers/
Drx-test.hpp16 class test_type : public scheduler_interface class
126 test_type() in test_type() function in rxcpp::schedulers::detail::test_type
167 explicit mock_observer(std::shared_ptr<test_type::test_type_state> sc) in mock_observer()
172 std::shared_ptr<test_type::test_type_state> sc;
188 subscriber<T, rxt::testable_observer<T>> test_type::test_type_worker::make_subscriber() const in make_subscriber()
221 std::shared_ptr<test_type::test_type_state> sc;
229 …cold_observable(std::shared_ptr<test_type::test_type_state> sc, worker w, std::vector<recorded_typ… in cold_observable()
237 …cold_observable(std::shared_ptr<test_type::test_type_state> sc, worker w, Iterator begin, Iterator… in cold_observable()
275 rxt::testable_observable<T> test_type::make_cold_observable(std::vector<rxn::recorded<std::shared_p… in make_cold_observable()
286 std::shared_ptr<test_type::test_type_state> sc;
[all …]
/external/perfetto/tools/
Ddiff_test_trace_processor.py63 def __init__(self, test_type, trace_path, query_path_or_metric, argument
65 self.test_type = test_type
74 def __init__(self, test_type, input_name, trace, cmd, expected, actual, argument
76 self.test_type = test_type
254 trace_path, result.test_type, result.input_name))
320 test_type = 'queries'
324 test_type = 'metrics'
328 Test(test_type, trace_path, query_path_or_metric, expected_path))
435 key=lambda x: (x.test_type, x.trace_path, x.query_path_or_metric))
440 if perf_args.test_type == 'queries':
[all …]
/external/autotest/metadata/utils/
Dfind_tests.py33 for test_type in ["client", "server"]:
34 for path in glob.iglob(test_type + "/site_tests/*/*.star"):
38 [test_type, test_folder, file_name[:-len(".star")]])

123456