Home
last modified time | relevance | path

Searched refs:ADLCallKind (Results 1 – 9 of 9) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DExpr.h2844 enum class ADLCallKind : bool { NotADL, UsesADL }; enum
2845 static constexpr ADLCallKind NotADL = ADLCallKind::NotADL;
2846 static constexpr ADLCallKind UsesADL = ADLCallKind::UsesADL;
2854 unsigned MinNumArgs, ADLCallKind UsesADL);
2920 ADLCallKind UsesADL = NotADL);
2932 ADLCallKind UsesADL = NotADL);
2942 ADLCallKind getADLCallKind() const { in getADLCallKind()
2943 return static_cast<ADLCallKind>(CallExprBits.UsesADL); in getADLCallKind()
2945 void setADLCallKind(ADLCallKind V = UsesADL) {
DExprCXX.h96 ADLCallKind UsesADL);
105 ADLCallKind UsesADL = NotADL);
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/
DOverload.h842 CallExpr::ADLCallKind IsADLCandidate : 1;
DSema.h3630 using ADLCallKind = CallExpr::ADLCallKind; variable
3639 ADLCallKind IsADLCandidate = ADLCallKind::NotADL,
3682 ADLCallKind IsADLCandidate = ADLCallKind::NotADL,
5450 ADLCallKind UsesADL = ADLCallKind::NotADL);
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DExprCXX.cpp542 ADLCallKind UsesADL) in CXXOperatorCallExpr()
562 FPOptionsOverride FPFeatures, ADLCallKind UsesADL) { in Create()
DExpr.cpp1381 unsigned MinNumArgs, ADLCallKind UsesADL) in CallExpr()
1427 ADLCallKind UsesADL) { in Create()
1439 ADLCallKind UsesADL) { in CreateTemporary()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaOverload.cpp6266 ADLCallKind IsADLCandidate, ConversionSequenceList EarlyConversions, in AddOverloadCandidate()
7074 bool PartialOverloading, bool AllowExplicit, ADLCallKind IsADLCandidate, in AddTemplateOverloadCandidate()
7642 true, ADLCallKind::NotADL, OverloadCandidateParamOrder::Reversed); in AddNonMemberOperatorCandidates()
7650 false, false, true, false, ADLCallKind::NotADL, in AddNonMemberOperatorCandidates()
9356 /*AllowExplicitConversions=*/false, ADLCallKind::UsesADL); in AddArgumentDependentLookupCandidates()
9362 ADLCallKind::UsesADL, None, OverloadCandidateParamOrder::Reversed); in AddArgumentDependentLookupCandidates()
9369 /*AllowExplicit=*/true, ADLCallKind::UsesADL); in AddArgumentDependentLookupCandidates()
9375 /*AllowExplicit=*/true, ADLCallKind::UsesADL, in AddArgumentDependentLookupCandidates()
DSemaExpr.cpp6639 bool IsExecConfig, ADLCallKind UsesADL) { in BuildResolvedCallExpr()
6734 assert(UsesADL == ADLCallKind::NotADL && in BuildResolvedCallExpr()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
DASTReaderStmt.cpp1017 E->setADLCallKind(static_cast<CallExpr::ADLCallKind>(Record.readInt())); in VisitCallExpr()