Home
last modified time | relevance | path

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

/freebsd/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.h5196 SourceLocation KeywordLoc; variable
5207 CoroutineSuspendExpr(StmtClass SC, SourceLocation KeywordLoc, Expr *Operand, in CoroutineSuspendExpr() argument
5212 KeywordLoc(KeywordLoc), OpaqueValue(OpaqueValue) { in CoroutineSuspendExpr()
5221 CoroutineSuspendExpr(StmtClass SC, SourceLocation KeywordLoc, QualType Ty, in CoroutineSuspendExpr() argument
5223 : Expr(SC, Ty, VK_PRValue, OK_Ordinary), KeywordLoc(KeywordLoc) { in CoroutineSuspendExpr()
5284 SourceLocation getKeywordLoc() const { return KeywordLoc; } in getKeywordLoc()
5286 SourceLocation getBeginLoc() const LLVM_READONLY { return KeywordLoc; } in getBeginLoc()
5342 SourceLocation KeywordLoc; variable
5346 DependentCoawaitExpr(SourceLocation KeywordLoc, QualType Ty, Expr *Op, in DependentCoawaitExpr() argument
5349 KeywordLoc(KeywordLoc) { in DependentCoawaitExpr()
[all …]
H A DStmt.h327 SourceLocation KeywordLoc;
1908 SourceLocation getKeywordLoc() const { return SwitchCaseBits.KeywordLoc; }
1909 void setKeywordLoc(SourceLocation L) { SwitchCaseBits.KeywordLoc = L; }
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DCOFFMasmParser.cpp276 SMLoc KeywordLoc = getTok().getLoc(); in parseDirectiveSegment() local
300 return Error(KeywordLoc, in parseDirectiveSegment()
330 return Error(KeywordLoc, in parseDirectiveSegment()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseDecl.cpp1289 SourceLocation KeywordLoc = ConsumeToken(); in ParseAvailabilityAttribute() local
1293 Diag(KeywordLoc, diag::err_availability_redundant) in ParseAvailabilityAttribute()
1296 StrictLoc = KeywordLoc; in ParseAvailabilityAttribute()
1302 Diag(KeywordLoc, diag::err_availability_redundant) in ParseAvailabilityAttribute()
1305 UnavailableLoc = KeywordLoc; in ParseAvailabilityAttribute()
1312 if (Changes[Deprecated].KeywordLoc.isValid()) { in ParseAvailabilityAttribute()
1313 Diag(KeywordLoc, diag::err_availability_redundant) in ParseAvailabilityAttribute()
1315 << SourceRange(Changes[Deprecated].KeywordLoc); in ParseAvailabilityAttribute()
1318 Changes[Deprecated].KeywordLoc = KeywordLoc; in ParseAvailabilityAttribute()
1326 Diag(KeywordLoc, diag::err_availability_redundant) in ParseAvailabilityAttribute()
[all …]
H A DParseInit.cpp538 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists) in ParseMicrosoftIfExistsBraceInitializer()
H A DParseExprCXX.cpp2377 SourceLocation KeywordLoc = ConsumeToken(); in ParseUnqualifiedIdOperator() local
2458 Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations); in ParseUnqualifiedIdOperator()
2534 Result.setLiteralOperatorId(II, KeywordLoc, SuffixLoc); in ParseUnqualifiedIdOperator()
2568 Result.setConversionFunctionId(KeywordLoc, Ty.get(), in ParseUnqualifiedIdOperator()
H A DParseDeclCXX.cpp4057 SourceLocation KeywordLoc = ConsumeToken(); in tryParseExceptionSpecification() local
4071 NoexceptRange = SourceRange(KeywordLoc, T.getCloseLocation()); in tryParseExceptionSpecification()
4078 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc); in tryParseExceptionSpecification()
5056 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists) in ParseMicrosoftIfExistsClassDeclaration()
H A DParser.cpp2244 Result.KeywordLoc = ConsumeToken(); in ParseMicrosoftIfExistsCondition()
2281 switch (Actions.CheckMicrosoftIfExistsSymbol(getCurScope(), Result.KeywordLoc, in ParseMicrosoftIfExistsCondition()
H A DParseStmt.cpp2609 StmtResult DepResult = Actions.ActOnMSDependentExistsStmt(Result.KeywordLoc, in ParseMicrosoftIfExistsStatement()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplate.cpp10990 SourceLocation KeywordLoc, in CheckTypenameType() argument
10996 QualType T = CheckTypenameType(Keyword, KeywordLoc, QualifierLoc, II, IILoc, in CheckTypenameType()
11005 TL.setElaboratedKeywordLoc(KeywordLoc); in CheckTypenameType()
11010 TL.setElaboratedKeywordLoc(KeywordLoc); in CheckTypenameType()
11021 SourceLocation KeywordLoc, in CheckTypenameType() argument
11025 assert((Keyword != ElaboratedTypeKeyword::None) == KeywordLoc.isValid()); in CheckTypenameType()
11096 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(), in CheckTypenameType()
11187 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(), in CheckTypenameType()
H A DSemaTemplateInstantiate.cpp1600 QualType RebuildElaboratedType(SourceLocation KeywordLoc,
2087 TemplateInstantiator::RebuildElaboratedType(SourceLocation KeywordLoc, in RebuildElaboratedType() argument
2094 SourceLocation TagLocation = KeywordLoc; in RebuildElaboratedType()
2114 return inherited::RebuildElaboratedType(KeywordLoc, Keyword, QualifierLoc, T); in RebuildElaboratedType()
H A DSemaStmt.cpp4507 StmtResult Sema::BuildMSDependentExistsStmt(SourceLocation KeywordLoc, in BuildMSDependentExistsStmt() argument
4513 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists, in BuildMSDependentExistsStmt()
4519 StmtResult Sema::ActOnMSDependentExistsStmt(SourceLocation KeywordLoc, in ActOnMSDependentExistsStmt() argument
4524 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in ActOnMSDependentExistsStmt()
H A DTreeTransform.h1121 QualType RebuildElaboratedType(SourceLocation KeywordLoc, in RebuildElaboratedType() argument
1159 SourceLocation KeywordLoc, in RebuildDependentNameType() argument
1177 return SemaRef.CheckTypenameType(Keyword, KeywordLoc, QualifierLoc, in RebuildDependentNameType()
1240 SemaRef.Diag(KeywordLoc, diag::err_use_with_wrong_tag) << Id; in RebuildDependentNameType()
2646 StmtResult RebuildMSDependentExistsStmt(SourceLocation KeywordLoc, in RebuildMSDependentExistsStmt() argument
2651 return getSema().BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in RebuildMSDependentExistsStmt()
H A DSemaExprCXX.cpp7801 SourceLocation KeywordLoc, in CheckMicrosoftIfExistsSymbol() argument
H A DSemaDeclCXX.cpp11740 static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc, in DiagnoseNamespaceInlineMismatch() argument
11755 << FixItHint::CreateInsertion(KeywordLoc, "inline "); in DiagnoseNamespaceInlineMismatch()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DParsedAttr.h49 SourceLocation KeywordLoc; member
H A DSema.h8764 SourceLocation KeywordLoc,
11129 StmtResult BuildMSDependentExistsStmt(SourceLocation KeywordLoc,
11134 StmtResult ActOnMSDependentExistsStmt(SourceLocation KeywordLoc,
12173 SourceLocation KeywordLoc,
12179 SourceLocation KeywordLoc,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp479 E->KeywordLoc = readSourceLocation(); in VisitCoawaitExpr()
488 E->KeywordLoc = readSourceLocation(); in VisitCoyieldExpr()
496 E->KeywordLoc = readSourceLocation(); in VisitDependentCoawaitExpr()
1726 S->KeywordLoc = readSourceLocation(); in VisitMSDependentExistsStmt()
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h999 SourceLocation KeywordLoc; member