Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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.h4682 SourceLocation KeywordLoc; variable
4695 KeywordLoc(KeywordLoc), OpaqueValue(OpaqueValue) { in CoroutineSuspendExpr()
4703 CoroutineSuspendExpr(StmtClass SC, SourceLocation KeywordLoc, QualType Ty, in CoroutineSuspendExpr() argument
4705 : Expr(SC, Ty, VK_PRValue, OK_Ordinary), KeywordLoc(KeywordLoc) { in CoroutineSuspendExpr()
4722 SourceLocation getKeywordLoc() const { return KeywordLoc; } in getKeywordLoc()
4743 SourceLocation getBeginLoc() const LLVM_READONLY { return KeywordLoc; } in getBeginLoc()
4803 SourceLocation KeywordLoc; variable
4807 DependentCoawaitExpr(SourceLocation KeywordLoc, QualType Ty, Expr *Op, in DependentCoawaitExpr() argument
4810 KeywordLoc(KeywordLoc) { in DependentCoawaitExpr()
4829 SourceLocation getKeywordLoc() const { return KeywordLoc; } in getKeywordLoc()
[all …]
H A DStmt.h281 SourceLocation KeywordLoc; in alignas() local
1545 SourceLocation getKeywordLoc() const { return SwitchCaseBits.KeywordLoc; } in getKeywordLoc()
1546 void setKeywordLoc(SourceLocation L) { SwitchCaseBits.KeywordLoc = L; } in setKeywordLoc()
/freebsd-13.1/contrib/llvm-project/clang/lib/Parse/
H A DParseDecl.cpp1091 SourceLocation KeywordLoc = ConsumeToken(); in ParseAvailabilityAttribute() local
1098 StrictLoc = KeywordLoc; in ParseAvailabilityAttribute()
1107 UnavailableLoc = KeywordLoc; in ParseAvailabilityAttribute()
1114 if (Changes[Deprecated].KeywordLoc.isValid()) { in ParseAvailabilityAttribute()
1120 Changes[Deprecated].KeywordLoc = KeywordLoc; in ParseAvailabilityAttribute()
1168 UnavailableLoc = KeywordLoc; in ParseAvailabilityAttribute()
1192 if (!Changes[Index].KeywordLoc.isInvalid()) { in ParseAvailabilityAttribute()
1195 << SourceRange(Changes[Index].KeywordLoc, in ParseAvailabilityAttribute()
1199 Changes[Index].KeywordLoc = KeywordLoc; in ParseAvailabilityAttribute()
1221 if (Changes[Index].KeywordLoc.isValid()) { in ParseAvailabilityAttribute()
[all …]
H A DParseInit.cpp555 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists) in ParseMicrosoftIfExistsBraceInitializer()
H A DParseDeclCXX.cpp3830 SourceLocation KeywordLoc = ConsumeToken(); in tryParseExceptionSpecification() local
3838 NoexceptExpr = Actions.ActOnNoexceptSpec(KeywordLoc, NoexceptExpr.get(), in tryParseExceptionSpecification()
3840 NoexceptRange = SourceRange(KeywordLoc, T.getCloseLocation()); in tryParseExceptionSpecification()
3847 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc); in tryParseExceptionSpecification()
4663 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists) in ParseMicrosoftIfExistsClassDeclaration()
H A DParseExprCXX.cpp2520 SourceLocation KeywordLoc = ConsumeToken(); in ParseUnqualifiedIdOperator() local
2601 Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations); in ParseUnqualifiedIdOperator()
2677 Result.setLiteralOperatorId(II, KeywordLoc, SuffixLoc); in ParseUnqualifiedIdOperator()
2709 Result.setConversionFunctionId(KeywordLoc, Ty.get(), in ParseUnqualifiedIdOperator()
H A DParser.cpp2185 Result.KeywordLoc = ConsumeToken(); in ParseMicrosoftIfExistsCondition()
2222 switch (Actions.CheckMicrosoftIfExistsSymbol(getCurScope(), Result.KeywordLoc, in ParseMicrosoftIfExistsCondition()
H A DParseStmt.cpp2529 StmtResult DepResult = Actions.ActOnMSDependentExistsStmt(Result.KeywordLoc, in ParseMicrosoftIfExistsStatement()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp1066 QualType RebuildElaboratedType(SourceLocation KeywordLoc,
1322 TemplateInstantiator::RebuildElaboratedType(SourceLocation KeywordLoc, in RebuildElaboratedType() argument
1329 SourceLocation TagLocation = KeywordLoc; in RebuildElaboratedType()
1348 return TreeTransform<TemplateInstantiator>::RebuildElaboratedType(KeywordLoc, in RebuildElaboratedType()
H A DSemaTemplate.cpp10531 SourceLocation KeywordLoc, in CheckTypenameType() argument
10537 QualType T = CheckTypenameType(Keyword, KeywordLoc, QualifierLoc, II, IILoc, in CheckTypenameType()
10546 TL.setElaboratedKeywordLoc(KeywordLoc); in CheckTypenameType()
10551 TL.setElaboratedKeywordLoc(KeywordLoc); in CheckTypenameType()
10562 SourceLocation KeywordLoc, in CheckTypenameType() argument
10635 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(), in CheckTypenameType()
10731 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(), in CheckTypenameType()
H A DSemaStmt.cpp4544 StmtResult Sema::BuildMSDependentExistsStmt(SourceLocation KeywordLoc, in BuildMSDependentExistsStmt() argument
4550 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists, in BuildMSDependentExistsStmt()
4556 StmtResult Sema::ActOnMSDependentExistsStmt(SourceLocation KeywordLoc, in ActOnMSDependentExistsStmt() argument
4561 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in ActOnMSDependentExistsStmt()
H A DTreeTransform.h1024 QualType RebuildElaboratedType(SourceLocation KeywordLoc, in RebuildElaboratedType() argument
1084 SourceLocation KeywordLoc, in RebuildDependentNameType() argument
1101 return SemaRef.CheckTypenameType(Keyword, KeywordLoc, QualifierLoc, in RebuildDependentNameType()
1164 SemaRef.Diag(KeywordLoc, diag::err_use_with_wrong_tag) << Id; in RebuildDependentNameType()
2385 StmtResult RebuildMSDependentExistsStmt(SourceLocation KeywordLoc, in RebuildMSDependentExistsStmt() argument
2390 return getSema().BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in RebuildMSDependentExistsStmt()
H A DSemaDeclCXX.cpp10894 static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc, in DiagnoseNamespaceInlineMismatch() argument
10904 << FixItHint::CreateInsertion(KeywordLoc, "inline "); in DiagnoseNamespaceInlineMismatch()
H A DSemaExprCXX.cpp8630 Sema::CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc, in CheckMicrosoftIfExistsSymbol() argument
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp473 E->KeywordLoc = readSourceLocation(); in VisitCoawaitExpr()
482 E->KeywordLoc = readSourceLocation(); in VisitCoyieldExpr()
490 E->KeywordLoc = readSourceLocation(); in VisitDependentCoawaitExpr()
1680 S->KeywordLoc = readSourceLocation(); in VisitMSDependentExistsStmt()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DParsedAttr.h137 SourceLocation KeywordLoc; member
H A DSema.h5596 CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc,
5600 StmtResult BuildMSDependentExistsStmt(SourceLocation KeywordLoc,
5605 StmtResult ActOnMSDependentExistsStmt(SourceLocation KeywordLoc,
7930 SourceLocation KeywordLoc,
7938 SourceLocation KeywordLoc,
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h2113 SourceLocation KeywordLoc; member