Home
last modified time | relevance | path

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

/external/clang/lib/Parse/
DParseExpr.cpp2258 SourceLocation DefaultLoc; in ParseGenericSelectionExpression() local
2266 if (!DefaultLoc.isInvalid()) { in ParseGenericSelectionExpression()
2268 Diag(DefaultLoc, diag::note_previous_default_assoc); in ParseGenericSelectionExpression()
2272 DefaultLoc = ConsumeToken(); in ParseGenericSelectionExpression()
2308 return Actions.ActOnGenericSelectionExpr(KeyLoc, DefaultLoc, in ParseGenericSelectionExpression()
DParseStmt.cpp647 SourceLocation DefaultLoc = ConsumeToken(); // eat the 'default'. in ParseDefaultStatement() local
682 return Actions.ActOnDefaultStmt(DefaultLoc, ColonLoc, in ParseDefaultStatement()
DParseExprCXX.cpp714 Intro.DefaultLoc = ConsumeToken(); in ParseLambdaIntroducer()
718 Intro.DefaultLoc = ConsumeToken(); in ParseLambdaIntroducer()
/external/clang/lib/AST/
DExpr.cpp3570 SourceLocation DefaultLoc, in GenericSelectionExpr() argument
3585 GenericLoc(GenericLoc), DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) { in GenericSelectionExpr()
3596 SourceLocation DefaultLoc, in GenericSelectionExpr() argument
3610 DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) { in GenericSelectionExpr()
/external/clang/include/clang/AST/
DExpr.h4265 SourceLocation GenericLoc, DefaultLoc, RParenLoc; variable
4272 SourceLocation DefaultLoc, SourceLocation RParenLoc,
4281 SourceLocation DefaultLoc, SourceLocation RParenLoc,
4290 SourceLocation getDefaultLoc() const { return DefaultLoc; } in getDefaultLoc()
/external/clang/lib/Sema/
DSemaStmt.cpp389 Sema::ActOnDefaultStmt(SourceLocation DefaultLoc, SourceLocation ColonLoc, in ActOnDefaultStmt() argument
394 Diag(DefaultLoc, diag::err_default_not_in_switch); in ActOnDefaultStmt()
398 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt); in ActOnDefaultStmt()
DSemaDeclCXX.cpp11543 void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) { in SetDeclDefaulted() argument
11556 Diag(DefaultLoc, diag::err_default_special_members); in SetDeclDefaulted()
11581 ResolveExceptionSpec(DefaultLoc, in SetDeclDefaulted()
11589 DefineImplicitDefaultConstructor(DefaultLoc, in SetDeclDefaulted()
11593 DefineImplicitCopyConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD)); in SetDeclDefaulted()
11596 DefineImplicitCopyAssignment(DefaultLoc, MD); in SetDeclDefaulted()
11599 DefineImplicitDestructor(DefaultLoc, cast<CXXDestructorDecl>(MD)); in SetDeclDefaulted()
11602 DefineImplicitMoveConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD)); in SetDeclDefaulted()
11605 DefineImplicitMoveAssignment(DefaultLoc, MD); in SetDeclDefaulted()
11611 Diag(DefaultLoc, diag::err_default_special_members); in SetDeclDefaulted()
DSemaLambda.cpp610 = Intro.Default == LCD_None? Intro.Range.getBegin() : Intro.DefaultLoc; in ActOnStartOfLambdaDefinition()
DTreeTransform.h1063 StmtResult RebuildDefaultStmt(SourceLocation DefaultLoc, in RebuildDefaultStmt() argument
1066 return getSema().ActOnDefaultStmt(DefaultLoc, ColonLoc, SubStmt, in RebuildDefaultStmt()
1818 SourceLocation DefaultLoc, in RebuildGenericSelectionExpr() argument
1823 return getSema().CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc, in RebuildGenericSelectionExpr()
DSemaExpr.cpp1273 SourceLocation DefaultLoc, in ActOnGenericSelectionExpr() argument
1289 ExprResult ER = CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc, in ActOnGenericSelectionExpr()
1299 SourceLocation DefaultLoc, in CreateGenericSelectionExpr() argument
1374 DefaultLoc, RParenLoc, ContainsUnexpandedParameterPack)); in CreateGenericSelectionExpr()
1429 DefaultLoc, RParenLoc, ContainsUnexpandedParameterPack, in CreateGenericSelectionExpr()
/external/clang/include/clang/Sema/
DDeclSpec.h2140 SourceLocation DefaultLoc; member
DSema.h1519 void SetDeclDefaulted(Decl *dcl, SourceLocation DefaultLoc);
2812 StmtResult ActOnDefaultStmt(SourceLocation DefaultLoc,
3236 SourceLocation DefaultLoc,
3242 SourceLocation DefaultLoc,
/external/clang/lib/Serialization/
DASTReaderStmt.cpp877 E->DefaultLoc = ReadSourceLocation(Record, Idx); in VisitGenericSelectionExpr()