Home
last modified time | relevance | path

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

/external/clang/lib/Parse/
DParseExpr.cpp2232 SourceLocation DefaultLoc; in ParseGenericSelectionExpression() local
2240 if (!DefaultLoc.isInvalid()) { in ParseGenericSelectionExpression()
2242 Diag(DefaultLoc, diag::note_previous_default_assoc); in ParseGenericSelectionExpression()
2246 DefaultLoc = ConsumeToken(); in ParseGenericSelectionExpression()
2278 return Actions.ActOnGenericSelectionExpr(KeyLoc, DefaultLoc, in ParseGenericSelectionExpression()
DParseStmt.cpp751 SourceLocation DefaultLoc = ConsumeToken(); // eat the 'default'. in ParseDefaultStatement() local
785 return Actions.ActOnDefaultStmt(DefaultLoc, ColonLoc, in ParseDefaultStatement()
DParseExprCXX.cpp750 Intro.DefaultLoc = ConsumeToken(); in ParseLambdaIntroducer()
754 Intro.DefaultLoc = ConsumeToken(); in ParseLambdaIntroducer()
/external/clang/lib/Sema/
DSemaOpenMP.cpp1233 SourceLocation DefaultLoc; member in __anonc48eae3d0611::OpenMPIterationSpaceChecker
1258 OpenMPIterationSpaceChecker(Sema &SemaRef, SourceLocation DefaultLoc) in OpenMPIterationSpaceChecker() argument
1259 : SemaRef(SemaRef), DefaultLoc(DefaultLoc), ConditionLoc(DefaultLoc), in OpenMPIterationSpaceChecker()
1385 SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_init); in CheckInit()
1442 SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_cond) << Var; in CheckCond()
1531 SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_incr) << Var; in CheckInc()
DSemaLambda.cpp930 Intro.Default, Intro.DefaultLoc, in ActOnStartOfLambdaDefinition()
950 Diag(Intro.DefaultLoc, diag::err_capture_default_non_local); in ActOnStartOfLambdaDefinition()
957 = Intro.Default == LCD_None? Intro.Range.getBegin() : Intro.DefaultLoc; in ActOnStartOfLambdaDefinition()
DSemaDeclCXX.cpp12178 void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) { in SetDeclDefaulted() argument
12191 Diag(DefaultLoc, diag::err_default_special_members); in SetDeclDefaulted()
12216 ResolveExceptionSpec(DefaultLoc, in SetDeclDefaulted()
12224 DefineImplicitDefaultConstructor(DefaultLoc, in SetDeclDefaulted()
12228 DefineImplicitCopyConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD)); in SetDeclDefaulted()
12231 DefineImplicitCopyAssignment(DefaultLoc, MD); in SetDeclDefaulted()
12234 DefineImplicitDestructor(DefaultLoc, cast<CXXDestructorDecl>(MD)); in SetDeclDefaulted()
12237 DefineImplicitMoveConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD)); in SetDeclDefaulted()
12240 DefineImplicitMoveAssignment(DefaultLoc, MD); in SetDeclDefaulted()
12246 Diag(DefaultLoc, diag::err_default_special_members); in SetDeclDefaulted()
DSemaStmt.cpp399 Sema::ActOnDefaultStmt(SourceLocation DefaultLoc, SourceLocation ColonLoc, in ActOnDefaultStmt() argument
404 Diag(DefaultLoc, diag::err_default_not_in_switch); in ActOnDefaultStmt()
408 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt); in ActOnDefaultStmt()
DTreeTransform.h1086 StmtResult RebuildDefaultStmt(SourceLocation DefaultLoc, in RebuildDefaultStmt() argument
1089 return getSema().ActOnDefaultStmt(DefaultLoc, ColonLoc, SubStmt, in RebuildDefaultStmt()
2012 SourceLocation DefaultLoc, in RebuildGenericSelectionExpr() argument
2017 return getSema().CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc, in RebuildGenericSelectionExpr()
DSemaExpr.cpp1300 SourceLocation DefaultLoc, in ActOnGenericSelectionExpr() argument
1316 ExprResult ER = CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc, in ActOnGenericSelectionExpr()
1326 SourceLocation DefaultLoc, in CreateGenericSelectionExpr() argument
1399 Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc, in CreateGenericSelectionExpr()
1453 Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc, in CreateGenericSelectionExpr()
/external/clang/lib/AST/
DExpr.cpp3670 SourceLocation DefaultLoc, in GenericSelectionExpr() argument
3685 GenericLoc(GenericLoc), DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) { in GenericSelectionExpr()
3696 SourceLocation DefaultLoc, in GenericSelectionExpr() argument
3710 DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) { in GenericSelectionExpr()
/external/clang/include/clang/AST/
DExpr.h4360 SourceLocation GenericLoc, DefaultLoc, RParenLoc; variable
4367 SourceLocation DefaultLoc, SourceLocation RParenLoc,
4376 SourceLocation DefaultLoc, SourceLocation RParenLoc,
4385 SourceLocation getDefaultLoc() const { return DefaultLoc; } in getDefaultLoc()
/external/clang/include/clang/Sema/
DDeclSpec.h2178 SourceLocation DefaultLoc; member
DSema.h1638 void SetDeclDefaulted(Decl *dcl, SourceLocation DefaultLoc);
3010 StmtResult ActOnDefaultStmt(SourceLocation DefaultLoc,
3459 SourceLocation DefaultLoc,
3465 SourceLocation DefaultLoc,
/external/clang/lib/Serialization/
DASTReaderStmt.cpp883 E->DefaultLoc = ReadSourceLocation(Record, Idx); in VisitGenericSelectionExpr()