Home
last modified time | relevance | path

Searched refs:KeywordLoc (Results 1 – 16 of 16) sorted by relevance

/external/clang/include/clang/AST/
DStmtCXX.h235 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/
DParseDecl.cpp707 SourceLocation KeywordLoc = ConsumeToken(); in ParseAvailabilityAttribute() local
711 Diag(KeywordLoc, diag::err_availability_redundant) in ParseAvailabilityAttribute()
714 UnavailableLoc = KeywordLoc; in ParseAvailabilityAttribute()
759 if (!Changes[Index].KeywordLoc.isInvalid()) { in ParseAvailabilityAttribute()
760 Diag(KeywordLoc, diag::err_availability_redundant) in ParseAvailabilityAttribute()
762 << SourceRange(Changes[Index].KeywordLoc, in ParseAvailabilityAttribute()
766 Changes[Index].KeywordLoc = KeywordLoc; in ParseAvailabilityAttribute()
770 Diag(KeywordLoc, diag::err_availability_unknown_change) in ParseAvailabilityAttribute()
792 if (Changes[Index].KeywordLoc.isValid()) { in ParseAvailabilityAttribute()
795 << SourceRange(Changes[Index].KeywordLoc, in ParseAvailabilityAttribute()
DParseDeclCXX.cpp2637 SourceLocation KeywordLoc = ConsumeToken(); in tryParseExceptionSpecification() local
2647 NoexceptExpr = Actions.ActOnBooleanCondition(getCurScope(), KeywordLoc, in tryParseExceptionSpecification()
2650 NoexceptRange = SourceRange(KeywordLoc, T.getCloseLocation()); in tryParseExceptionSpecification()
2654 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc); in tryParseExceptionSpecification()
3042 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists) in ParseMicrosoftIfExistsClassDeclaration()
DParseInit.cpp506 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists) in ParseMicrosoftIfExistsBraceInitializer()
DParseExprCXX.cpp1787 SourceLocation KeywordLoc = ConsumeToken(); in ParseUnqualifiedIdOperator() local
1868 Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations); in ParseUnqualifiedIdOperator()
1938 Result.setLiteralOperatorId(II, KeywordLoc, SuffixLoc); in ParseUnqualifiedIdOperator()
1969 Result.setConversionFunctionId(KeywordLoc, Ty.get(), in ParseUnqualifiedIdOperator()
DParser.cpp1753 Result.KeywordLoc = ConsumeToken(); in ParseMicrosoftIfExistsCondition()
1784 switch (Actions.CheckMicrosoftIfExistsSymbol(getCurScope(), Result.KeywordLoc, in ParseMicrosoftIfExistsCondition()
DParseStmt.cpp2155 StmtResult DepResult = Actions.ActOnMSDependentExistsStmt(Result.KeywordLoc, in ParseMicrosoftIfExistsStatement()
/external/clang/lib/Sema/
DSemaTemplateInstantiate.cpp791 QualType RebuildElaboratedType(SourceLocation KeywordLoc,
982 TemplateInstantiator::RebuildElaboratedType(SourceLocation KeywordLoc, in RebuildElaboratedType() argument
989 SourceLocation TagLocation = KeywordLoc; in RebuildElaboratedType()
1008 return TreeTransform<TemplateInstantiator>::RebuildElaboratedType(KeywordLoc, in RebuildElaboratedType()
DSemaStmt.cpp2776 StmtResult Sema::BuildMSDependentExistsStmt(SourceLocation KeywordLoc, in BuildMSDependentExistsStmt() argument
2782 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists, in BuildMSDependentExistsStmt()
2788 StmtResult Sema::ActOnMSDependentExistsStmt(SourceLocation KeywordLoc, in ActOnMSDependentExistsStmt() argument
2793 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in ActOnMSDependentExistsStmt()
DSemaTemplate.cpp7065 SourceLocation KeywordLoc, in CheckTypenameType() argument
7114 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(), in CheckTypenameType()
7158 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(), in CheckTypenameType()
DTreeTransform.h783 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()
1340 StmtResult RebuildMSDependentExistsStmt(SourceLocation KeywordLoc, in RebuildMSDependentExistsStmt() argument
1345 return getSema().BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in RebuildMSDependentExistsStmt()
DSemaExprCXX.cpp5555 Sema::CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc, in CheckMicrosoftIfExistsSymbol() argument
5565 DiagnoseUnexpandedParameterPacks(KeywordLoc, in CheckMicrosoftIfExistsSymbol()
/external/clang/include/clang/Sema/
DAttributeList.h35 SourceLocation KeywordLoc; member
DSema.h3144 CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc,
3148 StmtResult BuildMSDependentExistsStmt(SourceLocation KeywordLoc,
3153 StmtResult ActOnMSDependentExistsStmt(SourceLocation KeywordLoc,
4926 SourceLocation KeywordLoc,
/external/clang/include/clang/Parse/
DParser.h1479 SourceLocation KeywordLoc; member
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1078 S->KeywordLoc = ReadSourceLocation(Record, Idx); in VisitMSDependentExistsStmt()