Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DStmtCXX.h254 SourceLocation KeywordLoc; variable
264 MSDependentExistsStmt(SourceLocation KeywordLoc, bool IsIfExists, in MSDependentExistsStmt() argument
269 KeywordLoc(KeywordLoc), IsIfExists(IsIfExists), in MSDependentExistsStmt()
275 SourceLocation getKeywordLoc() const { return KeywordLoc; } in getKeywordLoc()
297 SourceLocation getBeginLoc() const LLVM_READONLY { return KeywordLoc; } in getBeginLoc()
H A DExprCXX.h4934 SourceLocation KeywordLoc; variable
4947 KeywordLoc(KeywordLoc), OpaqueValue(OpaqueValue) { in CoroutineSuspendExpr()
4956 CoroutineSuspendExpr(StmtClass SC, SourceLocation KeywordLoc, QualType Ty, in CoroutineSuspendExpr() argument
4958 : Expr(SC, Ty, VK_PRValue, OK_Ordinary), KeywordLoc(KeywordLoc) { in CoroutineSuspendExpr()
5001 SourceLocation getKeywordLoc() const { return KeywordLoc; } in getKeywordLoc()
5003 SourceLocation getBeginLoc() const LLVM_READONLY { return KeywordLoc; } in getBeginLoc()
5059 SourceLocation KeywordLoc; variable
5063 DependentCoawaitExpr(SourceLocation KeywordLoc, QualType Ty, Expr *Op, in DependentCoawaitExpr() argument
5066 KeywordLoc(KeywordLoc) { in DependentCoawaitExpr()
5085 SourceLocation getKeywordLoc() const { return KeywordLoc; } in getKeywordLoc()
[all …]
H A DStmt.h325 SourceLocation KeywordLoc; in alignas() local
1776 SourceLocation getKeywordLoc() const { return SwitchCaseBits.KeywordLoc; } in getKeywordLoc()
1777 void setKeywordLoc(SourceLocation L) { SwitchCaseBits.KeywordLoc = L; } in setKeywordLoc()
/freebsd-14.2/contrib/llvm-project/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()
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseDecl.cpp1277 SourceLocation KeywordLoc = ConsumeToken(); in ParseAvailabilityAttribute() local
1284 StrictLoc = KeywordLoc; in ParseAvailabilityAttribute()
1293 UnavailableLoc = KeywordLoc; in ParseAvailabilityAttribute()
1300 if (Changes[Deprecated].KeywordLoc.isValid()) { in ParseAvailabilityAttribute()
1306 Changes[Deprecated].KeywordLoc = KeywordLoc; in ParseAvailabilityAttribute()
1342 UnavailableLoc = KeywordLoc; in ParseAvailabilityAttribute()
1366 if (!Changes[Index].KeywordLoc.isInvalid()) { in ParseAvailabilityAttribute()
1369 << SourceRange(Changes[Index].KeywordLoc, in ParseAvailabilityAttribute()
1373 Changes[Index].KeywordLoc = KeywordLoc; in ParseAvailabilityAttribute()
1395 if (Changes[Index].KeywordLoc.isValid()) { in ParseAvailabilityAttribute()
[all …]
H A DParseInit.cpp570 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists) in ParseMicrosoftIfExistsBraceInitializer()
H A DParseDeclCXX.cpp3991 SourceLocation KeywordLoc = ConsumeToken(); in tryParseExceptionSpecification() local
4005 NoexceptRange = SourceRange(KeywordLoc, T.getCloseLocation()); in tryParseExceptionSpecification()
4012 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc); in tryParseExceptionSpecification()
4912 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists) in ParseMicrosoftIfExistsClassDeclaration()
H A DParseExprCXX.cpp2632 SourceLocation KeywordLoc = ConsumeToken(); in ParseUnqualifiedIdOperator() local
2713 Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations); in ParseUnqualifiedIdOperator()
2789 Result.setLiteralOperatorId(II, KeywordLoc, SuffixLoc); in ParseUnqualifiedIdOperator()
2823 Result.setConversionFunctionId(KeywordLoc, Ty.get(), in ParseUnqualifiedIdOperator()
H A DParser.cpp2329 Result.KeywordLoc = ConsumeToken(); in ParseMicrosoftIfExistsCondition()
2366 switch (Actions.CheckMicrosoftIfExistsSymbol(getCurScope(), Result.KeywordLoc, in ParseMicrosoftIfExistsCondition()
H A DParseStmt.cpp2768 StmtResult DepResult = Actions.ActOnMSDependentExistsStmt(Result.KeywordLoc, in ParseMicrosoftIfExistsStatement()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp1373 QualType RebuildElaboratedType(SourceLocation KeywordLoc,
1722 TemplateInstantiator::RebuildElaboratedType(SourceLocation KeywordLoc, in RebuildElaboratedType() argument
1729 SourceLocation TagLocation = KeywordLoc; in RebuildElaboratedType()
1749 return inherited::RebuildElaboratedType(KeywordLoc, Keyword, QualifierLoc, T); in RebuildElaboratedType()
H A DSemaTemplate.cpp11197 SourceLocation KeywordLoc, in CheckTypenameType() argument
11203 QualType T = CheckTypenameType(Keyword, KeywordLoc, QualifierLoc, II, IILoc, in CheckTypenameType()
11212 TL.setElaboratedKeywordLoc(KeywordLoc); in CheckTypenameType()
11217 TL.setElaboratedKeywordLoc(KeywordLoc); in CheckTypenameType()
11228 SourceLocation KeywordLoc, in CheckTypenameType() argument
11301 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(), in CheckTypenameType()
11397 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(), in CheckTypenameType()
H A DSemaStmt.cpp4673 StmtResult Sema::BuildMSDependentExistsStmt(SourceLocation KeywordLoc, in BuildMSDependentExistsStmt() argument
4679 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists, in BuildMSDependentExistsStmt()
4685 StmtResult Sema::ActOnMSDependentExistsStmt(SourceLocation KeywordLoc, in ActOnMSDependentExistsStmt() argument
4690 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in ActOnMSDependentExistsStmt()
H A DTreeTransform.h1095 QualType RebuildElaboratedType(SourceLocation KeywordLoc, in RebuildElaboratedType() argument
1150 SourceLocation KeywordLoc, in RebuildDependentNameType() argument
1168 return SemaRef.CheckTypenameType(Keyword, KeywordLoc, QualifierLoc, in RebuildDependentNameType()
1232 SemaRef.Diag(KeywordLoc, diag::err_use_with_wrong_tag) << Id; in RebuildDependentNameType()
2587 StmtResult RebuildMSDependentExistsStmt(SourceLocation KeywordLoc, in RebuildMSDependentExistsStmt() argument
2592 return getSema().BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in RebuildMSDependentExistsStmt()
H A DSemaExprCXX.cpp8971 Sema::CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc, in CheckMicrosoftIfExistsSymbol() argument
H A DSemaDeclCXX.cpp11586 static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc, in DiagnoseNamespaceInlineMismatch() argument
11601 << FixItHint::CreateInsertion(KeywordLoc, "inline "); in DiagnoseNamespaceInlineMismatch()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp483 E->KeywordLoc = readSourceLocation(); in VisitCoawaitExpr()
492 E->KeywordLoc = readSourceLocation(); in VisitCoyieldExpr()
500 E->KeywordLoc = readSourceLocation(); in VisitDependentCoawaitExpr()
1700 S->KeywordLoc = readSourceLocation(); in VisitMSDependentExistsStmt()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DParsedAttr.h49 SourceLocation KeywordLoc; member
H A DSema.h6174 CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc,
6178 StmtResult BuildMSDependentExistsStmt(SourceLocation KeywordLoc,
6183 StmtResult ActOnMSDependentExistsStmt(SourceLocation KeywordLoc,
8754 SourceLocation KeywordLoc,
8762 SourceLocation KeywordLoc,
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h2169 SourceLocation KeywordLoc; member