Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DStmtCXX.h253 SourceLocation KeywordLoc; variable
263 MSDependentExistsStmt(SourceLocation KeywordLoc, bool IsIfExists, in MSDependentExistsStmt() argument
268 KeywordLoc(KeywordLoc), IsIfExists(IsIfExists), in MSDependentExistsStmt()
274 SourceLocation getKeywordLoc() const { return KeywordLoc; } in getKeywordLoc()
296 SourceLocation getBeginLoc() const LLVM_READONLY { return KeywordLoc; } in getBeginLoc()
H A DExprCXX.h4916 SourceLocation KeywordLoc; variable
4924 CoroutineSuspendExpr(StmtClass SC, SourceLocation KeywordLoc, Expr *Operand, in CoroutineSuspendExpr() argument
4929 KeywordLoc(KeywordLoc), OpaqueValue(OpaqueValue) { in CoroutineSuspendExpr()
4938 CoroutineSuspendExpr(StmtClass SC, SourceLocation KeywordLoc, QualType Ty, in CoroutineSuspendExpr() argument
4940 : Expr(SC, Ty, VK_PRValue, OK_Ordinary), KeywordLoc(KeywordLoc) { in CoroutineSuspendExpr()
4983 SourceLocation getKeywordLoc() const { return KeywordLoc; } in getKeywordLoc()
4985 SourceLocation getBeginLoc() const LLVM_READONLY { return KeywordLoc; } in getBeginLoc()
5041 SourceLocation KeywordLoc; variable
5045 DependentCoawaitExpr(SourceLocation KeywordLoc, QualType Ty, Expr *Op, in DependentCoawaitExpr() argument
5048 KeywordLoc(KeywordLoc) { in DependentCoawaitExpr()
[all …]
H A DStmt.h286 SourceLocation KeywordLoc; variable
1590 SourceLocation getKeywordLoc() const { return SwitchCaseBits.KeywordLoc; } in getKeywordLoc()
1591 void setKeywordLoc(SourceLocation L) { SwitchCaseBits.KeywordLoc = L; } in setKeywordLoc()
/openbsd-src/gnu/llvm/llvm/lib/MC/MCParser/
H A DCOFFMasmParser.cpp282 SMLoc KeywordLoc = getTok().getLoc(); in ParseDirectiveSegment() local
306 return Error(KeywordLoc, in ParseDirectiveSegment()
336 return Error(KeywordLoc, in ParseDirectiveSegment()
/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParseDecl.cpp1163 SourceLocation KeywordLoc = ConsumeToken(); in ParseAvailabilityAttribute() local
1167 Diag(KeywordLoc, diag::err_availability_redundant) in ParseAvailabilityAttribute()
1170 StrictLoc = KeywordLoc; in ParseAvailabilityAttribute()
1176 Diag(KeywordLoc, diag::err_availability_redundant) in ParseAvailabilityAttribute()
1179 UnavailableLoc = KeywordLoc; in ParseAvailabilityAttribute()
1186 if (Changes[Deprecated].KeywordLoc.isValid()) { in ParseAvailabilityAttribute()
1187 Diag(KeywordLoc, diag::err_availability_redundant) in ParseAvailabilityAttribute()
1189 << SourceRange(Changes[Deprecated].KeywordLoc); in ParseAvailabilityAttribute()
1192 Changes[Deprecated].KeywordLoc = KeywordLoc; in ParseAvailabilityAttribute()
1240 UnavailableLoc = KeywordLoc; in ParseAvailabilityAttribute()
[all …]
H A DParseInit.cpp565 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists) in ParseMicrosoftIfExistsBraceInitializer()
H A DParseExprCXX.cpp2615 SourceLocation KeywordLoc = ConsumeToken(); in ParseUnqualifiedIdOperator() local
2696 Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations); in ParseUnqualifiedIdOperator()
2772 Result.setLiteralOperatorId(II, KeywordLoc, SuffixLoc); in ParseUnqualifiedIdOperator()
2806 Result.setConversionFunctionId(KeywordLoc, Ty.get(), in ParseUnqualifiedIdOperator()
H A DParseDeclCXX.cpp3931 SourceLocation KeywordLoc = ConsumeToken(); in tryParseExceptionSpecification() local
3941 NoexceptRange = SourceRange(KeywordLoc, T.getCloseLocation()); in tryParseExceptionSpecification()
3948 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc); in tryParseExceptionSpecification()
4807 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists) in ParseMicrosoftIfExistsClassDeclaration()
H A DParser.cpp2280 Result.KeywordLoc = ConsumeToken(); in ParseMicrosoftIfExistsCondition()
2317 switch (Actions.CheckMicrosoftIfExistsSymbol(getCurScope(), Result.KeywordLoc, in ParseMicrosoftIfExistsCondition()
H A DParseStmt.cpp2704 StmtResult DepResult = Actions.ActOnMSDependentExistsStmt(Result.KeywordLoc, in ParseMicrosoftIfExistsStatement()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaTemplate.cpp10891 SourceLocation KeywordLoc, in CheckTypenameType() argument
10897 QualType T = CheckTypenameType(Keyword, KeywordLoc, QualifierLoc, II, IILoc, in CheckTypenameType()
10906 TL.setElaboratedKeywordLoc(KeywordLoc); in CheckTypenameType()
10911 TL.setElaboratedKeywordLoc(KeywordLoc); in CheckTypenameType()
10922 SourceLocation KeywordLoc, in CheckTypenameType() argument
10995 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(), in CheckTypenameType()
11091 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(), in CheckTypenameType()
H A DSemaTemplateInstantiate.cpp1261 QualType RebuildElaboratedType(SourceLocation KeywordLoc,
1575 TemplateInstantiator::RebuildElaboratedType(SourceLocation KeywordLoc, in RebuildElaboratedType() argument
1582 SourceLocation TagLocation = KeywordLoc; in RebuildElaboratedType()
1601 return inherited::RebuildElaboratedType(KeywordLoc, Keyword, QualifierLoc, T); in RebuildElaboratedType()
H A DSemaStmt.cpp4611 StmtResult Sema::BuildMSDependentExistsStmt(SourceLocation KeywordLoc, in BuildMSDependentExistsStmt() argument
4617 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists, in BuildMSDependentExistsStmt()
4623 StmtResult Sema::ActOnMSDependentExistsStmt(SourceLocation KeywordLoc, in ActOnMSDependentExistsStmt() argument
4628 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in ActOnMSDependentExistsStmt()
H A DTreeTransform.h1074 QualType RebuildElaboratedType(SourceLocation KeywordLoc, in RebuildElaboratedType() argument
1129 SourceLocation KeywordLoc, in RebuildDependentNameType() argument
1146 return SemaRef.CheckTypenameType(Keyword, KeywordLoc, QualifierLoc, in RebuildDependentNameType()
1209 SemaRef.Diag(KeywordLoc, diag::err_use_with_wrong_tag) << Id; in RebuildDependentNameType()
2529 StmtResult RebuildMSDependentExistsStmt(SourceLocation KeywordLoc, in RebuildMSDependentExistsStmt() argument
2534 return getSema().BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in RebuildMSDependentExistsStmt()
H A DSemaExprCXX.cpp8909 Sema::CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc, in CheckMicrosoftIfExistsSymbol() argument
H A DSemaDeclCXX.cpp11183 static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc, in DiagnoseNamespaceInlineMismatch() argument
11198 << FixItHint::CreateInsertion(KeywordLoc, "inline "); in DiagnoseNamespaceInlineMismatch()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReaderStmt.cpp478 E->KeywordLoc = readSourceLocation(); in VisitCoawaitExpr()
487 E->KeywordLoc = readSourceLocation(); in VisitCoyieldExpr()
495 E->KeywordLoc = readSourceLocation(); in VisitDependentCoawaitExpr()
1671 S->KeywordLoc = readSourceLocation(); in VisitMSDependentExistsStmt()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DParsedAttr.h162 SourceLocation KeywordLoc; member
H A DSema.h6021 CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc,
6025 StmtResult BuildMSDependentExistsStmt(SourceLocation KeywordLoc,
6030 StmtResult ActOnMSDependentExistsStmt(SourceLocation KeywordLoc,
8491 SourceLocation KeywordLoc,
8499 SourceLocation KeywordLoc,
/openbsd-src/gnu/llvm/clang/include/clang/Parse/
H A DParser.h2144 SourceLocation KeywordLoc; member