HomeSort by: relevance | last modified time | path
    Searched refs:paramTypes (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
Type.cpp 1039 SmallVector<QualType, 4> paramTypes;
1049 paramTypes.push_back(newParamType);
1078 return Ctx.getFunctionType(returnType, paramTypes, info);
1333 SmallVector<QualType, 4> paramTypes;
1344 paramTypes.push_back(newParamType);
1375 return Ctx.getFunctionType(returnType, paramTypes, info);
  /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
ir.go 584 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))
601 func (t Type) ParamTypes() []Type {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
TreeTransform.h 677 const QualType *ParamTypes,
926 MutableArrayRef<QualType> ParamTypes,
5575 const QualType *ParamTypes,
5701 QualType OldType = ParamTypes[i];
5827 SmallVector<QualType, 4> ParamTypes;
5839 ParamTypes, &ParamDecls, ExtParamInfos))
5865 ParamTypes, &ParamDecls, ExtParamInfos))
5877 ExtParamInfos.getPointerOrNull(ParamTypes.size())) {
5880 != llvm::makeArrayRef(NewExtParamInfos, ParamTypes.size())) {
5891 T->getParamTypes() != llvm::makeArrayRef(ParamTypes) || EPIChanged)
    [all...]
SemaType.cpp 2764 static void checkExtParameterInfos(Sema &S, ArrayRef<QualType> paramTypes,
2779 for (size_t paramIndex = 0, numParams = paramTypes.size();
2818 MutableArrayRef<QualType> ParamTypes,
2825 for (unsigned Idx = 0, Cnt = ParamTypes.size(); Idx < Cnt; ++Idx) {
2827 QualType ParamType = Context.getAdjustedParameterType(ParamTypes[Idx]);
2843 ParamTypes[Idx] = ParamType;
2847 checkExtParameterInfos(*this, ParamTypes, EPI,
2859 return Context.getFunctionType(T, ParamTypes, EPI);

Completed in 66 milliseconds