Home | History | Annotate | Download | only in Sema

Lines Matching refs:atLoc

3034 Sema::ActOnObjCAtCatchStmt(SourceLocation AtLoc,
3041 return new (Context) ObjCAtCatchStmt(AtLoc, RParen, Var, Body);
3045 Sema::ActOnObjCAtFinallyStmt(SourceLocation AtLoc, Stmt *Body) {
3046 return new (Context) ObjCAtFinallyStmt(AtLoc, Body);
3050 Sema::ActOnObjCAtTryStmt(SourceLocation AtLoc, Stmt *Try,
3053 Diag(AtLoc, diag::err_objc_exceptions_disabled) << "@try";
3057 return ObjCAtTryStmt::Create(Context, AtLoc, Try, CatchStmts.data(),
3061 StmtResult Sema::BuildObjCAtThrowStmt(SourceLocation AtLoc, Expr *Throw) {
3078 return StmtError(Diag(AtLoc, diag::error_objc_throw_expects_object)
3083 return new (Context) ObjCAtThrowStmt(AtLoc, Throw);
3087 Sema::ActOnObjCAtThrowStmt(SourceLocation AtLoc, Expr *Throw,
3090 Diag(AtLoc, diag::err_objc_exceptions_disabled) << "@throw";
3099 return StmtError(Diag(AtLoc, diag::error_rethrow_used_outside_catch));
3101 return BuildObjCAtThrowStmt(AtLoc, Throw);
3105 Sema::ActOnObjCAtSynchronizedOperand(SourceLocation atLoc, Expr *operand) {
3117 return Diag(atLoc, diag::error_objc_synchronized_expects_object)
3126 Sema::ActOnObjCAtSynchronizedStmt(SourceLocation AtLoc, Expr *SyncExpr,
3130 return new (Context) ObjCAtSynchronizedStmt(AtLoc, SyncExpr, SyncBody);
3144 Sema::ActOnObjCAutoreleasePoolStmt(SourceLocation AtLoc, Stmt *Body) {
3146 return new (Context) ObjCAutoreleasePoolStmt(AtLoc, Body);