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

/external/clang/include/clang/AST/
H A DStmtCXX.h235 SourceLocation KeywordLoc; member in class:clang::MSDependentExistsStmt
245 MSDependentExistsStmt(SourceLocation KeywordLoc, bool IsIfExists, argument
250 KeywordLoc(KeywordLoc), IsIfExists(IsIfExists),
256 SourceLocation getKeywordLoc() const { return KeywordLoc; }
278 SourceLocation getLocStart() const LLVM_READONLY { return KeywordLoc; }
H A DStmt.h645 SourceLocation KeywordLoc; member in class:clang::SwitchCase
649 : Stmt(SC), NextSwitchCase(nullptr), KeywordLoc(KWLoc), ColonLoc(ColonLoc) {
662 SourceLocation getKeywordLoc() const { return KeywordLoc; }
663 void setKeywordLoc(SourceLocation L) { KeywordLoc = L; }
672 SourceLocation getLocStart() const LLVM_READONLY { return KeywordLoc; }
699 SourceLocation getCaseLoc() const { return KeywordLoc; }
700 void setCaseLoc(SourceLocation L) { KeywordLoc = L; }
722 SourceLocation getLocStart() const LLVM_READONLY { return KeywordLoc; }
756 SourceLocation getDefaultLoc() const { return KeywordLoc; }
757 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 DParseDeclCXX.cpp2973 SourceLocation KeywordLoc = ConsumeToken(); local
2983 NoexceptExpr = Actions.ActOnBooleanCondition(getCurScope(), KeywordLoc,
2986 NoexceptRange = SourceRange(KeywordLoc, T.getCloseLocation());
2990 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc);
3478 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists)
H A DParseExprCXX.cpp2085 SourceLocation KeywordLoc = ConsumeToken(); local
2166 Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations);
2241 Result.setLiteralOperatorId(II, KeywordLoc, SuffixLoc);
2273 Result.setConversionFunctionId(KeywordLoc, Ty.get(),
H A DParseDecl.cpp811 SourceLocation KeywordLoc = ConsumeToken(); local
815 Diag(KeywordLoc, diag::err_availability_redundant)
818 UnavailableLoc = KeywordLoc;
858 if (!Changes[Index].KeywordLoc.isInvalid()) {
859 Diag(KeywordLoc, diag::err_availability_redundant)
861 << SourceRange(Changes[Index].KeywordLoc,
865 Changes[Index].KeywordLoc = KeywordLoc;
869 Diag(KeywordLoc, diag::err_availability_unknown_change)
887 if (Changes[Index].KeywordLoc
[all...]
/external/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp759 QualType RebuildElaboratedType(SourceLocation KeywordLoc,
992 TemplateInstantiator::RebuildElaboratedType(SourceLocation KeywordLoc, argument
999 SourceLocation TagLocation = KeywordLoc;
1018 return TreeTransform<TemplateInstantiator>::RebuildElaboratedType(KeywordLoc,
H A DSemaExprCXX.cpp6064 Sema::CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc, argument
6074 DiagnoseUnexpandedParameterPacks(KeywordLoc,
H A DSemaStmt.cpp3291 StmtResult Sema::BuildMSDependentExistsStmt(SourceLocation KeywordLoc, argument
3297 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists,
3303 StmtResult Sema::ActOnMSDependentExistsStmt(SourceLocation KeywordLoc, argument
3308 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists,
H A DSemaTemplate.cpp7868 SourceLocation KeywordLoc,
7917 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
7961 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
7867 CheckTypenameType(ElaboratedTypeKeyword Keyword, SourceLocation KeywordLoc, NestedNameSpecifierLoc QualifierLoc, const IdentifierInfo &II, SourceLocation IILoc) argument
H A DSemaDeclCXX.cpp6657 static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc, argument
6687 << FixItHint::CreateInsertion(KeywordLoc, "inline ");
H A DTreeTransform.h833 QualType RebuildElaboratedType(SourceLocation KeywordLoc, argument
891 SourceLocation KeywordLoc,
907 return SemaRef.CheckTypenameType(Keyword, KeywordLoc, QualifierLoc,
971 SemaRef.Diag(KeywordLoc, diag::err_use_with_wrong_tag) << Id;
1627 StmtResult RebuildMSDependentExistsStmt(SourceLocation KeywordLoc, argument
1632 return getSema().BuildMSDependentExistsStmt(KeywordLoc, IsIfExists,
890 RebuildDependentNameType(ElaboratedTypeKeyword Keyword, SourceLocation KeywordLoc, NestedNameSpecifierLoc QualifierLoc, const IdentifierInfo *Id, SourceLocation IdLoc) argument
/external/clang/include/clang/Parse/
H A DParser.h1630 SourceLocation KeywordLoc; member in struct:clang::Parser::IfExistsCondition

Completed in 2352 milliseconds