Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterp.cpp279 CheckSubobjectKind CSK) { in CheckNull() argument
283 S.FFDiag(Loc, diag::note_constexpr_null_subobject) << CSK; in CheckNull()
297 CheckSubobjectKind CSK) { in CheckRange() argument
301 S.FFDiag(Loc, diag::note_constexpr_past_end_subobject) << CSK; in CheckRange()
306 CheckSubobjectKind CSK) { in CheckSubobject() argument
311 S.FFDiag(Loc, diag::note_constexpr_past_end_subobject) << CSK; in CheckSubobject()
H A DInterp.h63 CheckSubobjectKind CSK);
71 CheckSubobjectKind CSK);
75 CheckSubobjectKind CSK);
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DOverload.h1095 OverloadCandidateSet(SourceLocation Loc, CandidateSetKind CSK,
1097 : Loc(Loc), Kind(CSK), RewriteInfo(RewriteInfo) {} in Loc()
1125 void clear(CandidateSetKind CSK);
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp1014 void OverloadCandidateSet::clear(CandidateSetKind CSK) { in clear() argument
1020 Kind = CSK; in clear()
12093 OverloadCandidateSet::CandidateSetKind CSK; member
12097 OverloadCandidateSet::CandidateSetKind CSK) in CompareOverloadCandidatesForDisplay()
12098 : S(S), NumArgs(NArgs), CSK(CSK) {} in CompareOverloadCandidatesForDisplay()
12276 OverloadCandidateSet::CandidateSetKind CSK) { in CompleteNonViableCandidate() argument
12324 if (CSK == OverloadCandidateSet::CSK_Operator && in CompleteNonViableCandidate()
13547 LookupResult &R, OverloadCandidateSet::CandidateSetKind CSK, in DiagnoseTwoPhaseLookup() argument
13562 OverloadCandidateSet Candidates(FnLoc, CSK); in DiagnoseTwoPhaseLookup()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp383 bool checkSubobject(EvalInfo &Info, const Expr *E, CheckSubobjectKind CSK);
1452 CheckSubobjectKind CSK) { in checkSubobject() argument
1457 << CSK; in checkSubobject()
1690 CheckSubobjectKind CSK) { in checkNullPointer()
1691 return checkNullPointerDiagnosingWith([&Info, E, CSK] { in checkNullPointer()
1692 Info.CCEDiag(E, diag::note_constexpr_null_subobject) << CSK; in checkNullPointer()
1705 bool checkSubobject(EvalInfo &Info, const Expr *E, CheckSubobjectKind CSK) { in checkSubobject()
1706 return (CSK == CSK_ArrayToPointer || checkNullPointer(Info, E, CSK)) && in checkSubobject()
1707 Designator.checkSubobject(Info, E, CSK); in checkSubobject()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h2410 void setConstexprKind(ConstexprSpecKind CSK) { in setConstexprKind() argument
2411 FunctionDeclBits.ConstexprKind = static_cast<uint64_t>(CSK); in setConstexprKind()