Home
last modified time | relevance | path

Searched refs:paramTypes (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DType.cpp1039 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 Dir.go584 func FunctionType(returnType Type, paramTypes []Type, isVarArg bool) (t Type) {
587 if len(paramTypes) > 0 {
588 pt = llvmTypeRefPtr(&paramTypes[0])
589 ptlen = C.unsigned(len(paramTypes))
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DTreeTransform.h13994 SmallVector<QualType, 4> paramTypes; in TransformBlockExpr() local
14002 exprFunctionType->getExtParameterInfosOrNull(), paramTypes, &params, in TransformBlockExpr()
14012 epi.ExtParameterInfos = extParamInfos.getPointerOrNull(paramTypes.size()); in TransformBlockExpr()
14015 getDerived().RebuildFunctionProtoType(exprResultType, paramTypes, epi); in TransformBlockExpr()
H A DSemaType.cpp2764 static void checkExtParameterInfos(Sema &S, ArrayRef<QualType> paramTypes, in checkExtParameterInfos() argument
2779 for (size_t paramIndex = 0, numParams = paramTypes.size(); in checkExtParameterInfos()