| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | StmtCXX.h | 254 SourceLocation KeywordLoc; variable 264 MSDependentExistsStmt(SourceLocation KeywordLoc, bool IsIfExists, in MSDependentExistsStmt() argument 269 KeywordLoc(KeywordLoc), IsIfExists(IsIfExists), in MSDependentExistsStmt() 275 SourceLocation getKeywordLoc() const { return KeywordLoc; } in getKeywordLoc() 297 SourceLocation getBeginLoc() const LLVM_READONLY { return KeywordLoc; } in getBeginLoc()
|
| H A D | ExprCXX.h | 4934 SourceLocation KeywordLoc; variable 4947 KeywordLoc(KeywordLoc), OpaqueValue(OpaqueValue) { in CoroutineSuspendExpr() 4956 CoroutineSuspendExpr(StmtClass SC, SourceLocation KeywordLoc, QualType Ty, in CoroutineSuspendExpr() argument 4958 : Expr(SC, Ty, VK_PRValue, OK_Ordinary), KeywordLoc(KeywordLoc) { in CoroutineSuspendExpr() 5001 SourceLocation getKeywordLoc() const { return KeywordLoc; } in getKeywordLoc() 5003 SourceLocation getBeginLoc() const LLVM_READONLY { return KeywordLoc; } in getBeginLoc() 5059 SourceLocation KeywordLoc; variable 5063 DependentCoawaitExpr(SourceLocation KeywordLoc, QualType Ty, Expr *Op, in DependentCoawaitExpr() argument 5066 KeywordLoc(KeywordLoc) { in DependentCoawaitExpr() 5085 SourceLocation getKeywordLoc() const { return KeywordLoc; } in getKeywordLoc() [all …]
|
| H A D | Stmt.h | 325 SourceLocation KeywordLoc; in alignas() local 1776 SourceLocation getKeywordLoc() const { return SwitchCaseBits.KeywordLoc; } in getKeywordLoc() 1777 void setKeywordLoc(SourceLocation L) { SwitchCaseBits.KeywordLoc = L; } in setKeywordLoc()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/MC/MCParser/ |
| H A D | COFFMasmParser.cpp | 282 SMLoc KeywordLoc = getTok().getLoc(); in ParseDirectiveSegment() local 306 return Error(KeywordLoc, in ParseDirectiveSegment() 336 return Error(KeywordLoc, in ParseDirectiveSegment()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseDecl.cpp | 1277 SourceLocation KeywordLoc = ConsumeToken(); in ParseAvailabilityAttribute() local 1284 StrictLoc = KeywordLoc; in ParseAvailabilityAttribute() 1293 UnavailableLoc = KeywordLoc; in ParseAvailabilityAttribute() 1300 if (Changes[Deprecated].KeywordLoc.isValid()) { in ParseAvailabilityAttribute() 1306 Changes[Deprecated].KeywordLoc = KeywordLoc; in ParseAvailabilityAttribute() 1342 UnavailableLoc = KeywordLoc; in ParseAvailabilityAttribute() 1366 if (!Changes[Index].KeywordLoc.isInvalid()) { in ParseAvailabilityAttribute() 1369 << SourceRange(Changes[Index].KeywordLoc, in ParseAvailabilityAttribute() 1373 Changes[Index].KeywordLoc = KeywordLoc; in ParseAvailabilityAttribute() 1395 if (Changes[Index].KeywordLoc.isValid()) { in ParseAvailabilityAttribute() [all …]
|
| H A D | ParseInit.cpp | 570 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists) in ParseMicrosoftIfExistsBraceInitializer()
|
| H A D | ParseDeclCXX.cpp | 3991 SourceLocation KeywordLoc = ConsumeToken(); in tryParseExceptionSpecification() local 4005 NoexceptRange = SourceRange(KeywordLoc, T.getCloseLocation()); in tryParseExceptionSpecification() 4012 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc); in tryParseExceptionSpecification() 4912 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists) in ParseMicrosoftIfExistsClassDeclaration()
|
| H A D | ParseExprCXX.cpp | 2632 SourceLocation KeywordLoc = ConsumeToken(); in ParseUnqualifiedIdOperator() local 2713 Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations); in ParseUnqualifiedIdOperator() 2789 Result.setLiteralOperatorId(II, KeywordLoc, SuffixLoc); in ParseUnqualifiedIdOperator() 2823 Result.setConversionFunctionId(KeywordLoc, Ty.get(), in ParseUnqualifiedIdOperator()
|
| H A D | Parser.cpp | 2329 Result.KeywordLoc = ConsumeToken(); in ParseMicrosoftIfExistsCondition() 2366 switch (Actions.CheckMicrosoftIfExistsSymbol(getCurScope(), Result.KeywordLoc, in ParseMicrosoftIfExistsCondition()
|
| H A D | ParseStmt.cpp | 2768 StmtResult DepResult = Actions.ActOnMSDependentExistsStmt(Result.KeywordLoc, in ParseMicrosoftIfExistsStatement()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaTemplateInstantiate.cpp | 1373 QualType RebuildElaboratedType(SourceLocation KeywordLoc, 1722 TemplateInstantiator::RebuildElaboratedType(SourceLocation KeywordLoc, in RebuildElaboratedType() argument 1729 SourceLocation TagLocation = KeywordLoc; in RebuildElaboratedType() 1749 return inherited::RebuildElaboratedType(KeywordLoc, Keyword, QualifierLoc, T); in RebuildElaboratedType()
|
| H A D | SemaTemplate.cpp | 11197 SourceLocation KeywordLoc, in CheckTypenameType() argument 11203 QualType T = CheckTypenameType(Keyword, KeywordLoc, QualifierLoc, II, IILoc, in CheckTypenameType() 11212 TL.setElaboratedKeywordLoc(KeywordLoc); in CheckTypenameType() 11217 TL.setElaboratedKeywordLoc(KeywordLoc); in CheckTypenameType() 11228 SourceLocation KeywordLoc, in CheckTypenameType() argument 11301 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(), in CheckTypenameType() 11397 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(), in CheckTypenameType()
|
| H A D | SemaStmt.cpp | 4673 StmtResult Sema::BuildMSDependentExistsStmt(SourceLocation KeywordLoc, in BuildMSDependentExistsStmt() argument 4679 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists, in BuildMSDependentExistsStmt() 4685 StmtResult Sema::ActOnMSDependentExistsStmt(SourceLocation KeywordLoc, in ActOnMSDependentExistsStmt() argument 4690 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in ActOnMSDependentExistsStmt()
|
| H A D | TreeTransform.h | 1095 QualType RebuildElaboratedType(SourceLocation KeywordLoc, in RebuildElaboratedType() argument 1150 SourceLocation KeywordLoc, in RebuildDependentNameType() argument 1168 return SemaRef.CheckTypenameType(Keyword, KeywordLoc, QualifierLoc, in RebuildDependentNameType() 1232 SemaRef.Diag(KeywordLoc, diag::err_use_with_wrong_tag) << Id; in RebuildDependentNameType() 2587 StmtResult RebuildMSDependentExistsStmt(SourceLocation KeywordLoc, in RebuildMSDependentExistsStmt() argument 2592 return getSema().BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in RebuildMSDependentExistsStmt()
|
| H A D | SemaExprCXX.cpp | 8971 Sema::CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc, in CheckMicrosoftIfExistsSymbol() argument
|
| H A D | SemaDeclCXX.cpp | 11586 static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc, in DiagnoseNamespaceInlineMismatch() argument 11601 << FixItHint::CreateInsertion(KeywordLoc, "inline "); in DiagnoseNamespaceInlineMismatch()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 483 E->KeywordLoc = readSourceLocation(); in VisitCoawaitExpr() 492 E->KeywordLoc = readSourceLocation(); in VisitCoyieldExpr() 500 E->KeywordLoc = readSourceLocation(); in VisitDependentCoawaitExpr() 1700 S->KeywordLoc = readSourceLocation(); in VisitMSDependentExistsStmt()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | ParsedAttr.h | 49 SourceLocation KeywordLoc; member
|
| H A D | Sema.h | 6174 CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc, 6178 StmtResult BuildMSDependentExistsStmt(SourceLocation KeywordLoc, 6183 StmtResult ActOnMSDependentExistsStmt(SourceLocation KeywordLoc, 8754 SourceLocation KeywordLoc, 8762 SourceLocation KeywordLoc,
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Parse/ |
| H A D | Parser.h | 2169 SourceLocation KeywordLoc; member
|