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

/freebsd-9.3-release/contrib/llvm/tools/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.h629 SourceLocation KeywordLoc; member in class:clang::SwitchCase
633 : Stmt(SC), NextSwitchCase(0), KeywordLoc(KWLoc), ColonLoc(ColonLoc) {}
645 SourceLocation getKeywordLoc() const { return KeywordLoc; }
646 void setKeywordLoc(SourceLocation L) { KeywordLoc = L; }
655 SourceLocation getLocStart() const LLVM_READONLY { return KeywordLoc; }
682 SourceLocation getCaseLoc() const { return KeywordLoc; }
683 void setCaseLoc(SourceLocation L) { KeywordLoc = L; }
705 SourceLocation getLocStart() const LLVM_READONLY { return KeywordLoc; }
739 SourceLocation getDefaultLoc() const { return KeywordLoc; }
740 void setDefaultLoc(SourceLocation L) { KeywordLoc
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseInit.cpp506 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists)
H A DParseDecl.cpp850 SourceLocation KeywordLoc = ConsumeToken(); local
854 Diag(KeywordLoc, diag::err_availability_redundant)
857 UnavailableLoc = KeywordLoc;
903 if (!Changes[Index].KeywordLoc.isInvalid()) {
904 Diag(KeywordLoc, diag::err_availability_redundant)
906 << SourceRange(Changes[Index].KeywordLoc,
910 Changes[Index].KeywordLoc = KeywordLoc;
914 Diag(KeywordLoc, diag::err_availability_unknown_change)
936 if (Changes[Index].KeywordLoc
[all...]
H A DParseExprCXX.cpp2029 SourceLocation KeywordLoc = ConsumeToken(); local
2110 Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations);
2185 Result.setLiteralOperatorId(II, KeywordLoc, SuffixLoc);
2216 Result.setConversionFunctionId(KeywordLoc, Ty.get(),
H A DParseDeclCXX.cpp2953 SourceLocation KeywordLoc = ConsumeToken(); local
2963 NoexceptExpr = Actions.ActOnBooleanCondition(getCurScope(), KeywordLoc,
2966 NoexceptRange = SourceRange(KeywordLoc, T.getCloseLocation());
2970 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc);
3418 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists)
H A DParser.cpp1853 Result.KeywordLoc = ConsumeToken();
1884 switch (Actions.CheckMicrosoftIfExistsSymbol(getCurScope(), Result.KeywordLoc,
H A DParseStmt.cpp2694 StmtResult DepResult = Actions.ActOnMSDependentExistsStmt(Result.KeywordLoc,
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp851 QualType RebuildElaboratedType(SourceLocation KeywordLoc,
1086 TemplateInstantiator::RebuildElaboratedType(SourceLocation KeywordLoc, argument
1093 SourceLocation TagLocation = KeywordLoc;
1112 return TreeTransform<TemplateInstantiator>::RebuildElaboratedType(KeywordLoc,
H A DSemaStmt.cpp3165 StmtResult Sema::BuildMSDependentExistsStmt(SourceLocation KeywordLoc, argument
3171 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists,
3177 StmtResult Sema::ActOnMSDependentExistsStmt(SourceLocation KeywordLoc, argument
3182 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists,
H A DSemaTemplate.cpp7731 SourceLocation KeywordLoc,
7780 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
7824 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
7730 CheckTypenameType(ElaboratedTypeKeyword Keyword, SourceLocation KeywordLoc, NestedNameSpecifierLoc QualifierLoc, const IdentifierInfo &II, SourceLocation IILoc) argument
H A DTreeTransform.h826 QualType RebuildElaboratedType(SourceLocation KeywordLoc, argument
883 SourceLocation KeywordLoc,
899 return SemaRef.CheckTypenameType(Keyword, KeywordLoc, QualifierLoc,
964 SemaRef.Diag(KeywordLoc, diag::err_use_with_wrong_tag) << Id;
1464 StmtResult RebuildMSDependentExistsStmt(SourceLocation KeywordLoc, argument
1469 return getSema().BuildMSDependentExistsStmt(KeywordLoc, IsIfExists,
882 RebuildDependentNameType(ElaboratedTypeKeyword Keyword, SourceLocation KeywordLoc, NestedNameSpecifierLoc QualifierLoc, const IdentifierInfo *Id, SourceLocation IdLoc) argument
H A DSemaExprCXX.cpp6070 Sema::CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc, argument
6080 DiagnoseUnexpandedParameterPacks(KeywordLoc,
H A DSemaDeclCXX.cpp6447 static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc, argument
6478 << FixItHint::CreateInsertion(KeywordLoc, "inline ");
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DAttributeList.h36 SourceLocation KeywordLoc; member in struct:clang::AvailabilityChange
H A DSema.h3574 CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc,
3578 StmtResult BuildMSDependentExistsStmt(SourceLocation KeywordLoc,
3583 StmtResult ActOnMSDependentExistsStmt(SourceLocation KeywordLoc,
5436 SourceLocation KeywordLoc,
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Parse/
H A DParser.h1544 SourceLocation KeywordLoc; member in struct:clang::Parser::IfExistsCondition
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp1175 S->KeywordLoc = ReadSourceLocation(Record, Idx);

Completed in 440 milliseconds