Home
last modified time | relevance | path

Searched refs:functionType (Results 1 – 10 of 10) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiVersionCheck.cpp273 const deUint32 functionType = testsArr[ndx].second; in mixupAddressProcCheck() local
274 if (functionType == FUNCTIONORIGIN_INSTANCE) in mixupAddressProcCheck()
279 else if (functionType == FUNCTIONORIGIN_DEVICE) in mixupAddressProcCheck()
290 const deUint32 functionType = testsArr[ndx].second; in specialCasesCheck() local
291 if (functionType == FUNCTIONORIGIN_PLATFORM) in specialCasesCheck()
293 else if (functionType == FUNCTIONORIGIN_INSTANCE) in specialCasesCheck()
295 else if (functionType == FUNCTIONORIGIN_DEVICE) in specialCasesCheck()
309 const deUint32 functionType = testsArr[ndx].second; in regularCheck() local
310 if (functionType == FUNCTIONORIGIN_PLATFORM) in regularCheck()
312 else if (functionType == FUNCTIONORIGIN_INSTANCE) in regularCheck()
[all …]
/external/deqp-deps/glslang/SPIRV/
DspvIR.h281 Function(Id id, Id resultType, Id functionType, Id firstParam, Module& parent);
396 __inline Function::Function(Id id, Id resultType, Id functionType, Id firstParamId, Module& parent) in Function() argument
401 functionInstruction.addIdOperand(functionType); in Function()
406 Instruction* typeInst = parent.getInstruction(functionType); in Function()
/external/clang/unittests/ASTMatchers/
DASTMatchersNodeTest.cpp1162 EXPECT_TRUE(matches("int (*f)(int);", functionType())); in TEST()
1163 EXPECT_TRUE(matches("void f(int i) {}", functionType())); in TEST()
1168 notMatches("void (*fp)(void);", pointerType(pointee(functionType())))); in TEST()
1170 pointerType(pointee(ignoringParens(functionType()))))); in TEST()
1189 varDecl(hasType(pointsTo(parenType(innerType(functionType()))))))); in TEST()
1192 varDecl(hasType(pointsTo(parenType(innerType(functionType()))))))); in TEST()
DASTMatchersTraversalTest.cpp110 qualType(functionType(), forEach(qualType(isInteger()).bind("x"))), in TEST()
/external/clang/unittests/AST/
DASTTypeTraitsTest.cpp142 EXPECT_TRUE(Verifier.match("void f() {}", typeLoc(loc(functionType())))); in TEST()
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp194 REGISTER_MATCHER(functionType); in RegistryMaps()
/external/syzkaller/vendor/github.com/ianlancetaylor/demangle/
Ddemangle.go1150 ret = st.functionType()
1503 func (st *state) functionType() AST { func
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h4592 AST_TYPE_MATCHER(FunctionType, functionType);
/external/swiftshader/src/Reactor/
DLLVMReactor.cpp995 llvm::FunctionType *functionType = llvm::FunctionType::get(T(ReturnType), T(Params), false); in createFunction() local
996 …::function = llvm::Function::Create(functionType, llvm::GlobalValue::InternalLinkage, "", ::module… in createFunction()
/external/clang/lib/Sema/
DTreeTransform.h11368 QualType functionType = in TransformBlockExpr() local
11370 blockScope->FunctionType = functionType; in TransformBlockExpr()