HomeSort by: relevance | last modified time | path
    Searched refs:throw_ (Results 1 - 11 of 11) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
blockexit.d 41 throw_ = 2,
48 any = (fallthru | throw_ | return_ | goto_ | halt),
414 result &= ~(BE.throw_ | BE.errthrow);
418 result &= ~BE.throw_;
422 if (mustNotThrow && (result & BE.throw_))
450 if (s._body && (result & BE.throw_))
452 if (s.finalbody && (finalresult & BE.throw_))
514 result |= BE.throw_;
557 return BE.throw_;
tokens.h 55 throw_, member in class:TOK
305 throw_, member in class:EXP
canthrow.d 44 exception = BE.throw_,
tokens.d 46 throw_,
295 throw_,
458 TOK.throw_,
664 TOK.throw_: "throw",
sideeffect.d 184 case EXP.throw_:
semantic3.d 757 if (f.isnothrow && blockexit & BE.throw_)
760 if (!(blockexit & (BE.throw_ | BE.halt) || funcdecl.flags & FUNCFLAG.hasCatches))
772 f.isnothrow = !(blockexit & BE.throw_);
1160 if (blockexit & BE.throw_)
ob.d 141 throw_, /// exits with throw
153 obtype == ObType.throw_ ? "throw" :
655 curblock.obtype = ObType.throw_;
779 curblock.obtype = ObType.throw_;
statementsem.d 3639 if (!(tcs._body.blockExit(sc.func, false) & BE.throw_) && ClassDeclaration.exception)
3693 blockexit &= ~BE.throw_; // don't worry about paths that otherwise may throw
expression.d 1660 inout(ThrowExp) isThrowExp() { return op == EXP.throw_ ? cast(typeof(return))this : null; }
4718 super(loc, EXP.throw_, __traits(classInstanceSize, ThrowExp), e);
7211 EXP.import_, EXP.assert_, EXP.throw_, EXP.dotIdentifier, EXP.dotTemplateDeclaration,
parse.d 6418 case TOK.throw_:
8695 case TOK.throw_:
9439 EXP.throw_ : PREC.unary,
hdrgen.d 2588 case EXP.throw_: return visitThrow(e.isThrowExp());

Completed in 48 milliseconds