Searched defs:DefaultLoc (Results 1 - 9 of 9) sorted by relevance

/external/clang/lib/Parse/
H A DParseExpr.cpp2388 SourceLocation DefaultLoc; local
2396 if (!DefaultLoc.isInvalid()) {
2398 Diag(DefaultLoc, diag::note_previous_default_assoc);
2402 DefaultLoc = ConsumeToken();
2435 return Actions.ActOnGenericSelectionExpr(KeyLoc, DefaultLoc,
H A DParseStmt.cpp771 SourceLocation DefaultLoc = ConsumeToken(); // eat the 'default'. local
805 return Actions.ActOnDefaultStmt(DefaultLoc, ColonLoc,
/external/clang/lib/AST/
H A DExpr.cpp3764 SourceLocation DefaultLoc,
3779 GenericLoc(GenericLoc), DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) {
3790 SourceLocation DefaultLoc,
3804 DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) {
3760 GenericSelectionExpr(const ASTContext &Context, SourceLocation GenericLoc, Expr *ControllingExpr, ArrayRef<TypeSourceInfo*> AssocTypes, ArrayRef<Expr*> AssocExprs, SourceLocation DefaultLoc, SourceLocation RParenLoc, bool ContainsUnexpandedParameterPack, unsigned ResultIndex) argument
3786 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 DDeclSpec.h2234 SourceLocation DefaultLoc; member in struct:LambdaIntroducer
/external/clang/lib/Sema/
H A DSemaOpenMP.cpp1920 SourceLocation DefaultLoc; member in class:__anon1204::OpenMPIterationSpaceChecker
1951 OpenMPIterationSpaceChecker(Sema &SemaRef, SourceLocation DefaultLoc) argument
1952 : SemaRef(SemaRef), DefaultLoc(DefaultLoc), ConditionLoc(DefaultLoc),
2107 SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_init);
2167 SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_cond) << Var;
2256 SemaRef.Diag(DefaultLoc, diag::err_omp_loop_not_canonical_incr) << Var;
2321 Diff = SemaRef.BuildBinOp(S, DefaultLoc, BO_Sub, Upper, Lower);
2338 S, DefaultLoc, BO_Su
[all...]
H A DSemaStmt.cpp435 Sema::ActOnDefaultStmt(SourceLocation DefaultLoc, SourceLocation ColonLoc, argument
440 Diag(DefaultLoc, diag::err_default_not_in_switch);
444 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt);
H A DTreeTransform.h1113 StmtResult RebuildDefaultStmt(SourceLocation DefaultLoc, argument
1116 return getSema().ActOnDefaultStmt(DefaultLoc, ColonLoc, SubStmt,
2069 SourceLocation DefaultLoc,
2074 return getSema().CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc,
2068 RebuildGenericSelectionExpr(SourceLocation KeyLoc, SourceLocation DefaultLoc, SourceLocation RParenLoc, Expr *ControllingExpr, ArrayRef<TypeSourceInfo *> Types, ArrayRef<Expr *> Exprs) argument
H A DSemaDeclCXX.cpp12784 void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) { argument
12797 Diag(DefaultLoc, diag::err_default_special_members);
12825 DefineImplicitDefaultConstructor(DefaultLoc,
12829 DefineImplicitCopyConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD));
12832 DefineImplicitCopyAssignment(DefaultLoc, MD);
12835 DefineImplicitDestructor(DefaultLoc, cast<CXXDestructorDecl>(MD));
12838 DefineImplicitMoveConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD));
12841 DefineImplicitMoveAssignment(DefaultLoc, MD);
12847 Diag(DefaultLoc, diag::err_default_special_members);
H A DSemaExpr.cpp1299 SourceLocation DefaultLoc,
1315 ExprResult ER = CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc,
1325 SourceLocation DefaultLoc,
1405 Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc,
1459 Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc,
1298 ActOnGenericSelectionExpr(SourceLocation KeyLoc, SourceLocation DefaultLoc, SourceLocation RParenLoc, Expr *ControllingExpr, ArrayRef<ParsedType> ArgTypes, ArrayRef<Expr *> ArgExprs) argument
1324 CreateGenericSelectionExpr(SourceLocation KeyLoc, SourceLocation DefaultLoc, SourceLocation RParenLoc, Expr *ControllingExpr, ArrayRef<TypeSourceInfo *> Types, ArrayRef<Expr *> Exprs) argument

Completed in 399 milliseconds