Home
last modified time | relevance | path

Searched refs:CSK (Results 1 – 6 of 6) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/Interp/
DInterp.cpp232 CheckSubobjectKind CSK) { in CheckNull() argument
236 S.FFDiag(Loc, diag::note_constexpr_null_subobject) << CSK; in CheckNull()
250 CheckSubobjectKind CSK) { in CheckRange() argument
254 S.FFDiag(Loc, diag::note_constexpr_past_end_subobject) << CSK; in CheckRange()
DInterp.h57 CheckSubobjectKind CSK);
65 CheckSubobjectKind CSK);
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/
DOverload.h1052 OverloadCandidateSet(SourceLocation Loc, CandidateSetKind CSK,
1054 : Loc(Loc), Kind(CSK), RewriteInfo(RewriteInfo) {} in Loc()
1082 void clear(CandidateSetKind CSK);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaOverload.cpp916 void OverloadCandidateSet::clear(CandidateSetKind CSK) { in clear() argument
922 Kind = CSK; in clear()
11355 OverloadCandidateSet::CandidateSetKind CSK; member
11359 OverloadCandidateSet::CandidateSetKind CSK) in CompareOverloadCandidatesForDisplay()
11360 : S(S), NumArgs(NArgs), CSK(CSK) {} in CompareOverloadCandidatesForDisplay()
11391 if (isBetterOverloadCandidate(S, *L, *R, SourceLocation(), CSK)) in operator ()()
11393 if (isBetterOverloadCandidate(S, *R, *L, SourceLocation(), CSK)) in operator ()()
11505 OverloadCandidateSet::CandidateSetKind CSK) { in CompleteNonViableCandidate() argument
11553 if (CSK == OverloadCandidateSet::CSK_Operator && in CompleteNonViableCandidate()
12718 LookupResult &R, OverloadCandidateSet::CandidateSetKind CSK, in DiagnoseTwoPhaseLookup() argument
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DDecl.h2281 void setConstexprKind(ConstexprSpecKind CSK) { in setConstexprKind() argument
2282 FunctionDeclBits.ConstexprKind = static_cast<uint64_t>(CSK); in setConstexprKind()
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DExprConstant.cpp380 bool checkSubobject(EvalInfo &Info, const Expr *E, CheckSubobjectKind CSK);
1400 CheckSubobjectKind CSK) { in checkSubobject() argument
1405 << CSK; in checkSubobject()
1637 CheckSubobjectKind CSK) { in checkNullPointer()
1638 return checkNullPointerDiagnosingWith([&Info, E, CSK] { in checkNullPointer()
1639 Info.CCEDiag(E, diag::note_constexpr_null_subobject) << CSK; in checkNullPointer()
1652 bool checkSubobject(EvalInfo &Info, const Expr *E, CheckSubobjectKind CSK) { in checkSubobject()
1653 return (CSK == CSK_ArrayToPointer || checkNullPointer(Info, E, CSK)) && in checkSubobject()
1654 Designator.checkSubobject(Info, E, CSK); in checkSubobject()