/third_party/typescript/tests/baselines/reference/ |
D | constEnum3.types | 2 const enum TestType { foo, bar } 3 >TestType : TestType 4 >foo : TestType.foo 5 >bar : TestType.bar 7 type TestTypeStr = keyof typeof TestType; 9 >TestType : typeof TestType 11 function f1(f: TestType) { } 12 >f1 : (f: TestType) => void 13 >f : TestType 19 f1(TestType.foo) [all …]
|
D | constEnum3.symbols | 2 const enum TestType { foo, bar } 3 >TestType : Symbol(TestType, Decl(constEnum3.ts, 0, 0)) 4 >foo : Symbol(TestType.foo, Decl(constEnum3.ts, 0, 21)) 5 >bar : Symbol(TestType.bar, Decl(constEnum3.ts, 0, 26)) 7 type TestTypeStr = keyof typeof TestType; 9 >TestType : Symbol(TestType, Decl(constEnum3.ts, 0, 0)) 11 function f1(f: TestType) { } 14 >TestType : Symbol(TestType, Decl(constEnum3.ts, 0, 0)) 21 f1(TestType.foo) 23 >TestType.foo : Symbol(TestType.foo, Decl(constEnum3.ts, 0, 21)) [all …]
|
D | declarationEmitNoNonRequiredParens.symbols | 11 export type TestType = typeof Test; 12 >TestType : Symbol(TestType, Decl(declarationEmitNoNonRequiredParens.ts, 2, 1)) 15 export const bar = (null as TestType[Extract<keyof TestType, string>][]); 17 >TestType : Symbol(TestType, Decl(declarationEmitNoNonRequiredParens.ts, 2, 1)) 19 >TestType : Symbol(TestType, Decl(declarationEmitNoNonRequiredParens.ts, 2, 1))
|
D | declarationEmitNoNonRequiredParens.types | 11 export type TestType = typeof Test; 12 >TestType : typeof Test 15 export const bar = (null as TestType[Extract<keyof TestType, string>][]); 17 >(null as TestType[Extract<keyof TestType, string>][]) : Test[] 18 >null as TestType[Extract<keyof TestType, string>][] : Test[]
|
D | constEnum3.js | 2 const enum TestType { foo, bar } 3 type TestTypeStr = keyof typeof TestType; 5 function f1(f: TestType) { } argument 8 f1(TestType.foo) 9 f1(TestType.bar)
|
D | declarationEmitNoNonRequiredParens.js | 6 export type TestType = typeof Test; 8 export const bar = (null as TestType[Extract<keyof TestType, string>][]); 29 export type TestType = typeof Test;
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/ |
D | vktRayTracingMiscTests.cpp | 100 enum class TestType enum 284 TestType type; 289 : type (TestType::COUNT), in CaseDef() 296 CaseDef(const TestType& inType) in CaseDef() 304 CaseDef(const TestType& inType, in CaseDef() 3806 ShaderRecordBlockTest( const TestType& testType, const std::vector<VariableType>& varTypesToTest) in ShaderRecordBlockTest() 3852 static std::vector<VariableType> getVarsToTest(const TestType& testType) in getVarsToTest() 3854 …TestType::SHADER_RECORD_BLOCK_EXPLICIT_SCALAR_OFFSET_1) || (testType == TestType::SHADER_RECORD_BL… in getVarsToTest() 3855 …TestType::SHADER_RECORD_BLOCK_EXPLICIT_SCALAR_OFFSET_2) || (testType == TestType::SHADER_RECORD_BL… in getVarsToTest() 3856 …TestType::SHADER_RECORD_BLOCK_EXPLICIT_SCALAR_OFFSET_3) || (testType == TestType::SHADER_RECORD_BL… in getVarsToTest() [all …]
|
D | vktRayTracingProceduralGeometryTests.cpp | 59 enum class TestType enum 422 …RayTracingProceduralGeometryTestCase (tcu::TestContext& context, const char* name, TestType testT… 430 TestType m_testType; 433 …ayTracingProceduralGeometryTestCase(tcu::TestContext& context, const char* name, TestType testType) in RayTracingProceduralGeometryTestCase() 523 if (m_testType == TestType::TRIANGLE_IN_BETWEEN) in initPrograms() 550 if (m_testType == TestType::TRIANGLE_IN_BETWEEN) in createInstance() 563 …cingProceduralGeometryTestCase(testCtx, "object_behind_bounding_boxes", TestType::OBJECT_BEHIND_BO… in createProceduralGeometryTests() 564 … RayTracingProceduralGeometryTestCase(testCtx, "triangle_in_between", TestType::TRIANGLE_IN_BETW… in createProceduralGeometryTests()
|
/third_party/openh264/test/encoder_binary_comparison/ |
D | run_Main.sh | 31 echo "TestType is ${TestType}" 32 if [ "${TestType}" = "LocalTest" ] 35 elif [ "${TestType}" = "UpdateSHA1Table" ] 105 local TestType=$1 113 runTestTypeCheck ${TestType} 132 ./run_OneBitStream.sh ${BitStreamName} ${TestType} 140 if [ ${TestType} = "LocalTest" ] 143 elif [ ${TestType} = "UpdateSHA1Table" ] 148 TestType=$1 149 runMain ${TestType}
|
D | run_OneBitStream.sh | 148 if [ ${TestType} = "TravisTest" ] 167 TestType=$2 210 TestType=$2 211 runMain "${BitSteamName}" "${TestType}"
|
/third_party/vk-gl-cts/external/openglcts/modules/gles3/ |
D | es3cNumberParsingTests.cpp | 80 enum struct TestType enum 88 TestType testType; 102 TestType::NORMAL, // TestType testType 111 TestType::NORMAL, // TestType testType 120 TestType::NORMAL, // TestType testType 129 TestType::NORMAL, // TestType testType 138 TestType::NORMAL, // TestType testType 147 TestType::NORMAL, // TestType testType 156 TestType::NORMAL, // TestType testType 165 TestType::NORMAL, // TestType testType [all …]
|
/third_party/openh264/ |
D | run_Test.sh | 53 local TestType=$2 60 ${BinaryTestDir}/run_OneBitStream.sh ${TestBitStream} ${TestType} 66 local TestType=$1 68 runInputParamCheck ${TestType} ${TestBitStream} 75 if [ "${TestType}" = "UnitTest" ] 81 if [ "${TestType}" = "BinaryCompare" ] 88 TestType=$1 90 runMain ${TestType} ${TestBitStream}
|
/third_party/typescript/tests/cases/conformance/constEnums/ |
D | constEnum3.ts | 1 const enum TestType { foo, bar } enum 2 type TestTypeStr = keyof typeof TestType; 4 function f1(f: TestType) { } 7 f1(TestType.foo) 8 f1(TestType.bar)
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/ |
D | vktImageMismatchedFormatsTests.cpp | 186 enum class TestType enum 193 void fillImageCreateInfo (VkImageCreateInfo& imageCreateInfo, TestType testType, VkFormat format) in fillImageCreateInfo() 195 …const VkImageCreateFlags imageFlags = ((testType == TestType::SPARSE_READ) ? (VK_IMAGE_CREATE_SPA… in fillImageCreateInfo() 224 const TestType type, 233 const TestType m_type; 241 const TestType type, in MismatchedFormatTest() 256 if (m_type == TestType::SPARSE_READ) in checkSupport() 290 if (m_type == TestType::READ) in initPrograms() 303 else if (m_type == TestType::WRITE) in initPrograms() 316 else if (m_type == TestType::SPARSE_READ) in initPrograms() [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/ |
D | vktSpvAsmNonSemanticInfoTests.cpp | 40 enum TestType enum 75 SpvAsmSpirvNonSemanticInfoBasicInstance (Context& ctx, TestType type); 80 TestType m_testType; 83 …vNonSemanticInfoBasicInstance::SpvAsmSpirvNonSemanticInfoBasicInstance(Context& ctx, TestType type) in SpvAsmSpirvNonSemanticInfoBasicInstance() 98 SpvAsmSpirvNonSemanticInfoBasicCase (tcu::TestContext& testCtx, const char* name, TestType type); 105 TestType m_testType; 108 …se::SpvAsmSpirvNonSemanticInfoBasicCase(tcu::TestContext& testCtx, const char* name, TestType type) in SpvAsmSpirvNonSemanticInfoBasicCase() 343 TestType type; in createNonSemanticInfoGroup()
|
D | vktSpvAsmImageSamplerTests.cpp | 48 enum TestType enum 90 bool isValidTestCase (TestType testType, DescriptorType descriptorType, ReadOp readOp) in isValidTestCase() 154 const char* getTestTypeName (TestType testType) in getTestTypeName() 289 std::string getFunctionDstVariableStr (ReadOp readOp, DescriptorType descType, TestType testType) in getFunctionDstVariableStr() 434 std::string getFunctionSrcVariableStr (ReadOp readOp, DescriptorType descType, TestType testType) in getFunctionSrcVariableStr() 510 std::string getFunctionParamTypeStr (TestType testType) in getFunctionParamTypeStr() 527 std::string getFunctionSrcParamStr (TestType testType) in getFunctionSrcParamStr() 544 std::string getFunctionDstParamStr (ReadOp readOp, TestType testType) in getFunctionDstParamStr() 657 …ypeStr (DescriptorType descType, ReadOp readOp, deUint32 depthProperty, TestType testType, int for… in getImageSamplerTypeStr() 774 if (!isValidTestCase((TestType)testNdx, (DescriptorType)descNdx, (ReadOp)opNdx)) in addComputeImageSamplerTest() [all …]
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
D | glcGLSLVectorConstructorTests.cpp | 62 enum struct TestType enum 157 TestType testType; 198 …result.push_back({ testNameVs.str(), testDescriptionVs.str(), TestType::VERTEX_SHADER, outputType,… in generateTestParams() 199 …result.push_back({ testNameFs.str(), testDescriptionFs.str(), TestType::FRAGMENT_SHADER, outputTyp… in generateTestParams() 206 …result.push_back({ testNameInvalidVs.str(), testDescriptionVs.str(), TestType::VERTEX_SHADER_ERROR… in generateTestParams() 207 …result.push_back({ testNameInvalidFs.str(), testDescriptionFs.str(), TestType::FRAGMENT_SHADER_ERR… in generateTestParams() 434 case TestType::VERTEX_SHADER_ERROR: in GLSLVectorConstructorTestCase() 435 case TestType::VERTEX_SHADER: in GLSLVectorConstructorTestCase() 439 case TestType::FRAGMENT_SHADER_ERROR: in GLSLVectorConstructorTestCase() 440 case TestType::FRAGMENT_SHADER: in GLSLVectorConstructorTestCase() [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | declarationEmitNoNonRequiredParens.ts | 6 export type TestType = typeof Test; alias 8 export const bar = (null as TestType[Extract<keyof TestType, string>][]);
|
/third_party/skia/tests/ |
D | CachedDecodingPixelRefTest.cpp | 25 enum TestType { enum in TestImageGenerator 36 TestImageGenerator(TestType type, skiatest::Reporter* reporter, in TestImageGenerator() 82 const TestType fType; 91 const TestImageGenerator::TestType testTypes[] = { in DEF_TEST() 100 TestImageGenerator::TestType test = testTypes[i]; in DEF_TEST()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/subgroups/ |
D | vktSubgroupsBuiltinMaskVarTests.cpp | 41 enum TestType enum 85 TestType testType; 92 static inline string getTestSpirvBuiltinName (TestType testType) in getTestSpirvBuiltinName() 97 static inline string getTestName (TestType testType) in getTestName() 102 static inline string getTestVarName (TestType testType) in getTestVarName() 107 static inline string getTestMathOp (TestType testType) in getTestMathOp() 112 static inline string getTestSpirvOp (TestType testType) in getTestSpirvOp() 1314 const TestType allStagesBuiltinVars[] = in createSubgroupsBuiltinMaskVarTests() 1337 const TestType testType = allStagesBuiltinVars[a]; in createSubgroupsBuiltinMaskVarTests()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/protected_memory/ |
D | vktProtectedMemBufferValidator.cpp | 45 const char* generateShaderVarString (TestType testType) in generateShaderVarString() 57 const char* generateShaderBufferString (TestType testType, BufferType bufferType) in generateShaderBufferString() 75 void initBufferValidatorPrograms (vk::SourceCollections& programCollection, TestType testType, Buff… in initBufferValidatorPrograms()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_query/ |
D | vktRayQueryProceduralGeometryTests.cpp | 52 enum class TestType enum 371 …RayQueryProceduralGeometryTestCase (tcu::TestContext& context, const char* name, TestType testTyp… 379 TestType m_testType; 382 …:RayQueryProceduralGeometryTestCase(tcu::TestContext& context, const char* name, TestType testType) in RayQueryProceduralGeometryTestCase() 474 if (m_testType == TestType::TRIANGLE_IN_BETWEEN) in createInstance() 487 …ueryProceduralGeometryTestCase(testCtx, "object_behind_bounding_boxes", TestType::OBJECT_BEHIND_BO… in createProceduralGeometryTests() 488 …group->addChild(new RayQueryProceduralGeometryTestCase(testCtx, "triangle_in_between", TestType:… in createProceduralGeometryTests()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
D | es31fShaderMultisampleInterpolationStateQueryTests.cpp | 48 enum TestType enum in deqp::gles31::Functional::__anon4fc700fb0111::InterpolationOffsetCase 56 …ase (Context& context, const char* name, const char* desc, QueryType verifier, TestType testType); 64 const TestType m_testType; 67 …tCase (Context& context, const char* name, const char* desc, QueryType verifier, TestType testType) in InterpolationOffsetCase()
|
D | es31fLayoutBindingTests.cpp | 60 enum TestType enum 310 TestType testType, 332 const TestType m_testType; 358 TestType testType, in LayoutBindingRenderCase() 697 TestType testType, 717 const TestType m_testType; 741 TestType testType, in LayoutBindingNegativeCase() 1021 …xt& context, const char* name, const char* desc, ShaderType shaderType, TestType testType, glw::GL… 1045 TestType testType, in SamplerBindingRenderCase() 1226 TestType testType, [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/ |
D | vktApiDeviceDrmPropertiesTests.cpp | 52 enum TestType enum 57 void checkSupport (Context& context, const TestType config) in checkSupport() 185 static tcu::TestStatus testDeviceDrmProperties (Context& context, const TestType testType) in testDeviceDrmProperties()
|