Searched defs:FuncType (Results 1 - 9 of 9) sorted by relevance

/external/spirv-llvm/lib/SPIRV/libSPIRV/
H A DSPIRVFunction.cpp77 getEncoder(O) << Type << Id << FCtrlMask << FuncType; local
100 Decoder >> Type >> Id >> FCtrlMask >> FuncType; local
H A DSPIRVFunction.h88 FuncType(FunctionType), FCtrlMask(FunctionControlMaskNone) {
94 SPIRVFunction():SPIRVValue(OpFunction),FuncType(NULL),
98 SPIRVTypeFunction *getFunctionType() const { return FuncType;}
137 assert(FuncType && "Invalid func type");
156 SPIRVTypeFunction *FuncType; // Function type member in class:SPIRV::SPIRVFunction
H A DSPIRVModule.cpp811 SPIRVModuleImpl::addFunction(SPIRVTypeFunction *FuncType, SPIRVId Id) { argument
812 return addFunction(new SPIRVFunction(this, FuncType,
813 getId(Id, FuncType->getNumParameters() + 1)));
/external/llvm/unittests/Transforms/Utils/
H A DCloning.cpp220 FunctionType* FuncType = FunctionType::get(Type::getVoidTy(C), false); local
221 OldFunc = Function::Create(FuncType, GlobalValue::PrivateLinkage, "f", M);
232 DISubroutineType *FuncType = local
239 CU, "f", "f", File, 4, FuncType, true, true, 3, 0, false);
409 auto *FuncType = FunctionType::get(Type::getVoidTy(C), false); local
410 auto *PersFn = Function::Create(FuncType, GlobalValue::ExternalLinkage,
413 Function::Create(FuncType, GlobalValue::PrivateLinkage, "f", OldM);
/external/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.h441 typedef ReturnType (*FuncType)(); typedef
443 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)());
452 typedef ReturnType (*FuncType)(ArgType1); typedef
455 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)(
465 typedef ReturnType (*FuncType)(ArgType1, ArgType2); typedef
469 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)(
/external/deqp/modules/gles31/functional/
H A Des31fDebugTests.cpp147 enum FuncType enum in class:deqp::gles31::Functional::__anon4682::TestFunctionWrapper
153 FuncType m_type;
/external/clang/lib/StaticAnalyzer/Checkers/
H A DNullabilityChecker.cpp776 const FunctionType *FuncType = Decl->getFunctionType(); local
777 if (!FuncType)
779 QualType ReturnType = FuncType->getReturnType();
/external/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp3709 QualType FuncType; local
3713 FuncType = getSimpleFunctionType(Res, ArgTypes);
3714 else FuncType = QualType(FT, 0);
3715 return FuncType;
H A DRewriteModernObjC.cpp4552 QualType FuncType; local
4554 FuncType = getSimpleFunctionType(Res, ArgTypes);
4555 else FuncType = QualType(FT, 0);
4556 return FuncType;

Completed in 406 milliseconds