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

/external/clang/include/clang/AST/
H A DStmt.h727 SourceLocation DefaultLoc; member in class:clang::DefaultStmt
731 SwitchCase(DefaultStmtClass), SubStmt(substmt), DefaultLoc(DL),
741 SourceLocation getDefaultLoc() const { return DefaultLoc; }
742 void setDefaultLoc(SourceLocation L) { DefaultLoc = L; }
747 return SourceRange(DefaultLoc, SubStmt->getLocEnd());
H A DExpr.h4102 SourceLocation GenericLoc, DefaultLoc, RParenLoc;
4109 SourceLocation DefaultLoc, SourceLocation RParenLoc,
4118 SourceLocation DefaultLoc, SourceLocation RParenLoc,
4127 SourceLocation getDefaultLoc() const { return DefaultLoc; }
/external/clang/lib/Parse/
H A DParseExpr.cpp2262 SourceLocation DefaultLoc; local
2270 if (!DefaultLoc.isInvalid()) {
2272 Diag(DefaultLoc, diag::note_previous_default_assoc);
2276 DefaultLoc = ConsumeToken();
2312 return Actions.ActOnGenericSelectionExpr(KeyLoc, DefaultLoc,
H A DParseStmt.cpp592 SourceLocation DefaultLoc = ConsumeToken(); // eat the 'default'. local
627 return Actions.ActOnDefaultStmt(DefaultLoc, ColonLoc,
H A DParseExprCXX.cpp633 Intro.DefaultLoc = ConsumeToken();
637 Intro.DefaultLoc = ConsumeToken();
/external/clang/lib/AST/
H A DExpr.cpp3431 SourceLocation DefaultLoc,
3446 GenericLoc(GenericLoc), DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) {
3457 SourceLocation DefaultLoc,
3471 DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) {
3427 GenericSelectionExpr(ASTContext &Context, SourceLocation GenericLoc, Expr *ControllingExpr, ArrayRef<TypeSourceInfo*> AssocTypes, ArrayRef<Expr*> AssocExprs, SourceLocation DefaultLoc, SourceLocation RParenLoc, bool ContainsUnexpandedParameterPack, unsigned ResultIndex) argument
3453 GenericSelectionExpr(ASTContext &Context, SourceLocation GenericLoc, Expr *ControllingExpr, ArrayRef<TypeSourceInfo*> AssocTypes, ArrayRef<Expr*> AssocExprs, SourceLocation DefaultLoc, SourceLocation RParenLoc, bool ContainsUnexpandedParameterPack) argument
/external/clang/lib/Sema/
H A DSemaStmt.cpp347 Sema::ActOnDefaultStmt(SourceLocation DefaultLoc, SourceLocation ColonLoc, argument
352 Diag(DefaultLoc, diag::err_default_not_in_switch);
356 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt);
H A DSemaLambda.cpp443 = Intro.Default == LCD_None? Intro.Range.getBegin() : Intro.DefaultLoc;
H A DSemaDeclCXX.cpp10431 void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) { argument
10443 Diag(DefaultLoc, diag::err_default_special_members);
10467 DefineImplicitDefaultConstructor(DefaultLoc, CD);
10474 DefineImplicitCopyConstructor(DefaultLoc, CD);
10480 DefineImplicitCopyAssignment(DefaultLoc, MD);
10487 DefineImplicitDestructor(DefaultLoc, DD);
10494 DefineImplicitMoveConstructor(DefaultLoc, CD);
10500 DefineImplicitMoveAssignment(DefaultLoc, MD);
10508 Diag(DefaultLoc, diag::err_default_special_members);
H A DTreeTransform.h1036 StmtResult RebuildDefaultStmt(SourceLocation DefaultLoc, argument
1039 return getSema().ActOnDefaultStmt(DefaultLoc, ColonLoc, SubStmt,
1729 SourceLocation DefaultLoc,
1735 return getSema().CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc,
1728 RebuildGenericSelectionExpr(SourceLocation KeyLoc, SourceLocation DefaultLoc, SourceLocation RParenLoc, Expr *ControllingExpr, TypeSourceInfo **Types, Expr **Exprs, unsigned NumAssocs) argument
H A DSemaExpr.cpp1100 SourceLocation DefaultLoc,
1119 ExprResult ER = CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc,
1128 SourceLocation DefaultLoc,
1197 DefaultLoc, RParenLoc, ContainsUnexpandedParameterPack));
1253 DefaultLoc, RParenLoc, ContainsUnexpandedParameterPack,
1099 ActOnGenericSelectionExpr(SourceLocation KeyLoc, SourceLocation DefaultLoc, SourceLocation RParenLoc, Expr *ControllingExpr, MultiTypeArg ArgTypes, MultiExprArg ArgExprs) argument
1127 CreateGenericSelectionExpr(SourceLocation KeyLoc, SourceLocation DefaultLoc, SourceLocation RParenLoc, Expr *ControllingExpr, TypeSourceInfo **Types, Expr **Exprs, unsigned NumAssocs) argument
/external/clang/include/clang/Sema/
H A DDeclSpec.h1991 SourceLocation DefaultLoc;
H A DSema.h1311 void SetDeclDefaulted(Decl *dcl, SourceLocation DefaultLoc);
2503 StmtResult ActOnDefaultStmt(SourceLocation DefaultLoc,
2887 SourceLocation DefaultLoc,
2893 SourceLocation DefaultLoc,
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp789 E->DefaultLoc = ReadSourceLocation(Record, Idx);

Completed in 269 milliseconds