/third_party/json/tests/src/ |
D | unit-pointer_access.cpp | 18 using test_type = json::object_t; typedef 22 test_type* p1 = value.get_ptr<test_type*>(); 23 CHECK(p1 == value.get_ptr<test_type*>()); 24 CHECK(*p1 == value.get<test_type>()); 26 const test_type* p2 = value.get_ptr<const test_type*>(); 27 CHECK(p2 == value.get_ptr<const test_type*>()); 28 CHECK(*p2 == value.get<test_type>()); 30 const test_type* const p3 = value.get_ptr<const test_type* const>(); 31 CHECK(p3 == value.get_ptr<const test_type* const>()); 32 CHECK(*p3 == value.get<test_type>()); [all …]
|
D | unit-reference_access.cpp | 33 using test_type = json::object_t; typedef 37 auto& p1 = value.get_ref<test_type&>(); 38 CHECK(&p1 == value.get_ptr<test_type*>()); 39 CHECK(p1 == value.get<test_type>()); 41 const auto& p2 = value.get_ref<const test_type&>(); 42 CHECK(&p2 == value.get_ptr<const test_type*>()); 43 CHECK(p2 == value.get<test_type>()); 63 using test_type = json::object_t; typedef 70 const auto& p2 = value.get_ref<const test_type&>(); 71 CHECK(&p2 == value.get_ptr<const test_type*>()); [all …]
|
/third_party/openssl/test/ |
D | shlibloadtest.c | 40 static TEST_TYPE test_type; variable 80 switch (test_type) { in test_lib() 89 if (test_type != CRYPTO_FIRST) in test_lib() 98 if (test_type != SSL_FIRST) in test_lib() 107 if (test_type == NO_ATEXIT) { in test_lib() 121 if (test_type != JUST_CRYPTO in test_lib() 122 && test_type != DSO_REFTEST in test_lib() 123 && test_type != NO_ATEXIT) { in test_lib() 172 if (test_type == DSO_REFTEST) { in test_lib() 213 if (test_type == CRYPTO_FIRST || test_type == SSL_FIRST) { in test_lib() [all …]
|
/third_party/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 …]
|
/third_party/ltp/testcases/network/stress/route/ |
D | route6-rmmod | 197 test_type=$1 199 TCID=route6-rmmod0${test_type} 200 TST_COUNT=$test_type 202 case $test_type in 226 case $test_type in
|
D | route4-rmmod | 201 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/alsa-utils/speaker-test/ |
D | speaker-test.c | 102 static int test_type = TEST_PINK_NOISE; /* Test type. 1 = noise, 2 = sine wave … variable 857 switch (test_type) { in init_loop() 875 if (test_type == TEST_WAV) { in write_loop() 896 if (test_type == TEST_PINK_NOISE) in write_loop() 898 else if (test_type == TEST_PATTERN) in write_loop() 1080 test_type = TEST_PINK_NOISE; in main() 1082 test_type = TEST_SINE; in main() 1084 test_type = TEST_WAV; in main() 1086 test_type = TEST_PATTERN; in main() 1088 test_type = atoi(optarg); in main() [all …]
|
/third_party/node/test/parallel/ |
D | test-http-parser-lazy-loaded.js | 10 this.test_type = null; 13 this.test_type = type; 29 assert.strictEqual(parser.test_type, DummyParser.REQUEST);
|
/third_party/vk-gl-cts/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()
|
D | gl4cShaderTextureImageSamplesTests.hpp | 72 void executeFunctionalTest(const _sampler_type& sampler_type, const _test_type& test_type);
|
/third_party/vixl/tools/ |
D | generate_tests.py | 710 template_file = template_files[generator.test_type] 767 "test/aarch32/test-{}-{}-{}.cc".format(generator.test_type, 779 generator.test_type,
|
/third_party/ltp/testcases/kernel/mem/hugetlb/hugemmap/ |
D | hugemmap08.c | 102 static void run_test(unsigned int test_type) in run_test() argument 104 switch (test_type) { in run_test()
|
/third_party/vk-gl-cts/external/openglcts/modules/glesext/tessellation_shader/ |
D | esextcTessellationShaderTessellation.hpp | 278 static std::string getTypeName(_tessellation_test_type test_type); 283 _tessellation_test_type test_type); 344 _tessellation_test_type test_type);
|
D | esextcTessellationShaderTCTE.cpp | 3318 void TessellationShaderTCTEgl_TessLevel::initTestDescriptor(_tessellation_test_type test_type, in initTestDescriptor() argument 3322 out_test_ptr->type = test_type; in initTestDescriptor() 3336 if (test_type == TESSELLATION_TEST_TYPE_TCS_TES || test_type == TESSELLATION_TEST_TYPE_TES) in initTestDescriptor() 3341 if (test_type == TESSELLATION_TEST_TYPE_TCS_TES) in initTestDescriptor() 3382 if (test_type == TESSELLATION_TEST_TYPE_TCS_TES) in initTestDescriptor() 3412 if (test_type == TESSELLATION_TEST_TYPE_TCS_TES || test_type == TESSELLATION_TEST_TYPE_TES) in initTestDescriptor() 3520 if (test_type == TESSELLATION_TEST_TYPE_TCS_TES) in initTestDescriptor() 3899 void TessellationShaderTCTEgl_PatchVerticesIn::initTestDescriptor(_tessellation_test_type test_type, in initTestDescriptor() argument 3904 out_test_ptr->type = test_type; in initTestDescriptor() 3917 if (test_type == TESSELLATION_TEST_TYPE_TCS_TES || test_type == TESSELLATION_TEST_TYPE_TES) in initTestDescriptor() [all …]
|
D | esextcTessellationShaderTessellation.cpp | 1558 …::string TessellationShaderTessellationgl_TessCoord::getTypeName(_tessellation_test_type test_type) in getTypeName() argument 1561 DE_ASSERT(0 <= test_type && test_type <= DE_LENGTH_OF_ARRAY(names)); in getTypeName() 1563 return names[test_type]; in getTypeName() 1571 Context& context, const ExtParameters& extParams, _tessellation_test_type test_type) in TessellationShaderTessellationgl_TessCoord() argument 1572 : TestCaseBase(context, extParams, getTypeName(test_type).c_str(), in TessellationShaderTessellationgl_TessCoord() 1577 , m_test_type(test_type) in TessellationShaderTessellationgl_TessCoord() 1871 const float* outer_tess_level, _tessellation_test_type test_type) in initTestDescriptor() argument 1875 test.type = test_type; in initTestDescriptor() 1888 if (test_type == TESSELLATION_TEST_TYPE_TCS_TES) in initTestDescriptor()
|
D | esextcTessellationShaderTCTE.hpp | 423 void initTestDescriptor(_tessellation_test_type test_type, _test_descriptor* out_test_ptr, 500 void initTestDescriptor(_tessellation_test_type test_type, _test_descriptor* out_test_ptr,
|
/third_party/ffmpeg/libavfilter/ |
D | vsrc_mptestsrc.c | 38 enum test_type { enum 302 enum test_type tt = test->test; in request_frame()
|
/third_party/ltp/testcases/kernel/syscalls/clock_nanosleep/ |
D | clock_nanosleep01.c | 29 enum test_type { enum
|
/third_party/python/Lib/test/ |
D | test_urllib.py | 1294 def help_inputtype(self, given, test_type): argument 1311 (test_type, expected, result)) 1314 (test_type, result.count('&'))) 1320 (test_type, result)) 1324 (test_type, len(result), (5 * 3) + 2))
|
D | test_enum.py | 2689 def test_type(self): member in TestIntFlag 3345 test_type = enum.IntEnum._convert_( 3352 self.assertEqual(test_type(5).name, 'CONVERT_TEST_NAME_A') 3355 test_type = enum.IntEnum._convert_( 3360 self.assertEqual(test_type.CONVERT_TEST_NAME_F, 3361 test_type.CONVERT_TEST_NAME_A) 3362 self.assertEqual(test_type.CONVERT_TEST_NAME_B, 5) 3363 self.assertEqual(test_type.CONVERT_TEST_NAME_C, 5) 3364 self.assertEqual(test_type.CONVERT_TEST_NAME_D, 5) 3365 self.assertEqual(test_type.CONVERT_TEST_NAME_E, 5) [all …]
|
D | test_subclassinit.py | 273 def test_type(self): member in Test
|
D | test_symtable.py | 63 def test_type(self): member in SymtableTest
|
D | test_reprlib.py | 287 def test_type(self): member in LongReprTest
|
/third_party/ltp/testcases/kernel/syscalls/ppoll/ |
D | ppoll01.c | 50 enum test_type { enum
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
D | glcViewportArrayTests.cpp | 2535 const TEST_TYPE test_type = getTestType(); in iterate() local 2539 switch (test_type) in iterate() 2619 setupViewports(test_type, i); in iterate()
|