Searched refs:KeywordLoc (Results 1 - 19 of 19) sorted by relevance

/external/clang/include/clang/AST/
H A DStmtCXX.h241 SourceLocation KeywordLoc; member in class:clang::MSDependentExistsStmt
251 MSDependentExistsStmt(SourceLocation KeywordLoc, bool IsIfExists, argument
256 KeywordLoc(KeywordLoc), IsIfExists(IsIfExists),
262 SourceLocation getKeywordLoc() const { return KeywordLoc; }
284 SourceLocation getLocStart() const LLVM_READONLY { return KeywordLoc; }
H A DStmt.h653 SourceLocation KeywordLoc; member in class:clang::SwitchCase
657 : Stmt(SC), NextSwitchCase(nullptr), KeywordLoc(KWLoc), ColonLoc(ColonLoc) {
670 SourceLocation getKeywordLoc() const { return KeywordLoc; }
671 void setKeywordLoc(SourceLocation L) { KeywordLoc = L; }
680 SourceLocation getLocStart() const LLVM_READONLY { return KeywordLoc; }
707 SourceLocation getCaseLoc() const { return KeywordLoc; }
708 void setCaseLoc(SourceLocation L) { KeywordLoc = L; }
730 SourceLocation getLocStart() const LLVM_READONLY { return KeywordLoc; }
764 SourceLocation getDefaultLoc() const { return KeywordLoc; }
765 void setDefaultLoc(SourceLocation L) { KeywordLoc
[all...]
H A DExprCXX.h4134 SourceLocation KeywordLoc;
4141 CoroutineSuspendExpr(StmtClass SC, SourceLocation KeywordLoc, Expr *Common,
4147 KeywordLoc(KeywordLoc) {
4153 CoroutineSuspendExpr(StmtClass SC, SourceLocation KeywordLoc, QualType Ty,
4157 KeywordLoc(KeywordLoc) {
4172 SourceLocation getKeywordLoc() const { return KeywordLoc; }
4188 return KeywordLoc;
/external/clang/lib/Parse/
H A DParseInit.cpp498 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists)
H A DParseDecl.cpp919 SourceLocation KeywordLoc = ConsumeToken(); local
923 Diag(KeywordLoc, diag::err_availability_redundant)
926 StrictLoc = KeywordLoc;
932 Diag(KeywordLoc, diag::err_availability_redundant)
935 UnavailableLoc = KeywordLoc;
981 UnavailableLoc = KeywordLoc;
1005 if (!Changes[Index].KeywordLoc.isInvalid()) {
1006 Diag(KeywordLoc, diag::err_availability_redundant)
1008 << SourceRange(Changes[Index].KeywordLoc,
1012 Changes[Index].KeywordLoc
[all...]
H A DParseExprCXX.cpp2238 SourceLocation KeywordLoc = ConsumeToken(); local
2319 Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations);
2394 Result.setLiteralOperatorId(II, KeywordLoc, SuffixLoc);
2426 Result.setConversionFunctionId(KeywordLoc, Ty.get(),
H A DParseDeclCXX.cpp3414 SourceLocation KeywordLoc = ConsumeToken(); local
3427 Actions.CheckBooleanCondition(KeywordLoc, NoexceptExpr.get());
3428 NoexceptRange = SourceRange(KeywordLoc, T.getCloseLocation());
3435 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc);
3958 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists)
H A DParser.cpp1908 Result.KeywordLoc = ConsumeToken();
1940 switch (Actions.CheckMicrosoftIfExistsSymbol(getCurScope(), Result.KeywordLoc,
H A DParseStmt.cpp2202 StmtResult DepResult = Actions.ActOnMSDependentExistsStmt(Result.KeywordLoc,
/external/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp759 QualType RebuildElaboratedType(SourceLocation KeywordLoc,
970 TemplateInstantiator::RebuildElaboratedType(SourceLocation KeywordLoc, argument
977 SourceLocation TagLocation = KeywordLoc;
996 return TreeTransform<TemplateInstantiator>::RebuildElaboratedType(KeywordLoc,
H A DSemaStmt.cpp3805 StmtResult Sema::BuildMSDependentExistsStmt(SourceLocation KeywordLoc, argument
3811 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists,
3817 StmtResult Sema::ActOnMSDependentExistsStmt(SourceLocation KeywordLoc, argument
3822 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists,
H A DSemaTemplate.cpp8288 SourceLocation KeywordLoc,
8337 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
8382 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
8287 CheckTypenameType(ElaboratedTypeKeyword Keyword, SourceLocation KeywordLoc, NestedNameSpecifierLoc QualifierLoc, const IdentifierInfo &II, SourceLocation IILoc) argument
H A DTreeTransform.h890 QualType RebuildElaboratedType(SourceLocation KeywordLoc, argument
948 SourceLocation KeywordLoc,
964 return SemaRef.CheckTypenameType(Keyword, KeywordLoc, QualifierLoc,
1028 SemaRef.Diag(KeywordLoc, diag::err_use_with_wrong_tag) << Id;
1928 StmtResult RebuildMSDependentExistsStmt(SourceLocation KeywordLoc, argument
1933 return getSema().BuildMSDependentExistsStmt(KeywordLoc, IsIfExists,
947 RebuildDependentNameType(ElaboratedTypeKeyword Keyword, SourceLocation KeywordLoc, NestedNameSpecifierLoc QualifierLoc, const IdentifierInfo *Id, SourceLocation IdLoc) argument
H A DSemaExprCXX.cpp7125 Sema::CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc, argument
7135 DiagnoseUnexpandedParameterPacks(KeywordLoc,
H A DSemaDeclCXX.cpp7291 static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc, argument
7321 << FixItHint::CreateInsertion(KeywordLoc, "inline ");
/external/clang/include/clang/Sema/
H A DAttributeList.h37 SourceLocation KeywordLoc; member in struct:clang::AvailabilityChange
H A DSema.h4137 CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc,
4141 StmtResult BuildMSDependentExistsStmt(SourceLocation KeywordLoc,
4146 StmtResult ActOnMSDependentExistsStmt(SourceLocation KeywordLoc,
6037 SourceLocation KeywordLoc,
/external/clang/include/clang/Parse/
H A DParser.h1730 SourceLocation KeywordLoc; member in struct:clang::Parser::IfExistsCondition
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp1223 S->KeywordLoc = ReadSourceLocation(Record, Idx);

Completed in 389 milliseconds