/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | StmtCXX.h | 254 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 D | ExprCXX.h | 5081 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 D | Stmt.h | 325 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 D | COFFMasmParser.cpp | 276 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 D | ParseDecl.cpp | 1368 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 D | ParseInit.cpp | 603 Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists) in ParseMicrosoftIfExistsBraceInitializer()
|
H A D | ParseExprCXX.cpp | 2734 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 D | ParseDeclCXX.cpp | 4177 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 D | Parser.cpp | 2353 Result.KeywordLoc = ConsumeToken(); in ParseMicrosoftIfExistsCondition() 2390 switch (Actions.CheckMicrosoftIfExistsSymbol(getCurScope(), Result.KeywordLoc, in ParseMicrosoftIfExistsCondition()
|
H A D | ParseStmt.cpp | 2783 StmtResult DepResult = Actions.ActOnMSDependentExistsStmt(Result.KeywordLoc, in ParseMicrosoftIfExistsStatement()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaTemplate.cpp | 10428 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 D | SemaTemplateInstantiate.cpp | 1511 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 D | SemaStmt.cpp | 4375 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 D | TreeTransform.h | 1116 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 D | SemaDeclCXX.cpp | 11499 static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc, in DiagnoseNamespaceInlineMismatch() argument 11514 << FixItHint::CreateInsertion(KeywordLoc, "inline "); in DiagnoseNamespaceInlineMismatch()
|
H A D | SemaExprCXX.cpp | 9193 Sema::CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc, in CheckMicrosoftIfExistsSymbol() argument
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReaderStmt.cpp | 483 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 D | ParsedAttr.h | 50 SourceLocation KeywordLoc; member
|
H A D | Sema.h | 8489 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 D | Parser.h | 2227 SourceLocation KeywordLoc; member
|