Searched refs:FuncType (Results 1 – 6 of 6) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/ |
| H A D | Marshallers.h | 495 using FuncType = ReturnType (*)(); 497 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)()); 506 using FuncType = ReturnType (*)(ArgType1); 509 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)( 519 using FuncType = ReturnType (*)(ArgType1, ArgType2); 523 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)(
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | NullabilityChecker.cpp | 753 const FunctionType *FuncType = Decl->getFunctionType(); in checkPostCall() local 754 if (!FuncType) in checkPostCall() 756 QualType ReturnType = FuncType->getReturnType(); in checkPostCall()
|
| /freebsd-12.1/contrib/llvm/lib/Target/Hexagon/ |
| H A D | HexagonLoopIdiomRecognition.cpp | 165 using FuncType = std::function<Value* (Instruction*, LLVMContext&)>; typedef 166 Rule(StringRef N, FuncType F) : Name(N), Fn(F) {} in Rule() 168 FuncType Fn; 171 void addRule(StringRef N, const Rule::FuncType &F) { in addRule()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteModernObjC.cpp | 3094 QualType FuncType = getSimpleFunctionType( in SynthMsgSendStretCallExpr() local 3096 QualType castType = Context->getPointerType(FuncType); in SynthMsgSendStretCallExpr() 3172 ID, FuncType, nullptr, SC_Extern, false, false); in SynthMsgSendStretCallExpr() 4547 QualType FuncType; in convertFunctionTypeOfBlocks() local 4549 FuncType = getSimpleFunctionType(Res, ArgTypes); in convertFunctionTypeOfBlocks() 4550 else FuncType = QualType(FT, 0); in convertFunctionTypeOfBlocks() 4551 return FuncType; in convertFunctionTypeOfBlocks()
|
| H A D | RewriteObjC.cpp | 3709 QualType FuncType; in convertFunctionTypeOfBlocks() local 3713 FuncType = getSimpleFunctionType(Res, ArgTypes); in convertFunctionTypeOfBlocks() 3714 else FuncType = QualType(FT, 0); in convertFunctionTypeOfBlocks() 3715 return FuncType; in convertFunctionTypeOfBlocks()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaChecking.cpp | 1274 const auto *FuncType = in CheckBuiltinFunctionCall() local 1277 if (!FuncType) { in CheckBuiltinFunctionCall() 1284 if (const auto *FT = dyn_cast<FunctionProtoType>(FuncType)) { in CheckBuiltinFunctionCall()
|