Home
last modified time | relevance | path

Searched refs:ParamTypes (Results 1 – 15 of 15) sorted by relevance

/external/clang/lib/Sema/
DSemaOverload.cpp5969 Candidate.BuiltinTypes.ParamTypes[ArgIdx] = ParamTys[ArgIdx]; in AddBuiltinCandidate()
6303 QualType ParamTypes[2]; in AddBuiltinAssignmentOperatorCandidates() local
6306 ParamTypes[0] = S.Context.getLValueReferenceType(T); in AddBuiltinAssignmentOperatorCandidates()
6307 ParamTypes[1] = T; in AddBuiltinAssignmentOperatorCandidates()
6308 S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 2, CandidateSet, in AddBuiltinAssignmentOperatorCandidates()
6313 ParamTypes[0] in AddBuiltinAssignmentOperatorCandidates()
6315 ParamTypes[1] = T; in AddBuiltinAssignmentOperatorCandidates()
6316 S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 2, CandidateSet, in AddBuiltinAssignmentOperatorCandidates()
6504 QualType ParamTypes[2] = { in addPlusPlusMinusMinusStyleOverloads() local
6511 S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 1, CandidateSet); in addPlusPlusMinusMinusStyleOverloads()
[all …]
DSemaTemplateDeduction.cpp2238 SmallVectorImpl<QualType> &ParamTypes, in SubstituteExplicitTemplateArguments() argument
2252 ParamTypes.push_back((*P)->getType()); in SubstituteExplicitTemplateArguments()
2332 ParamTypes)) in SubstituteExplicitTemplateArguments()
2370 ParamTypes)) in SubstituteExplicitTemplateArguments()
2375 ParamTypes.data(), ParamTypes.size(), in SubstituteExplicitTemplateArguments()
3044 SmallVector<QualType, 4> ParamTypes; in DeduceTemplateArguments() local
3051 ParamTypes, in DeduceTemplateArguments()
3061 ParamTypes.push_back(Function->getParamDecl(I)->getType()); in DeduceTemplateArguments()
3068 for (unsigned ParamIdx = 0, NumParams = ParamTypes.size(); in DeduceTemplateArguments()
3070 QualType OrigParamType = ParamTypes[ParamIdx]; in DeduceTemplateArguments()
[all …]
DTreeTransform.h555 const QualType *ParamTypes,
703 QualType *ParamTypes,
3969 const QualType *ParamTypes, in TransformFunctionTypeParams() argument
4077 QualType OldType = ParamTypes[i]; in TransformFunctionTypeParams()
4183 SmallVector<QualType, 4> ParamTypes; in TransformFunctionProtoType() local
4194 ParamTypes, &ParamDecls)) in TransformFunctionProtoType()
4220 ParamTypes, &ParamDecls)) in TransformFunctionProtoType()
4229 T->getNumArgs() != ParamTypes.size() || in TransformFunctionProtoType()
4230 !std::equal(T->arg_type_begin(), T->arg_type_end(), ParamTypes.begin())) { in TransformFunctionProtoType()
4232 ParamTypes.data(), in TransformFunctionProtoType()
[all …]
DSemaType.cpp1492 QualType *ParamTypes, in BuildFunctionType() argument
1515 QualType ParamType = Context.getAdjustedParameterType(ParamTypes[Idx]); in BuildFunctionType()
1526 ParamTypes[Idx] = ParamType; in BuildFunctionType()
1539 return Context.getFunctionType(T, ParamTypes, NumParamTypes, EPI); in BuildFunctionType()
DSemaTemplateInstantiate.cpp1636 SmallVectorImpl<QualType> &ParamTypes, in SubstParmTypes() argument
1645 ParamTypes, OutParams); in SubstParmTypes()
DSemaTemplateInstantiateDecl.cpp1382 SmallVector<QualType, 4> ParamTypes; in VisitCXXMethodDecl() local
1384 D->getNumParams(), TemplateArgs, ParamTypes, in VisitCXXMethodDecl()
DSemaExprCXX.cpp4044 Self.PerformImplicitConversion(LHS.get(), Best->BuiltinTypes.ParamTypes[0], in FindConditionalOverload()
4051 Self.PerformImplicitConversion(RHS.get(), Best->BuiltinTypes.ParamTypes[1], in FindConditionalOverload()
DSemaDecl.cpp2218 SmallVector<QualType, 16> ParamTypes(OldProto->arg_type_begin(), in MergeFunctionDecl() local
2221 ParamTypes.data(), ParamTypes.size(), in MergeFunctionDecl()
/external/clang/include/clang/Sema/
DOverload.h615 QualType ParamTypes[3]; member
DSema.h868 QualType *ParamTypes, unsigned NumParamTypes,
5328 SmallVectorImpl<QualType> &ParamTypes,
5850 SmallVectorImpl<QualType> &ParamTypes,
/external/llvm/include/llvm/
DIntrinsics.td163 // * ParamTypes is a list containing the parameter types expected for the
175 list<LLVMType> ParamTypes = param_types;
/external/llvm/lib/AsmParser/
DLLParser.cpp3239 std::vector<Type*> ParamTypes; in ParseInvoke() local
3241 ParamTypes.push_back(ArgList[i].V->getType()); in ParseInvoke()
3246 Ty = FunctionType::get(RetType, ParamTypes, false); in ParseInvoke()
3635 std::vector<Type*> ParamTypes; in ParseCall() local
3637 ParamTypes.push_back(ArgList[i].V->getType()); in ParseCall()
3642 Ty = FunctionType::get(RetType, ParamTypes, false); in ParseCall()
/external/llvm/include/llvm-c/
DCore.h740 LLVMTypeRef *ParamTypes, unsigned ParamCount,
/external/llvm/lib/VMCore/
DCore.cpp293 LLVMTypeRef *ParamTypes, unsigned ParamCount, in LLVMFunctionType() argument
295 ArrayRef<Type*> Tys(unwrap(ParamTypes), ParamCount); in LLVMFunctionType()
/external/clang/lib/Serialization/
DASTReader.cpp3886 SmallVector<QualType, 16> ParamTypes; in readTypeRecord() local
3888 ParamTypes.push_back(readType(*Loc.F, Record, Idx)); in readTypeRecord()
3911 return Context.getFunctionType(ResultType, ParamTypes.data(), NumParams, in readTypeRecord()