Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/Interp/
H A 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()
H A DInterp.h58 CheckSubobjectKind CSK);
66 CheckSubobjectKind CSK);
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DOverload.h1075 OverloadCandidateSet(SourceLocation Loc, CandidateSetKind CSK,
1077 : Loc(Loc), Kind(CSK), RewriteInfo(RewriteInfo) {} in Loc()
1105 void clear(CandidateSetKind CSK);
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaOverload.cpp915 void OverloadCandidateSet::clear(CandidateSetKind CSK) { in clear() argument
921 Kind = CSK; in clear()
11523 OverloadCandidateSet::CandidateSetKind CSK; member
11527 OverloadCandidateSet::CandidateSetKind CSK) in CompareOverloadCandidatesForDisplay()
11528 : S(S), NumArgs(NArgs), CSK(CSK) {} in CompareOverloadCandidatesForDisplay()
11559 if (isBetterOverloadCandidate(S, *L, *R, SourceLocation(), CSK)) in operator ()()
11561 if (isBetterOverloadCandidate(S, *R, *L, SourceLocation(), CSK)) in operator ()()
11673 OverloadCandidateSet::CandidateSetKind CSK) { in CompleteNonViableCandidate() argument
11721 if (CSK == OverloadCandidateSet::CSK_Operator && in CompleteNonViableCandidate()
12889 LookupResult &R, OverloadCandidateSet::CandidateSetKind CSK, in DiagnoseTwoPhaseLookup() argument
[all …]
/llvm-project-15.0.7/clang/lib/AST/
H A DExprConstant.cpp380 bool checkSubobject(EvalInfo &Info, const Expr *E, CheckSubobjectKind CSK);
1396 CheckSubobjectKind CSK) { in checkSubobject() argument
1401 << CSK; in checkSubobject()
1633 CheckSubobjectKind CSK) { in checkNullPointer()
1634 return checkNullPointerDiagnosingWith([&Info, E, CSK] { in checkNullPointer()
1635 Info.CCEDiag(E, diag::note_constexpr_null_subobject) << CSK; in checkNullPointer()
1648 bool checkSubobject(EvalInfo &Info, const Expr *E, CheckSubobjectKind CSK) { in checkSubobject()
1649 return (CSK == CSK_ArrayToPointer || checkNullPointer(Info, E, CSK)) && in checkSubobject()
1650 Designator.checkSubobject(Info, E, CSK); in checkSubobject()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DDecl.h2313 void setConstexprKind(ConstexprSpecKind CSK) { in setConstexprKind() argument
2314 FunctionDeclBits.ConstexprKind = static_cast<uint64_t>(CSK); in setConstexprKind()