| /freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/ |
| H A D | ParseExpr.cpp | 2712 SourceLocation DefaultLoc; in ParseGenericSelectionExpression() local 2720 if (!DefaultLoc.isInvalid()) { in ParseGenericSelectionExpression() 2722 Diag(DefaultLoc, diag::note_previous_default_assoc); in ParseGenericSelectionExpression() 2726 DefaultLoc = ConsumeToken(); in ParseGenericSelectionExpression() 2759 return Actions.ActOnGenericSelectionExpr(KeyLoc, DefaultLoc, in ParseGenericSelectionExpression()
|
| H A D | ParseStmt.cpp | 795 SourceLocation DefaultLoc = ConsumeToken(); // eat the 'default'. in ParseDefaultStatement() local 830 return Actions.ActOnDefaultStmt(DefaultLoc, ColonLoc, in ParseDefaultStatement()
|
| H A D | ParseExprCXX.cpp | 762 Intro.DefaultLoc = ConsumeToken(); in ParseLambdaIntroducer() 766 Intro.DefaultLoc = ConsumeToken(); in ParseLambdaIntroducer()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaLambda.cpp | 936 buildLambdaScope(LSI, Method, Intro.Range, Intro.Default, Intro.DefaultLoc, in ActOnStartOfLambdaDefinition() 954 Diag(Intro.DefaultLoc, diag::err_capture_default_non_local); in ActOnStartOfLambdaDefinition() 961 = Intro.Default == LCD_None? Intro.Range.getBegin() : Intro.DefaultLoc; in ActOnStartOfLambdaDefinition()
|
| H A D | SemaOpenMP.cpp | 3957 SourceLocation DefaultLoc; member in __anon45dbc4932111::OpenMPIterationSpaceChecker 3990 : SemaRef(SemaRef), DefaultLoc(DefaultLoc), ConditionLoc(DefaultLoc) {} in OpenMPIterationSpaceChecker() 4477 Diff = SemaRef.BuildBinOp(S, DefaultLoc, BO_Sub, Upper, Lower); in buildNumIterations() 4494 S, DefaultLoc, BO_Sub, Diff.get(), in buildNumIterations() 4508 Diff = SemaRef.ActOnParenExpr(DefaultLoc, DefaultLoc, Diff.get()); in buildNumIterations() 4540 SemaRef.Diag(DefaultLoc, diag::warn_omp_loop_64_bit_var) in buildNumIterations() 4571 SemaRef.BuildBinOp(S, DefaultLoc, in buildPreCond() 4612 SemaRef, DefaultLoc, Type, LCDecl->getName(), in buildPrivateCounterVar() 4619 return buildDeclRefExpr(SemaRef, PrivateVar, Type, DefaultLoc); in buildPrivateCounterVar() 4657 Diff = SemaRef.BuildBinOp(S, DefaultLoc, BO_Sub, Upper, Lower); in buildOrderedLoopData() [all …]
|
| H A D | SemaDeclCXX.cpp | 5858 SourceLocation DefaultLoc) { in DefineImplicitSpecialMember() argument 5861 S.DefineImplicitDefaultConstructor(DefaultLoc, in DefineImplicitSpecialMember() 5865 S.DefineImplicitCopyConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD)); in DefineImplicitSpecialMember() 5868 S.DefineImplicitCopyAssignment(DefaultLoc, MD); in DefineImplicitSpecialMember() 5871 S.DefineImplicitDestructor(DefaultLoc, cast<CXXDestructorDecl>(MD)); in DefineImplicitSpecialMember() 5874 S.DefineImplicitMoveConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD)); in DefineImplicitSpecialMember() 5877 S.DefineImplicitMoveAssignment(DefaultLoc, MD); in DefineImplicitSpecialMember() 14645 void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) { in SetDeclDefaulted() argument 14658 Diag(DefaultLoc, diag::err_default_special_members); in SetDeclDefaulted() 14687 DefineImplicitSpecialMember(*this, MD, DefaultLoc); in SetDeclDefaulted() [all …]
|
| H A D | SemaStmt.cpp | 477 Sema::ActOnDefaultStmt(SourceLocation DefaultLoc, SourceLocation ColonLoc, in ActOnDefaultStmt() argument 482 Diag(DefaultLoc, diag::err_default_not_in_switch); in ActOnDefaultStmt() 486 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt); in ActOnDefaultStmt()
|
| H A D | TreeTransform.h | 1226 StmtResult RebuildDefaultStmt(SourceLocation DefaultLoc, in RebuildDefaultStmt() argument 1229 return getSema().ActOnDefaultStmt(DefaultLoc, ColonLoc, SubStmt, in RebuildDefaultStmt() 2460 SourceLocation DefaultLoc, in RebuildGenericSelectionExpr() argument 2465 return getSema().CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc, in RebuildGenericSelectionExpr()
|
| H A D | SemaExpr.cpp | 1325 SourceLocation DefaultLoc, in ActOnGenericSelectionExpr() argument 1341 ExprResult ER = CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc, in ActOnGenericSelectionExpr() 1351 SourceLocation DefaultLoc, in CreateGenericSelectionExpr() argument 1437 Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc, in CreateGenericSelectionExpr() 1490 Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc, in CreateGenericSelectionExpr()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | Expr.cpp | 3782 SourceLocation DefaultLoc, in GenericSelectionExpr() argument 3797 GenericLoc(GenericLoc), DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) { in GenericSelectionExpr() 3808 SourceLocation DefaultLoc, in GenericSelectionExpr() argument 3822 DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) { in GenericSelectionExpr()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | Expr.h | 5020 SourceLocation GenericLoc, DefaultLoc, RParenLoc; variable 5027 SourceLocation DefaultLoc, SourceLocation RParenLoc, 5036 SourceLocation DefaultLoc, SourceLocation RParenLoc, 5045 SourceLocation getDefaultLoc() const { return DefaultLoc; } in getDefaultLoc()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/ |
| H A D | DeclSpec.h | 2572 SourceLocation DefaultLoc; member
|
| H A D | Sema.h | 2025 void SetDeclDefaulted(Decl *dcl, SourceLocation DefaultLoc); 3750 StmtResult ActOnDefaultStmt(SourceLocation DefaultLoc, 4264 SourceLocation DefaultLoc, 4270 SourceLocation DefaultLoc,
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1039 E->DefaultLoc = ReadSourceLocation(); in VisitGenericSelectionExpr()
|