| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | StmtCXX.h | 253 SourceLocation KeywordLoc; variable 263 MSDependentExistsStmt(SourceLocation KeywordLoc, bool IsIfExists, in MSDependentExistsStmt() argument 268 KeywordLoc(KeywordLoc), IsIfExists(IsIfExists), in MSDependentExistsStmt() 274 SourceLocation getKeywordLoc() const { return KeywordLoc; } in getKeywordLoc() 296 SourceLocation getBeginLoc() const LLVM_READONLY { return KeywordLoc; } in getBeginLoc()
|
| H A D | ExprCXX.h | 4699 SourceLocation KeywordLoc; variable 4712 KeywordLoc(KeywordLoc), OpaqueValue(OpaqueValue) { in CoroutineSuspendExpr() 4721 CoroutineSuspendExpr(StmtClass SC, SourceLocation KeywordLoc, QualType Ty, in CoroutineSuspendExpr() argument 4723 : Expr(SC, Ty, VK_PRValue, OK_Ordinary), KeywordLoc(KeywordLoc) { in CoroutineSuspendExpr() 4766 SourceLocation getKeywordLoc() const { return KeywordLoc; } in getKeywordLoc() 4768 SourceLocation getBeginLoc() const LLVM_READONLY { return KeywordLoc; } in getBeginLoc() 4824 SourceLocation KeywordLoc; variable 4828 DependentCoawaitExpr(SourceLocation KeywordLoc, QualType Ty, Expr *Op, in DependentCoawaitExpr() argument 4831 KeywordLoc(KeywordLoc) { in DependentCoawaitExpr() 4850 SourceLocation getKeywordLoc() const { return KeywordLoc; } in getKeywordLoc() [all …]
|
| H A D | Stmt.h | 284 SourceLocation KeywordLoc; in alignas() local 1578 SourceLocation getKeywordLoc() const { return SwitchCaseBits.KeywordLoc; } in getKeywordLoc() 1579 void setKeywordLoc(SourceLocation L) { SwitchCaseBits.KeywordLoc = L; } in setKeywordLoc()
|
| /llvm-project-15.0.7/clang/lib/Parse/ |
| H A D | ParseDecl.cpp | 1154 SourceLocation KeywordLoc = ConsumeToken(); in ParseAvailabilityAttribute() local 1161 StrictLoc = KeywordLoc; in ParseAvailabilityAttribute() 1170 UnavailableLoc = KeywordLoc; in ParseAvailabilityAttribute() 1177 if (Changes[Deprecated].KeywordLoc.isValid()) { in ParseAvailabilityAttribute() 1183 Changes[Deprecated].KeywordLoc = KeywordLoc; in ParseAvailabilityAttribute() 1231 UnavailableLoc = KeywordLoc; in ParseAvailabilityAttribute() 1255 if (!Changes[Index].KeywordLoc.isInvalid()) { in ParseAvailabilityAttribute() 1258 << SourceRange(Changes[Index].KeywordLoc, in ParseAvailabilityAttribute() 1262 Changes[Index].KeywordLoc = KeywordLoc; in ParseAvailabilityAttribute() 1284 if (Changes[Index].KeywordLoc.isValid()) { in ParseAvailabilityAttribute() [all …]
|
| H A D | ParseInit.cpp | 565 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists) in ParseMicrosoftIfExistsBraceInitializer()
|
| H A D | ParseExprCXX.cpp | 2563 SourceLocation KeywordLoc = ConsumeToken(); in ParseUnqualifiedIdOperator() local 2644 Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations); in ParseUnqualifiedIdOperator() 2720 Result.setLiteralOperatorId(II, KeywordLoc, SuffixLoc); in ParseUnqualifiedIdOperator() 2753 Result.setConversionFunctionId(KeywordLoc, Ty.get(), in ParseUnqualifiedIdOperator()
|
| H A D | ParseDeclCXX.cpp | 3839 SourceLocation KeywordLoc = ConsumeToken(); in tryParseExceptionSpecification() local 3849 NoexceptRange = SourceRange(KeywordLoc, T.getCloseLocation()); in tryParseExceptionSpecification() 3856 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc); in tryParseExceptionSpecification() 4717 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists) in ParseMicrosoftIfExistsClassDeclaration()
|
| H A D | Parser.cpp | 2237 Result.KeywordLoc = ConsumeToken(); in ParseMicrosoftIfExistsCondition() 2274 switch (Actions.CheckMicrosoftIfExistsSymbol(getCurScope(), Result.KeywordLoc, in ParseMicrosoftIfExistsCondition()
|
| H A D | ParseStmt.cpp | 2680 StmtResult DepResult = Actions.ActOnMSDependentExistsStmt(Result.KeywordLoc, in ParseMicrosoftIfExistsStatement()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaTemplateInstantiate.cpp | 1082 QualType RebuildElaboratedType(SourceLocation KeywordLoc, 1338 TemplateInstantiator::RebuildElaboratedType(SourceLocation KeywordLoc, in RebuildElaboratedType() argument 1345 SourceLocation TagLocation = KeywordLoc; in RebuildElaboratedType() 1364 return inherited::RebuildElaboratedType(KeywordLoc, Keyword, QualifierLoc, T); in RebuildElaboratedType()
|
| H A D | SemaTemplate.cpp | 10633 SourceLocation KeywordLoc, in CheckTypenameType() argument 10639 QualType T = CheckTypenameType(Keyword, KeywordLoc, QualifierLoc, II, IILoc, in CheckTypenameType() 10648 TL.setElaboratedKeywordLoc(KeywordLoc); in CheckTypenameType() 10653 TL.setElaboratedKeywordLoc(KeywordLoc); in CheckTypenameType() 10664 SourceLocation KeywordLoc, in CheckTypenameType() argument 10737 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(), in CheckTypenameType() 10833 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(), in CheckTypenameType()
|
| H A D | SemaStmt.cpp | 4619 StmtResult Sema::BuildMSDependentExistsStmt(SourceLocation KeywordLoc, in BuildMSDependentExistsStmt() argument 4625 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists, in BuildMSDependentExistsStmt() 4631 StmtResult Sema::ActOnMSDependentExistsStmt(SourceLocation KeywordLoc, in ActOnMSDependentExistsStmt() argument 4636 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in ActOnMSDependentExistsStmt()
|
| H A D | TreeTransform.h | 1029 QualType RebuildElaboratedType(SourceLocation KeywordLoc, in RebuildElaboratedType() argument 1089 SourceLocation KeywordLoc, in RebuildDependentNameType() argument 1106 return SemaRef.CheckTypenameType(Keyword, KeywordLoc, QualifierLoc, in RebuildDependentNameType() 1169 SemaRef.Diag(KeywordLoc, diag::err_use_with_wrong_tag) << Id; in RebuildDependentNameType() 2440 StmtResult RebuildMSDependentExistsStmt(SourceLocation KeywordLoc, in RebuildMSDependentExistsStmt() argument 2445 return getSema().BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in RebuildMSDependentExistsStmt()
|
| H A D | SemaDeclCXX.cpp | 11089 static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc, in DiagnoseNamespaceInlineMismatch() argument 11104 << FixItHint::CreateInsertion(KeywordLoc, "inline "); in DiagnoseNamespaceInlineMismatch()
|
| H A D | SemaExprCXX.cpp | 8885 Sema::CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc, in CheckMicrosoftIfExistsSymbol() argument
|
| /llvm-project-15.0.7/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 477 E->KeywordLoc = readSourceLocation(); in VisitCoawaitExpr() 486 E->KeywordLoc = readSourceLocation(); in VisitCoyieldExpr() 494 E->KeywordLoc = readSourceLocation(); in VisitDependentCoawaitExpr() 1665 S->KeywordLoc = readSourceLocation(); in VisitMSDependentExistsStmt()
|
| /llvm-project-15.0.7/clang/include/clang/Sema/ |
| H A D | ParsedAttr.h | 162 SourceLocation KeywordLoc; member
|
| H A D | Sema.h | 5878 CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc, 5882 StmtResult BuildMSDependentExistsStmt(SourceLocation KeywordLoc, 5887 StmtResult ActOnMSDependentExistsStmt(SourceLocation KeywordLoc, 8231 SourceLocation KeywordLoc, 8239 SourceLocation KeywordLoc,
|
| /llvm-project-15.0.7/clang/include/clang/Parse/ |
| H A D | Parser.h | 2132 SourceLocation KeywordLoc; member
|