/external/autotest/server/cros/network/ |
D | netperf_runner.py | 21 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/autotest/client/bin/ |
D | fio_util.py | 72 test_type = '' variable in fio_graph_generator 140 def _gen_data_row(cls, test_type, pass_list, percentile): argument 159 def _write_data(cls, f, test_type, pass_list, percentile): argument 170 row = cls._gen_data_row(test_type, pass_list, percentile) 178 def _write_option(cls, f, test_name, test_type, percentile): argument 190 (cls.graph_title[test_type], test_name)) 193 (cls.graph_title[test_type], test_name)) 196 option['vAxis'] = {'title': cls.v_title[test_type]} 203 def _write_graph(cls, test_name, test_type, pass_list, percentile=False): argument 213 test_name, test_type, str(pass_list)) [all …]
|
/external/libcxx/test/std/containers/sequences/array/ |
D | size_and_alignment.pass.cpp | 47 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/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.noreturn/ |
D | p1.cpp | 30 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/webrtc/webrtc/voice_engine/test/auto_test/ |
D | voe_standard_test.cc | 228 int run_auto_test(TestType test_type) { in run_auto_test() argument 229 assert(test_type != Standard); in run_auto_test() 244 if (test_type == Stress) { in run_auto_test() 247 } else if (test_type == CPU) { in run_auto_test() 289 TestType test_type = Invalid; in RunInManualMode() local 294 test_type = Standard; in RunInManualMode() 299 test_type = Stress; in RunInManualMode() 304 test_type = CPU; in RunInManualMode() 311 if (test_type == Standard) { in RunInManualMode() 319 return run_auto_test(test_type); in RunInManualMode()
|
/external/vixl/tools/test_generator/ |
D | generator.py | 312 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/autotest/server/cros/ap_configurators/ |
D | ap_configurator_factory.py | 49 self.test_type = ap_test_type 180 if self.test_type == ap_constants.AP_TEST_TYPE_CHAOS: 183 elif self.test_type == ap_constants.AP_TEST_TYPE_CLIQUE: 186 elif self.test_type == ap_constants.AP_TEST_TYPE_CASEY5: 189 elif self.test_type == ap_constants.AP_TEST_TYPE_CASEY7: 216 if self.test_type == ap_constants.AP_TEST_TYPE_CHAOS: 219 elif self.test_type == ap_constants.AP_TEST_TYPE_CLIQUE: 222 elif self.test_type == ap_constants.AP_TEST_TYPE_CASEY5: 225 elif self.test_type == ap_constants.AP_TEST_TYPE_CASEY7:
|
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/ |
D | rx-skip_while.hpp | 45 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()
|
D | rx-take_while.hpp | 45 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()
|
D | rx-filter.hpp | 45 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()
|
D | rx-all.hpp | 46 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()
|
D | rx-any.hpp | 55 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/ltp/testcases/network/stress/route/ |
D | route6-change-dst | 167 test_type=$1 169 TCID=route6-change-dst0${test_type} 170 TST_COUNT=$test_type 172 case $test_type in 215 case $test_type in 236 case $test_type in
|
D | route4-change-dst | 172 test_type=$1 174 TCID=route4-change-dst0${test_type} 175 TST_COUNT=$test_type 177 case $test_type in 219 case $test_type in 240 case $test_type in
|
D | route6-change-gw | 172 test_type=$1 174 TCID=route6-change-gw0${test_type} 175 TST_COUNT=$test_type 177 case $test_type in 216 case $test_type in 242 case $test_type in
|
D | route4-change-gw | 174 test_type=$1 176 TCID=route4-change-gw0${test_type} 177 TST_COUNT=$test_type 179 case $test_type in 217 case $test_type in 242 case $test_type in
|
D | route6-rmmod | 194 test_type=$1 196 TCID=route6-rmmod0${test_type} 197 TST_COUNT=$test_type 199 case $test_type in 223 case $test_type in
|
D | route6-change-if | 189 test_type=$1 191 TCID=route6-change-if0${test_type} 192 TST_COUNT=$test_type 194 case $test_type in 241 case $test_type in 272 case $test_type in
|
D | route4-change-if | 191 test_type=$1 193 TCID=route4-change-if0${test_type} 194 TST_COUNT=$test_type 196 case $test_type in 243 case $test_type in 274 case $test_type in
|
D | route4-rmmod | 198 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/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/schedulers/ |
D | rx-test.hpp | 16 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/Reactive-Extensions/RxCpp/Rx/v2/test/operators/ |
D | lift.cpp | 8 typedef typename std::decay<Predicate>::type test_type; typedef 9 test_type test; 11 liftfilter(test_type t) in liftfilter() 25 test_type test; 27 filter_observer(dest_type d, test_type t) in filter_observer() 51 … static rx::subscriber<value_type, observer_type> make(const dest_type& d, const test_type& t) { in make()
|
/external/autotest/client/site_tests/bluetooth_RegressionClient/ |
D | bluetooth_RegressionClient.py | 15 def _test_init(self, test_type): argument 20 self._test_type = test_type 21 logging.info('Beginning test of type %s.', test_type) 23 self.collect_logs(message=('Before %s.' % test_type))
|
/external/autotest/client/tests/monotonic_time/ |
D | monotonic_time.py | 19 def run_once(self, test_type = None, duration = 300, threshold = None): argument 20 if not test_type: 27 cmd += ' ' + test_type
|
/external/deqp/external/openglcts/modules/gl/ |
D | gl4cShaderTextureImageSamplesTests.cpp | 227 const _test_type& test_type) in executeFunctionalTest() argument 262 switch (test_type) in executeFunctionalTest() 477 if (test_type == TEST_TYPE_IMAGE) in executeFunctionalTest() 511 if (test_type == TEST_TYPE_IMAGE) in executeFunctionalTest() 633 _test_type test_type = (_test_type)n_test_type; in iterate() local 635 if (test_type == type_to_test) in iterate() 637 executeFunctionalTest(sampler_type, test_type); in iterate()
|