Home
last modified time | relevance | path

Searched refs:ThrownExceptionExp (Results 1 – 11 of 11) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dctfe.h81 class ThrownExceptionExp : public Expression
85 ThrownExceptionExp(Loc loc, ClassReferenceExp *victim);
H A Dctfeexpr.c113 ThrownExceptionExp::ThrownExceptionExp(Loc loc, ClassReferenceExp *victim) : Expression(loc, TOKthr… in ThrownExceptionExp() function
119 const char *ThrownExceptionExp::toChars() in toChars()
125 void ThrownExceptionExp::generateUncaughtError() in generateUncaughtError()
H A Ddinterpret.c850 ((ThrownExceptionExp *)earg)->generateUncaughtError(); in interpretFunction()
975 ((ThrownExceptionExp *)e)->generateUncaughtError(); in interpretFunction()
1613 ThrownExceptionExp *ex = (ThrownExceptionExp *)e; in visit()
1660 … static ThrownExceptionExp *chainExceptions(ThrownExceptionExp *oldest, ThrownExceptionExp *newest) in chainExceptions()
1741 ex = chainExceptions((ThrownExceptionExp *)ex, (ThrownExceptionExp *)ey); in visit()
1762 result = new ThrownExceptionExp(s->loc, (ClassReferenceExp *)e); in visit()
6165 void visit(ThrownExceptionExp *e) in visit()
H A Dvisitor.h288 class ThrownExceptionExp; variable
582 virtual void visit(ThrownExceptionExp *e) { visit((Expression *)e); } in visit()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dctfe.h48 class ThrownExceptionExp : public Expression
H A Dvisitor.d91 void visit(ASTCodegen.ThrownExceptionExp e) { visit(cast(ASTCodegen.Expression)e); }
H A Dvisitor.h296 class ThrownExceptionExp; variable
654 virtual void visit(ThrownExceptionExp *e) { visit((Expression *)e); } in visit()
H A Ddinterpret.d1468 ThrownExceptionExp ex = e.isThrownExceptionExp(); in visit()
1514 static ThrownExceptionExp chainExceptions(ThrownExceptionExp oldest, ThrownExceptionExp newest) in chainExceptions()
1636 result = ctfeEmplaceExp!ThrownExceptionExp(loc, e.isClassReferenceExp()); in interpretThrow()
6366 override void visit(ThrownExceptionExp e) in visit()
H A Dctfeexpr.d128 extern (C++) final class ThrownExceptionExp : Expression
134 super(loc, EXP.thrownException, __traits(classInstanceSize, ThrownExceptionExp)); in this()
H A Dexpression.h236 ThrownExceptionExp* isThrownExceptionExp();
H A Dexpression.d1748 …inout(ThrownExceptionExp) isThrownExceptionExp() { return op == EXP.thrownException ? cast(typeof(… in isThrownExceptionExp()