Searched refs:paramTypes (Results 1 – 4 of 4) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
H A D | Type.cpp | 1039 SmallVector<QualType, 4> paramTypes; in VisitFunctionProtoType() local 1049 paramTypes.push_back(newParamType); in VisitFunctionProtoType() 1078 return Ctx.getFunctionType(returnType, paramTypes, info); in VisitFunctionProtoType() 1333 SmallVector<QualType, 4> paramTypes; in VisitFunctionType() local 1344 paramTypes.push_back(newParamType); in VisitFunctionType() 1375 return Ctx.getFunctionType(returnType, paramTypes, info); in VisitFunctionType()
|
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/go/llvm/ |
H A D | ir.go | 584 func FunctionType(returnType Type, paramTypes []Type, isVarArg bool) (t Type) { 587 if len(paramTypes) > 0 { 588 pt = llvmTypeRefPtr(¶mTypes[0]) 589 ptlen = C.unsigned(len(paramTypes))
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
H A D | TreeTransform.h | 13994 SmallVector<QualType, 4> paramTypes; in TransformBlockExpr() local 14002 exprFunctionType->getExtParameterInfosOrNull(), paramTypes, ¶ms, in TransformBlockExpr() 14012 epi.ExtParameterInfos = extParamInfos.getPointerOrNull(paramTypes.size()); in TransformBlockExpr() 14015 getDerived().RebuildFunctionProtoType(exprResultType, paramTypes, epi); in TransformBlockExpr()
|
H A D | SemaType.cpp | 2764 static void checkExtParameterInfos(Sema &S, ArrayRef<QualType> paramTypes, in checkExtParameterInfos() argument 2779 for (size_t paramIndex = 0, numParams = paramTypes.size(); in checkExtParameterInfos()
|