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.h5081 SourceLocation KeywordLoc; variable
5092 CoroutineSuspendExpr(StmtClass SC, SourceLocation KeywordLoc, Expr *Operand, in CoroutineSuspendExpr() argument
5097 KeywordLoc(KeywordLoc), OpaqueValue(OpaqueValue) { in CoroutineSuspendExpr()
5106 CoroutineSuspendExpr(StmtClass SC, SourceLocation KeywordLoc, QualType Ty, in CoroutineSuspendExpr() argument
5108 : Expr(SC, Ty, VK_PRValue, OK_Ordinary), KeywordLoc(KeywordLoc) { in CoroutineSuspendExpr()
5169 SourceLocation getKeywordLoc() const { return KeywordLoc; } in getKeywordLoc()
5171 SourceLocation getBeginLoc() const LLVM_READONLY { return KeywordLoc; } in getBeginLoc()
5227 SourceLocation KeywordLoc; variable
5231 DependentCoawaitExpr(SourceLocation KeywordLoc, QualType Ty, Expr *Op, in DependentCoawaitExpr() argument
5234 KeywordLoc(KeywordLoc) { in DependentCoawaitExpr()
[all …]
H A DStmt.h325 SourceLocation KeywordLoc;
1783 SourceLocation getKeywordLoc() const { return SwitchCaseBits.KeywordLoc; }
1784 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.cpp1368 SourceLocation KeywordLoc = ConsumeToken(); in ParseAvailabilityAttribute() local
1372 Diag(KeywordLoc, diag::err_availability_redundant) in ParseAvailabilityAttribute()
1375 StrictLoc = KeywordLoc; in ParseAvailabilityAttribute()
1381 Diag(KeywordLoc, diag::err_availability_redundant) in ParseAvailabilityAttribute()
1384 UnavailableLoc = KeywordLoc; in ParseAvailabilityAttribute()
1391 if (Changes[Deprecated].KeywordLoc.isValid()) { in ParseAvailabilityAttribute()
1392 Diag(KeywordLoc, diag::err_availability_redundant) in ParseAvailabilityAttribute()
1394 << SourceRange(Changes[Deprecated].KeywordLoc); in ParseAvailabilityAttribute()
1397 Changes[Deprecated].KeywordLoc = KeywordLoc; in ParseAvailabilityAttribute()
1405 Diag(KeywordLoc, diag::err_availability_redundant) in ParseAvailabilityAttribute()
[all …]
H A DParseInit.cpp603 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists) in ParseMicrosoftIfExistsBraceInitializer()
H A DParseExprCXX.cpp2734 SourceLocation KeywordLoc = ConsumeToken(); in ParseUnqualifiedIdOperator() local
2815 Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations); in ParseUnqualifiedIdOperator()
2891 Result.setLiteralOperatorId(II, KeywordLoc, SuffixLoc); in ParseUnqualifiedIdOperator()
2925 Result.setConversionFunctionId(KeywordLoc, Ty.get(), in ParseUnqualifiedIdOperator()
H A DParseDeclCXX.cpp4177 SourceLocation KeywordLoc = ConsumeToken(); in tryParseExceptionSpecification() local
4191 NoexceptRange = SourceRange(KeywordLoc, T.getCloseLocation()); in tryParseExceptionSpecification()
4198 NoexceptRange = SourceRange(KeywordLoc, KeywordLoc); in tryParseExceptionSpecification()
5183 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists) in ParseMicrosoftIfExistsClassDeclaration()
H A DParser.cpp2353 Result.KeywordLoc = ConsumeToken(); in ParseMicrosoftIfExistsCondition()
2390 switch (Actions.CheckMicrosoftIfExistsSymbol(getCurScope(), Result.KeywordLoc, in ParseMicrosoftIfExistsCondition()
H A DParseStmt.cpp2783 StmtResult DepResult = Actions.ActOnMSDependentExistsStmt(Result.KeywordLoc, in ParseMicrosoftIfExistsStatement()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplate.cpp10428 SourceLocation KeywordLoc, in CheckTypenameType() argument
10434 QualType T = CheckTypenameType(Keyword, KeywordLoc, QualifierLoc, II, IILoc, in CheckTypenameType()
10443 TL.setElaboratedKeywordLoc(KeywordLoc); in CheckTypenameType()
10448 TL.setElaboratedKeywordLoc(KeywordLoc); in CheckTypenameType()
10459 SourceLocation KeywordLoc, in CheckTypenameType() argument
10532 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(), in CheckTypenameType()
10628 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(), in CheckTypenameType()
H A DSemaTemplateInstantiate.cpp1511 QualType RebuildElaboratedType(SourceLocation KeywordLoc,
1926 TemplateInstantiator::RebuildElaboratedType(SourceLocation KeywordLoc, in RebuildElaboratedType() argument
1933 SourceLocation TagLocation = KeywordLoc; in RebuildElaboratedType()
1953 return inherited::RebuildElaboratedType(KeywordLoc, Keyword, QualifierLoc, T); in RebuildElaboratedType()
H A DSemaStmt.cpp4375 StmtResult Sema::BuildMSDependentExistsStmt(SourceLocation KeywordLoc, in BuildMSDependentExistsStmt() argument
4381 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists, in BuildMSDependentExistsStmt()
4387 StmtResult Sema::ActOnMSDependentExistsStmt(SourceLocation KeywordLoc, in ActOnMSDependentExistsStmt() argument
4392 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in ActOnMSDependentExistsStmt()
H A DTreeTransform.h1116 QualType RebuildElaboratedType(SourceLocation KeywordLoc, in RebuildElaboratedType() argument
1171 SourceLocation KeywordLoc, in RebuildDependentNameType() argument
1189 return SemaRef.CheckTypenameType(Keyword, KeywordLoc, QualifierLoc, in RebuildDependentNameType()
1253 SemaRef.Diag(KeywordLoc, diag::err_use_with_wrong_tag) << Id; in RebuildDependentNameType()
2613 StmtResult RebuildMSDependentExistsStmt(SourceLocation KeywordLoc, in RebuildMSDependentExistsStmt() argument
2618 return getSema().BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in RebuildMSDependentExistsStmt()
H A DSemaDeclCXX.cpp11499 static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc, in DiagnoseNamespaceInlineMismatch() argument
11514 << FixItHint::CreateInsertion(KeywordLoc, "inline "); in DiagnoseNamespaceInlineMismatch()
H A DSemaExprCXX.cpp9193 Sema::CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc, in CheckMicrosoftIfExistsSymbol() argument
/freebsd/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()
1707 S->KeywordLoc = readSourceLocation(); in VisitMSDependentExistsStmt()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DParsedAttr.h50 SourceLocation KeywordLoc; member
H A DSema.h8489 SourceLocation KeywordLoc,
10912 StmtResult BuildMSDependentExistsStmt(SourceLocation KeywordLoc,
10917 StmtResult ActOnMSDependentExistsStmt(SourceLocation KeywordLoc,
11939 SourceLocation KeywordLoc,
11945 SourceLocation KeywordLoc,
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h2227 SourceLocation KeywordLoc; member