/external/clang/lib/Parse/ |
H A D | ParseExpr.cpp | 2479 SourceLocation DefaultLoc; local 2487 if (!DefaultLoc.isInvalid()) { 2489 Diag(DefaultLoc, diag::note_previous_default_assoc); 2493 DefaultLoc = ConsumeToken(); 2526 return Actions.ActOnGenericSelectionExpr(KeyLoc, DefaultLoc,
|
H A D | ParseStmt.cpp | 777 SourceLocation DefaultLoc = ConsumeToken(); // eat the 'default'. local 811 return Actions.ActOnDefaultStmt(DefaultLoc, ColonLoc,
|
/external/clang/lib/AST/ |
H A D | Expr.cpp | 3601 SourceLocation DefaultLoc, 3616 GenericLoc(GenericLoc), DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) { 3627 SourceLocation DefaultLoc, 3641 DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) { 3597 GenericSelectionExpr(const ASTContext &Context, SourceLocation GenericLoc, Expr *ControllingExpr, ArrayRef<TypeSourceInfo*> AssocTypes, ArrayRef<Expr*> AssocExprs, SourceLocation DefaultLoc, SourceLocation RParenLoc, bool ContainsUnexpandedParameterPack, unsigned ResultIndex) argument 3623 GenericSelectionExpr(const ASTContext &Context, SourceLocation GenericLoc, Expr *ControllingExpr, ArrayRef<TypeSourceInfo*> AssocTypes, ArrayRef<Expr*> AssocExprs, SourceLocation DefaultLoc, SourceLocation RParenLoc, bool ContainsUnexpandedParameterPack) argument
|
/external/clang/include/clang/Sema/ |
H A D | DeclSpec.h | 2291 SourceLocation DefaultLoc; member in struct:LambdaIntroducer
|
/external/clang/lib/Sema/ |
H A D | SemaStmt.cpp | 445 Sema::ActOnDefaultStmt(SourceLocation DefaultLoc, SourceLocation ColonLoc, argument 450 Diag(DefaultLoc, diag::err_default_not_in_switch); 454 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt);
|
H A D | SemaDeclCXX.cpp | 12840 void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) { argument 12853 Diag(DefaultLoc, diag::err_default_special_members); 12881 DefineImplicitDefaultConstructor(DefaultLoc, 12885 DefineImplicitCopyConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD)); 12888 DefineImplicitCopyAssignment(DefaultLoc, MD); 12891 DefineImplicitDestructor(DefaultLoc, cast<CXXDestructorDecl>(MD)); 12894 DefineImplicitMoveConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD)); 12897 DefineImplicitMoveAssignment(DefaultLoc, MD); 12903 Diag(DefaultLoc, diag::err_default_special_members);
|
H A D | SemaExpr.cpp | 1332 SourceLocation DefaultLoc, 1348 ExprResult ER = CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc, 1358 SourceLocation DefaultLoc, 1440 Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc, 1493 Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc, 1331 ActOnGenericSelectionExpr(SourceLocation KeyLoc, SourceLocation DefaultLoc, SourceLocation RParenLoc, Expr *ControllingExpr, ArrayRef<ParsedType> ArgTypes, ArrayRef<Expr *> ArgExprs) argument 1357 CreateGenericSelectionExpr(SourceLocation KeyLoc, SourceLocation DefaultLoc, SourceLocation RParenLoc, Expr *ControllingExpr, ArrayRef<TypeSourceInfo *> Types, ArrayRef<Expr *> Exprs) argument
|
H A D | TreeTransform.h | 1134 StmtResult RebuildDefaultStmt(SourceLocation DefaultLoc, argument 1137 return getSema().ActOnDefaultStmt(DefaultLoc, ColonLoc, SubStmt, 2260 SourceLocation DefaultLoc, 2265 return getSema().CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc, 2259 RebuildGenericSelectionExpr(SourceLocation KeyLoc, SourceLocation DefaultLoc, SourceLocation RParenLoc, Expr *ControllingExpr, ArrayRef<TypeSourceInfo *> Types, ArrayRef<Expr *> Exprs) argument
|