/external/clang/include/clang/AST/ |
D | StmtCXX.h | 236 SourceLocation KeywordLoc; variable 246 MSDependentExistsStmt(SourceLocation KeywordLoc, bool IsIfExists, in MSDependentExistsStmt() argument 251 KeywordLoc(KeywordLoc), IsIfExists(IsIfExists), in MSDependentExistsStmt() 257 SourceLocation getKeywordLoc() const { return KeywordLoc; } in getKeywordLoc() 279 SourceLocation getLocStart() const LLVM_READONLY { return KeywordLoc; } in getLocStart()
|
D | Stmt.h | 641 SourceLocation KeywordLoc; variable 645 : Stmt(SC), NextSwitchCase(nullptr), KeywordLoc(KWLoc), ColonLoc(ColonLoc) { in SwitchCase() 658 SourceLocation getKeywordLoc() const { return KeywordLoc; } in getKeywordLoc() 659 void setKeywordLoc(SourceLocation L) { KeywordLoc = L; } in setKeywordLoc() 668 SourceLocation getLocStart() const LLVM_READONLY { return KeywordLoc; } in getLocStart() 695 SourceLocation getCaseLoc() const { return KeywordLoc; } in getCaseLoc() 696 void setCaseLoc(SourceLocation L) { KeywordLoc = L; } in setCaseLoc() 718 SourceLocation getLocStart() const LLVM_READONLY { return KeywordLoc; } in getLocStart() 752 SourceLocation getDefaultLoc() const { return KeywordLoc; } in getDefaultLoc() 753 void setDefaultLoc(SourceLocation L) { KeywordLoc = L; } in setDefaultLoc() [all …]
|
D | ExprCXX.h | 4086 SourceLocation KeywordLoc; variable 4093 CoroutineSuspendExpr(StmtClass SC, SourceLocation KeywordLoc, Expr *Common, in CoroutineSuspendExpr() argument 4099 KeywordLoc(KeywordLoc) { in CoroutineSuspendExpr() 4105 CoroutineSuspendExpr(StmtClass SC, SourceLocation KeywordLoc, QualType Ty, in CoroutineSuspendExpr() argument 4109 KeywordLoc(KeywordLoc) { in CoroutineSuspendExpr() 4124 SourceLocation getKeywordLoc() const { return KeywordLoc; } in getKeywordLoc() 4140 return KeywordLoc; in getLocStart()
|
/external/clang/lib/Parse/ |
D | ParseDecl.cpp | 903 SourceLocation KeywordLoc = ConsumeToken(); in ParseAvailabilityAttribute() local 907 Diag(KeywordLoc, diag::err_availability_redundant) in ParseAvailabilityAttribute() 910 UnavailableLoc = KeywordLoc; in ParseAvailabilityAttribute() 950 UnavailableLoc = KeywordLoc; in ParseAvailabilityAttribute() 974 if (!Changes[Index].KeywordLoc.isInvalid()) { in ParseAvailabilityAttribute() 975 Diag(KeywordLoc, diag::err_availability_redundant) in ParseAvailabilityAttribute() 977 << SourceRange(Changes[Index].KeywordLoc, in ParseAvailabilityAttribute() 981 Changes[Index].KeywordLoc = KeywordLoc; in ParseAvailabilityAttribute() 985 Diag(KeywordLoc, diag::err_availability_unknown_change) in ParseAvailabilityAttribute() 1003 if (Changes[Index].KeywordLoc.isValid()) { in ParseAvailabilityAttribute() [all …]
|
D | ParseInit.cpp | 504 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists) in ParseMicrosoftIfExistsBraceInitializer()
|
D | ParseDeclCXX.cpp | 3390 SourceLocation KeywordLoc = ConsumeToken(); in tryParseExceptionSpecification() local 3401 NoexceptExpr = Actions.ActOnBooleanCondition(getCurScope(), KeywordLoc, in tryParseExceptionSpecification() 3403 NoexceptRange = SourceRange(KeywordLoc, T.getCloseLocation()); in tryParseExceptionSpecification() 3410 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc); in tryParseExceptionSpecification() 3901 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists) in ParseMicrosoftIfExistsClassDeclaration()
|
D | ParseExprCXX.cpp | 2159 SourceLocation KeywordLoc = ConsumeToken(); in ParseUnqualifiedIdOperator() local 2240 Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations); in ParseUnqualifiedIdOperator() 2315 Result.setLiteralOperatorId(II, KeywordLoc, SuffixLoc); in ParseUnqualifiedIdOperator() 2347 Result.setConversionFunctionId(KeywordLoc, Ty.get(), in ParseUnqualifiedIdOperator()
|
D | Parser.cpp | 1886 Result.KeywordLoc = ConsumeToken(); in ParseMicrosoftIfExistsCondition() 1918 switch (Actions.CheckMicrosoftIfExistsSymbol(getCurScope(), Result.KeywordLoc, in ParseMicrosoftIfExistsCondition()
|
D | ParseStmt.cpp | 2154 StmtResult DepResult = Actions.ActOnMSDependentExistsStmt(Result.KeywordLoc, in ParseMicrosoftIfExistsStatement()
|
/external/clang/lib/Sema/ |
D | SemaTemplateInstantiate.cpp | 757 QualType RebuildElaboratedType(SourceLocation KeywordLoc, 968 TemplateInstantiator::RebuildElaboratedType(SourceLocation KeywordLoc, in RebuildElaboratedType() argument 975 SourceLocation TagLocation = KeywordLoc; in RebuildElaboratedType() 994 return TreeTransform<TemplateInstantiator>::RebuildElaboratedType(KeywordLoc, in RebuildElaboratedType()
|
D | SemaStmt.cpp | 3737 StmtResult Sema::BuildMSDependentExistsStmt(SourceLocation KeywordLoc, in BuildMSDependentExistsStmt() argument 3743 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists, in BuildMSDependentExistsStmt() 3749 StmtResult Sema::ActOnMSDependentExistsStmt(SourceLocation KeywordLoc, in ActOnMSDependentExistsStmt() argument 3754 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in ActOnMSDependentExistsStmt()
|
D | SemaTemplate.cpp | 8144 SourceLocation KeywordLoc, in CheckTypenameType() argument 8193 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(), in CheckTypenameType() 8238 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(), in CheckTypenameType()
|
D | TreeTransform.h | 881 QualType RebuildElaboratedType(SourceLocation KeywordLoc, in RebuildElaboratedType() argument 939 SourceLocation KeywordLoc, in RebuildDependentNameType() argument 955 return SemaRef.CheckTypenameType(Keyword, KeywordLoc, QualifierLoc, in RebuildDependentNameType() 1019 SemaRef.Diag(KeywordLoc, diag::err_use_with_wrong_tag) << Id; in RebuildDependentNameType() 1855 StmtResult RebuildMSDependentExistsStmt(SourceLocation KeywordLoc, in RebuildMSDependentExistsStmt() argument 1860 return getSema().BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in RebuildMSDependentExistsStmt()
|
D | SemaExprCXX.cpp | 6838 Sema::CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc, in CheckMicrosoftIfExistsSymbol() argument 6848 DiagnoseUnexpandedParameterPacks(KeywordLoc, in CheckMicrosoftIfExistsSymbol()
|
D | SemaDeclCXX.cpp | 7127 static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc, in DiagnoseNamespaceInlineMismatch() argument 7157 << FixItHint::CreateInsertion(KeywordLoc, "inline "); in DiagnoseNamespaceInlineMismatch()
|
/external/clang/include/clang/Sema/ |
D | AttributeList.h | 37 SourceLocation KeywordLoc; member
|
D | Sema.h | 4044 CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc, 4048 StmtResult BuildMSDependentExistsStmt(SourceLocation KeywordLoc, 4053 StmtResult ActOnMSDependentExistsStmt(SourceLocation KeywordLoc, 5912 SourceLocation KeywordLoc,
|
/external/clang/include/clang/Parse/ |
D | Parser.h | 1697 SourceLocation KeywordLoc; member
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1215 S->KeywordLoc = ReadSourceLocation(Record, Idx); in VisitMSDependentExistsStmt()
|