Searched refs:paramTypes (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | Type.cpp | 1125 SmallVector<QualType, 4> paramTypes; in VisitFunctionProtoType() local 1135 paramTypes.push_back(newParamType); in VisitFunctionProtoType() 1164 return Ctx.getFunctionType(returnType, paramTypes, info); in VisitFunctionProtoType() 1428 SmallVector<QualType, 4> paramTypes; in VisitFunctionType() local 1439 paramTypes.push_back(newParamType); in VisitFunctionType() 1470 return Ctx.getFunctionType(returnType, paramTypes, info); in VisitFunctionType()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | TreeTransform.h | 15859 SmallVector<QualType, 4> paramTypes; in TransformBlockExpr() local 15867 exprFunctionType->getExtParameterInfosOrNull(), paramTypes, ¶ms, in TransformBlockExpr() 15877 epi.ExtParameterInfos = extParamInfos.getPointerOrNull(paramTypes.size()); in TransformBlockExpr() 15880 getDerived().RebuildFunctionProtoType(exprResultType, paramTypes, epi); in TransformBlockExpr()
|
H A D | SemaType.cpp | 2543 static void checkExtParameterInfos(Sema &S, ArrayRef<QualType> paramTypes, in checkExtParameterInfos() argument 2563 for (size_t paramIndex = 0, numParams = paramTypes.size(); in checkExtParameterInfos()
|