Home
last modified time | relevance | path

Searched refs:constantType (Results 1 – 2 of 2) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmTypeTests.cpp1748 const string constantType = (m_vectorSize > 1) ? testScalarType : m_spirvTestType; in createConstantDeclaration() local
1757 …str += constantName + de::toString(constantNdx) + " = OpSpecConstant %" + constantType + " " + de:… in createConstantDeclaration()
1773 str += constantName + de::toString(constantNdx) + " = OpConstantNull %" + constantType + "\n"; in createConstantDeclaration()
1775 …:toString(constantNdx) + " = " + constantOp[constantNdx % 2] + " %" + constantType + " " + de::toS… in createConstantDeclaration()
1795 str += constantName + de::toString(constantNdx) + " = OpConstantNull %" + constantType + "\n"; in createConstantDeclaration()
1797 …str += constantName + de::toString(constantNdx) + " = OpConstant %" + constantType + " " + de::toS… in createConstantDeclaration()
/external/javapoet/src/test/java/com/squareup/javapoet/
DTypeSpecTest.java2507 TypeSpec constantType = TypeSpec.anonymousClassBuilder("").build(); in modifyEnumConstants() local
2509 .addEnumConstant("BELL", constantType) in modifyEnumConstants()
2513 assertThat(builder.build().enumConstants).containsExactly("BELL", constantType); in modifyEnumConstants()