| /NextBSD/contrib/llvm/tools/clang/lib/Sema/ |
| HD | SemaOpenMP.cpp | 2186 SourceLocation DefaultLoc; member in __anona5ec887d0a11::OpenMPIterationSpaceChecker 2217 OpenMPIterationSpaceChecker(Sema &SemaRef, SourceLocation DefaultLoc) in OpenMPIterationSpaceChecker() argument 2218 : SemaRef(SemaRef), DefaultLoc(DefaultLoc), ConditionLoc(DefaultLoc), in OpenMPIterationSpaceChecker() 2398 SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_init); in CheckInit() 2462 SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_cond) << Var; in CheckCond() 2551 SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_incr) << Var; in CheckInc() 2681 Diff = SemaRef.BuildBinOp(S, DefaultLoc, BO_Sub, Upper, Lower); in BuildNumIterations() 2698 S, DefaultLoc, BO_Sub, Diff.get(), in BuildNumIterations() 2712 Diff = SemaRef.BuildBinOp(S, DefaultLoc, BO_Add, Diff.get(), NewStep.get()); in BuildNumIterations() 2717 Diff = SemaRef.ActOnParenExpr(DefaultLoc, DefaultLoc, Diff.get()); in BuildNumIterations() [all …]
|
| HD | SemaLambda.cpp | 933 buildLambdaScope(LSI, Method, Intro.Range, Intro.Default, Intro.DefaultLoc, in ActOnStartOfLambdaDefinition() 951 Diag(Intro.DefaultLoc, diag::err_capture_default_non_local); in ActOnStartOfLambdaDefinition() 958 = Intro.Default == LCD_None? Intro.Range.getBegin() : Intro.DefaultLoc; in ActOnStartOfLambdaDefinition()
|
| HD | SemaDeclCXX.cpp | 12822 void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) { in SetDeclDefaulted() argument 12835 Diag(DefaultLoc, diag::err_default_special_members); in SetDeclDefaulted() 12863 DefineImplicitDefaultConstructor(DefaultLoc, in SetDeclDefaulted() 12867 DefineImplicitCopyConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD)); in SetDeclDefaulted() 12870 DefineImplicitCopyAssignment(DefaultLoc, MD); in SetDeclDefaulted() 12873 DefineImplicitDestructor(DefaultLoc, cast<CXXDestructorDecl>(MD)); in SetDeclDefaulted() 12876 DefineImplicitMoveConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD)); in SetDeclDefaulted() 12879 DefineImplicitMoveAssignment(DefaultLoc, MD); in SetDeclDefaulted() 12885 Diag(DefaultLoc, diag::err_default_special_members); in SetDeclDefaulted()
|
| HD | SemaStmt.cpp | 436 Sema::ActOnDefaultStmt(SourceLocation DefaultLoc, SourceLocation ColonLoc, in ActOnDefaultStmt() argument 441 Diag(DefaultLoc, diag::err_default_not_in_switch); in ActOnDefaultStmt() 445 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt); in ActOnDefaultStmt()
|
| HD | TreeTransform.h | 1129 StmtResult RebuildDefaultStmt(SourceLocation DefaultLoc, in RebuildDefaultStmt() argument 1132 return getSema().ActOnDefaultStmt(DefaultLoc, ColonLoc, SubStmt, in RebuildDefaultStmt() 2099 SourceLocation DefaultLoc, in RebuildGenericSelectionExpr() argument 2104 return getSema().CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc, in RebuildGenericSelectionExpr()
|
| HD | SemaExpr.cpp | 1319 SourceLocation DefaultLoc, in ActOnGenericSelectionExpr() argument 1335 ExprResult ER = CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc, in ActOnGenericSelectionExpr() 1345 SourceLocation DefaultLoc, in CreateGenericSelectionExpr() argument 1425 Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc, in CreateGenericSelectionExpr() 1479 Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc, in CreateGenericSelectionExpr()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Parse/ |
| HD | ParseExpr.cpp | 2447 SourceLocation DefaultLoc; in ParseGenericSelectionExpression() local 2455 if (!DefaultLoc.isInvalid()) { in ParseGenericSelectionExpression() 2457 Diag(DefaultLoc, diag::note_previous_default_assoc); in ParseGenericSelectionExpression() 2461 DefaultLoc = ConsumeToken(); in ParseGenericSelectionExpression() 2494 return Actions.ActOnGenericSelectionExpr(KeyLoc, DefaultLoc, in ParseGenericSelectionExpression()
|
| HD | ParseStmt.cpp | 768 SourceLocation DefaultLoc = ConsumeToken(); // eat the 'default'. in ParseDefaultStatement() local 802 return Actions.ActOnDefaultStmt(DefaultLoc, ColonLoc, in ParseDefaultStatement()
|
| HD | ParseExprCXX.cpp | 799 Intro.DefaultLoc = ConsumeToken(); in ParseLambdaIntroducer() 803 Intro.DefaultLoc = ConsumeToken(); in ParseLambdaIntroducer()
|
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | Expr.cpp | 3810 SourceLocation DefaultLoc, in GenericSelectionExpr() argument 3825 GenericLoc(GenericLoc), DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) { in GenericSelectionExpr() 3836 SourceLocation DefaultLoc, in GenericSelectionExpr() argument 3850 DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) { in GenericSelectionExpr()
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | Expr.h | 4451 SourceLocation GenericLoc, DefaultLoc, RParenLoc; variable 4458 SourceLocation DefaultLoc, SourceLocation RParenLoc, 4467 SourceLocation DefaultLoc, SourceLocation RParenLoc, 4476 SourceLocation getDefaultLoc() const { return DefaultLoc; } in getDefaultLoc()
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Sema/ |
| HD | DeclSpec.h | 2272 SourceLocation DefaultLoc; member
|
| HD | Sema.h | 1686 void SetDeclDefaulted(Decl *dcl, SourceLocation DefaultLoc); 3258 StmtResult ActOnDefaultStmt(SourceLocation DefaultLoc, 3723 SourceLocation DefaultLoc, 3729 SourceLocation DefaultLoc,
|
| /NextBSD/contrib/llvm/tools/clang/lib/Serialization/ |
| HD | ASTReaderStmt.cpp | 894 E->DefaultLoc = ReadSourceLocation(Record, Idx); in VisitGenericSelectionExpr()
|