/external/clang/include/clang/AST/ |
D | StmtCXX.h | 235 SourceLocation KeywordLoc; variable 245 MSDependentExistsStmt(SourceLocation KeywordLoc, bool IsIfExists, in MSDependentExistsStmt() argument 250 KeywordLoc(KeywordLoc), IsIfExists(IsIfExists), in MSDependentExistsStmt() 256 SourceLocation getKeywordLoc() const { return KeywordLoc; } in getKeywordLoc() 279 return SourceRange(KeywordLoc, SubStmt->getLocEnd()); in getSourceRange()
|
/external/clang/lib/Parse/ |
D | ParseDecl.cpp | 596 SourceLocation KeywordLoc = ConsumeToken(); in ParseAvailabilityAttribute() local 600 Diag(KeywordLoc, diag::err_availability_redundant) in ParseAvailabilityAttribute() 603 UnavailableLoc = KeywordLoc; in ParseAvailabilityAttribute() 648 if (!Changes[Index].KeywordLoc.isInvalid()) { in ParseAvailabilityAttribute() 649 Diag(KeywordLoc, diag::err_availability_redundant) in ParseAvailabilityAttribute() 651 << SourceRange(Changes[Index].KeywordLoc, in ParseAvailabilityAttribute() 655 Changes[Index].KeywordLoc = KeywordLoc; in ParseAvailabilityAttribute() 659 Diag(KeywordLoc, diag::err_availability_unknown_change) in ParseAvailabilityAttribute() 681 if (Changes[Index].KeywordLoc.isValid()) { in ParseAvailabilityAttribute() 684 << SourceRange(Changes[Index].KeywordLoc, in ParseAvailabilityAttribute()
|
D | ParseDeclCXX.cpp | 2635 SourceLocation KeywordLoc = ConsumeToken(); in tryParseExceptionSpecification() local 2645 NoexceptExpr = Actions.ActOnBooleanCondition(getCurScope(), KeywordLoc, in tryParseExceptionSpecification() 2648 NoexceptRange = SourceRange(KeywordLoc, T.getCloseLocation()); in tryParseExceptionSpecification() 2652 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc); in tryParseExceptionSpecification() 3040 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists) in ParseMicrosoftIfExistsClassDeclaration()
|
D | ParseInit.cpp | 507 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists) in ParseMicrosoftIfExistsBraceInitializer()
|
D | ParseExprCXX.cpp | 1811 SourceLocation KeywordLoc = ConsumeToken(); in ParseUnqualifiedIdOperator() local 1892 Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations); in ParseUnqualifiedIdOperator() 1962 Result.setLiteralOperatorId(II, KeywordLoc, SuffixLoc); in ParseUnqualifiedIdOperator() 1993 Result.setConversionFunctionId(KeywordLoc, Ty.get(), in ParseUnqualifiedIdOperator()
|
D | Parser.cpp | 1550 Result.KeywordLoc = ConsumeToken(); in ParseMicrosoftIfExistsCondition() 1581 switch (Actions.CheckMicrosoftIfExistsSymbol(getCurScope(), Result.KeywordLoc, in ParseMicrosoftIfExistsCondition()
|
D | ParseStmt.cpp | 2186 StmtResult DepResult = Actions.ActOnMSDependentExistsStmt(Result.KeywordLoc, in ParseMicrosoftIfExistsStatement()
|
/external/clang/include/clang/Sema/ |
D | AttributeList.h | 34 SourceLocation KeywordLoc; member
|
D | Sema.h | 2898 CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc, 2902 StmtResult BuildMSDependentExistsStmt(SourceLocation KeywordLoc, 2907 StmtResult ActOnMSDependentExistsStmt(SourceLocation KeywordLoc, 4679 SourceLocation KeywordLoc,
|
/external/clang/lib/Sema/ |
D | SemaTemplateInstantiate.cpp | 803 QualType RebuildElaboratedType(SourceLocation KeywordLoc, 981 TemplateInstantiator::RebuildElaboratedType(SourceLocation KeywordLoc, in RebuildElaboratedType() argument 988 SourceLocation TagLocation = KeywordLoc; in RebuildElaboratedType() 1008 return TreeTransform<TemplateInstantiator>::RebuildElaboratedType(KeywordLoc, in RebuildElaboratedType()
|
D | SemaStmt.cpp | 2642 StmtResult Sema::BuildMSDependentExistsStmt(SourceLocation KeywordLoc, in BuildMSDependentExistsStmt() argument 2648 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists, in BuildMSDependentExistsStmt() 2654 StmtResult Sema::ActOnMSDependentExistsStmt(SourceLocation KeywordLoc, in ActOnMSDependentExistsStmt() argument 2659 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in ActOnMSDependentExistsStmt()
|
D | SemaTemplate.cpp | 6893 SourceLocation KeywordLoc, in CheckTypenameType() argument 6932 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(), in CheckTypenameType() 6976 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(), in CheckTypenameType()
|
D | TreeTransform.h | 783 QualType RebuildElaboratedType(SourceLocation KeywordLoc, in RebuildElaboratedType() argument 840 SourceLocation KeywordLoc, in RebuildDependentNameType() argument 856 return SemaRef.CheckTypenameType(Keyword, KeywordLoc, QualifierLoc, in RebuildDependentNameType() 921 SemaRef.Diag(KeywordLoc, diag::err_use_with_wrong_tag) << Id; in RebuildDependentNameType() 1345 StmtResult RebuildMSDependentExistsStmt(SourceLocation KeywordLoc, in RebuildMSDependentExistsStmt() argument 1350 return getSema().BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in RebuildMSDependentExistsStmt()
|
D | SemaDeclAttr.cpp | 1648 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering) in handleAvailabilityAttr() 1656 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering) in handleAvailabilityAttr() 1664 S.Diag(Deprecated.KeywordLoc, diag::warn_availability_version_ordering) in handleAvailabilityAttr()
|
D | SemaExprCXX.cpp | 5344 Sema::CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc, in CheckMicrosoftIfExistsSymbol() argument 5354 DiagnoseUnexpandedParameterPacks(KeywordLoc, in CheckMicrosoftIfExistsSymbol()
|
/external/clang/include/clang/Parse/ |
D | Parser.h | 1577 SourceLocation KeywordLoc; member
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1068 S->KeywordLoc = ReadSourceLocation(Record, Idx); in VisitMSDependentExistsStmt()
|