Home
last modified time | relevance | path

Searched refs:DefaultLoc (Results 1 – 14 of 14) sorted by relevance

/external/clang/lib/Sema/
DSemaOpenMP.cpp2694 SourceLocation DefaultLoc; member in __anoncdf42c2b0b11::OpenMPIterationSpaceChecker
2725 OpenMPIterationSpaceChecker(Sema &SemaRef, SourceLocation DefaultLoc) in OpenMPIterationSpaceChecker() argument
2726 : SemaRef(SemaRef), DefaultLoc(DefaultLoc), ConditionLoc(DefaultLoc), in OpenMPIterationSpaceChecker()
2908 SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_init); in CheckInit()
2972 SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_cond) << Var; in CheckCond()
3061 SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_incr) << Var; in CheckInc()
3193 Diff = SemaRef.BuildBinOp(S, DefaultLoc, BO_Sub, Upper, Lower); in BuildNumIterations()
3210 S, DefaultLoc, BO_Sub, Diff.get(), in BuildNumIterations()
3224 Diff = SemaRef.BuildBinOp(S, DefaultLoc, BO_Add, Diff.get(), NewStep.get()); in BuildNumIterations()
3229 Diff = SemaRef.ActOnParenExpr(DefaultLoc, DefaultLoc, Diff.get()); in BuildNumIterations()
[all …]
DSemaLambda.cpp896 buildLambdaScope(LSI, Method, Intro.Range, Intro.Default, Intro.DefaultLoc, in ActOnStartOfLambdaDefinition()
914 Diag(Intro.DefaultLoc, diag::err_capture_default_non_local); in ActOnStartOfLambdaDefinition()
921 = Intro.Default == LCD_None? Intro.Range.getBegin() : Intro.DefaultLoc; in ActOnStartOfLambdaDefinition()
DSemaDeclCXX.cpp12840 void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) { in SetDeclDefaulted() argument
12853 Diag(DefaultLoc, diag::err_default_special_members); in SetDeclDefaulted()
12881 DefineImplicitDefaultConstructor(DefaultLoc, in SetDeclDefaulted()
12885 DefineImplicitCopyConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD)); in SetDeclDefaulted()
12888 DefineImplicitCopyAssignment(DefaultLoc, MD); in SetDeclDefaulted()
12891 DefineImplicitDestructor(DefaultLoc, cast<CXXDestructorDecl>(MD)); in SetDeclDefaulted()
12894 DefineImplicitMoveConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD)); in SetDeclDefaulted()
12897 DefineImplicitMoveAssignment(DefaultLoc, MD); in SetDeclDefaulted()
12903 Diag(DefaultLoc, diag::err_default_special_members); in SetDeclDefaulted()
DSemaStmt.cpp445 Sema::ActOnDefaultStmt(SourceLocation DefaultLoc, SourceLocation ColonLoc, in ActOnDefaultStmt() argument
450 Diag(DefaultLoc, diag::err_default_not_in_switch); in ActOnDefaultStmt()
454 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt); in ActOnDefaultStmt()
DTreeTransform.h1134 StmtResult RebuildDefaultStmt(SourceLocation DefaultLoc, in RebuildDefaultStmt() argument
1137 return getSema().ActOnDefaultStmt(DefaultLoc, ColonLoc, SubStmt, in RebuildDefaultStmt()
2260 SourceLocation DefaultLoc, in RebuildGenericSelectionExpr() argument
2265 return getSema().CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc, in RebuildGenericSelectionExpr()
DSemaExpr.cpp1332 SourceLocation DefaultLoc, in ActOnGenericSelectionExpr() argument
1348 ExprResult ER = CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc, in ActOnGenericSelectionExpr()
1358 SourceLocation DefaultLoc, in CreateGenericSelectionExpr() argument
1440 Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc, in CreateGenericSelectionExpr()
1493 Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc, in CreateGenericSelectionExpr()
/external/clang/lib/Parse/
DParseExpr.cpp2479 SourceLocation DefaultLoc; in ParseGenericSelectionExpression() local
2487 if (!DefaultLoc.isInvalid()) { in ParseGenericSelectionExpression()
2489 Diag(DefaultLoc, diag::note_previous_default_assoc); in ParseGenericSelectionExpression()
2493 DefaultLoc = ConsumeToken(); in ParseGenericSelectionExpression()
2526 return Actions.ActOnGenericSelectionExpr(KeyLoc, DefaultLoc, in ParseGenericSelectionExpression()
DParseStmt.cpp777 SourceLocation DefaultLoc = ConsumeToken(); // eat the 'default'. in ParseDefaultStatement() local
811 return Actions.ActOnDefaultStmt(DefaultLoc, ColonLoc, in ParseDefaultStatement()
DParseExprCXX.cpp799 Intro.DefaultLoc = ConsumeToken(); in ParseLambdaIntroducer()
803 Intro.DefaultLoc = ConsumeToken(); in ParseLambdaIntroducer()
/external/clang/lib/AST/
DExpr.cpp3601 SourceLocation DefaultLoc, in GenericSelectionExpr() argument
3616 GenericLoc(GenericLoc), DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) { in GenericSelectionExpr()
3627 SourceLocation DefaultLoc, in GenericSelectionExpr() argument
3641 DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) { in GenericSelectionExpr()
/external/clang/include/clang/AST/
DExpr.h4515 SourceLocation GenericLoc, DefaultLoc, RParenLoc; variable
4522 SourceLocation DefaultLoc, SourceLocation RParenLoc,
4531 SourceLocation DefaultLoc, SourceLocation RParenLoc,
4540 SourceLocation getDefaultLoc() const { return DefaultLoc; } in getDefaultLoc()
/external/clang/include/clang/Sema/
DDeclSpec.h2291 SourceLocation DefaultLoc; member
DSema.h1723 void SetDeclDefaulted(Decl *dcl, SourceLocation DefaultLoc);
3306 StmtResult ActOnDefaultStmt(SourceLocation DefaultLoc,
3787 SourceLocation DefaultLoc,
3793 SourceLocation DefaultLoc,
/external/clang/lib/Serialization/
DASTReaderStmt.cpp924 E->DefaultLoc = ReadSourceLocation(Record, Idx); in VisitGenericSelectionExpr()