Searched defs:KeywordLoc (Results 1 - 13 of 13) sorted by relevance

/external/clang/include/clang/AST/
H A DStmtCXX.h236 SourceLocation KeywordLoc; member in class:clang::MSDependentExistsStmt
246 MSDependentExistsStmt(SourceLocation KeywordLoc, bool IsIfExists, argument
251 KeywordLoc(KeywordLoc), IsIfExists(IsIfExists),
257 SourceLocation getKeywordLoc() const { return KeywordLoc; }
279 SourceLocation getLocStart() const LLVM_READONLY { return KeywordLoc; }
H A DStmt.h641 SourceLocation KeywordLoc; member in class:clang::SwitchCase
645 : Stmt(SC), NextSwitchCase(nullptr), KeywordLoc(KWLoc), ColonLoc(ColonLoc) {
658 SourceLocation getKeywordLoc() const { return KeywordLoc; }
659 void setKeywordLoc(SourceLocation L) { KeywordLoc = L; }
668 SourceLocation getLocStart() const LLVM_READONLY { return KeywordLoc; }
695 SourceLocation getCaseLoc() const { return KeywordLoc; }
696 void setCaseLoc(SourceLocation L) { KeywordLoc = L; }
718 SourceLocation getLocStart() const LLVM_READONLY { return KeywordLoc; }
752 SourceLocation getDefaultLoc() const { return KeywordLoc; }
753 void setDefaultLoc(SourceLocation L) { KeywordLoc
[all...]
/external/clang/include/clang/Sema/
H A DAttributeList.h37 SourceLocation KeywordLoc; member in struct:clang::AvailabilityChange
/external/clang/lib/Parse/
H A DParseExprCXX.cpp2159 SourceLocation KeywordLoc = ConsumeToken(); local
2240 Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations);
2315 Result.setLiteralOperatorId(II, KeywordLoc, SuffixLoc);
2347 Result.setConversionFunctionId(KeywordLoc, Ty.get(),
H A DParseDeclCXX.cpp3390 SourceLocation KeywordLoc = ConsumeToken(); local
3401 NoexceptExpr = Actions.ActOnBooleanCondition(getCurScope(), KeywordLoc,
3403 NoexceptRange = SourceRange(KeywordLoc, T.getCloseLocation());
3410 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc);
3901 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists)
H A DParseDecl.cpp903 SourceLocation KeywordLoc = ConsumeToken(); local
907 Diag(KeywordLoc, diag::err_availability_redundant)
910 UnavailableLoc = KeywordLoc;
950 UnavailableLoc = KeywordLoc;
974 if (!Changes[Index].KeywordLoc.isInvalid()) {
975 Diag(KeywordLoc, diag::err_availability_redundant)
977 << SourceRange(Changes[Index].KeywordLoc,
981 Changes[Index].KeywordLoc = KeywordLoc;
985 Diag(KeywordLoc, dia
[all...]
/external/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp757 QualType RebuildElaboratedType(SourceLocation KeywordLoc,
968 TemplateInstantiator::RebuildElaboratedType(SourceLocation KeywordLoc, argument
975 SourceLocation TagLocation = KeywordLoc;
994 return TreeTransform<TemplateInstantiator>::RebuildElaboratedType(KeywordLoc,
H A DSemaExprCXX.cpp6838 Sema::CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc, argument
6848 DiagnoseUnexpandedParameterPacks(KeywordLoc,
H A DSemaStmt.cpp3737 StmtResult Sema::BuildMSDependentExistsStmt(SourceLocation KeywordLoc, argument
3743 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists,
3749 StmtResult Sema::ActOnMSDependentExistsStmt(SourceLocation KeywordLoc, argument
3754 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists,
H A DSemaTemplate.cpp8144 SourceLocation KeywordLoc,
8193 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
8238 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
8143 CheckTypenameType(ElaboratedTypeKeyword Keyword, SourceLocation KeywordLoc, NestedNameSpecifierLoc QualifierLoc, const IdentifierInfo &II, SourceLocation IILoc) argument
H A DSemaDeclCXX.cpp7127 static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc, argument
7157 << FixItHint::CreateInsertion(KeywordLoc, "inline ");
H A DTreeTransform.h881 QualType RebuildElaboratedType(SourceLocation KeywordLoc, argument
939 SourceLocation KeywordLoc,
955 return SemaRef.CheckTypenameType(Keyword, KeywordLoc, QualifierLoc,
1019 SemaRef.Diag(KeywordLoc, diag::err_use_with_wrong_tag) << Id;
1855 StmtResult RebuildMSDependentExistsStmt(SourceLocation KeywordLoc, argument
1860 return getSema().BuildMSDependentExistsStmt(KeywordLoc, IsIfExists,
938 RebuildDependentNameType(ElaboratedTypeKeyword Keyword, SourceLocation KeywordLoc, NestedNameSpecifierLoc QualifierLoc, const IdentifierInfo *Id, SourceLocation IdLoc) argument
/external/clang/include/clang/Parse/
H A DParser.h1697 SourceLocation KeywordLoc; member in struct:clang::Parser::IfExistsCondition

Completed in 492 milliseconds