Searched refs:ThrownExceptionExp (Results 1 – 11 of 11) sorted by relevance
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | ctfe.h | 81 class ThrownExceptionExp : public Expression 85 ThrownExceptionExp(Loc loc, ClassReferenceExp *victim);
|
| H A D | ctfeexpr.c | 113 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 D | dinterpret.c | 850 ((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 D | visitor.h | 288 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 D | ctfe.h | 48 class ThrownExceptionExp : public Expression
|
| H A D | visitor.d | 91 void visit(ASTCodegen.ThrownExceptionExp e) { visit(cast(ASTCodegen.Expression)e); }
|
| H A D | visitor.h | 296 class ThrownExceptionExp; variable 654 virtual void visit(ThrownExceptionExp *e) { visit((Expression *)e); } in visit()
|
| H A D | dinterpret.d | 1468 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 D | ctfeexpr.d | 128 extern (C++) final class ThrownExceptionExp : Expression 134 super(loc, EXP.thrownException, __traits(classInstanceSize, ThrownExceptionExp)); in this()
|
| H A D | expression.h | 236 ThrownExceptionExp* isThrownExceptionExp();
|
| H A D | expression.d | 1748 …inout(ThrownExceptionExp) isThrownExceptionExp() { return op == EXP.thrownException ? cast(typeof(… in isThrownExceptionExp()
|