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

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
arraytypes.h 43 typedef Array<class Catch *> Catches;
arraytypes.d 43 alias Catches = Array!(Catch);
statement.h 580 Catches *catches; member in class:TryCatchStatement
statement.d 1561 Catches* catches;
1565 extern (D) this(const ref Loc loc, Statement _body, Catches* catches)
1569 this.catches = catches;
1574 auto a = new Catches(catches.dim);
1575 foreach (i, c; *catches)
func.d 178 auto catches = new Catches();
182 catches.push(ctch);
184 Statement s2 = new TryCatchStatement(Loc.initial, s._body, catches);
2293 auto catches = new Catches();
2294 catches.push(c);
2295 sf = new TryCatchStatement(loc, s2, catches);
2360 auto catches = new Catches();
    [all...]
semantic3.d 1457 auto catches = new Catches();
1459 catches.push(ctch);
1461 ctor.fbody = new TryCatchStatement(ctor.loc, ctor.fbody, catches);
1467 * Hopefully we can use this version someday when scope(failure) catches
parse.d 6362 AST.Catches* catches = null;
6395 if (!catches)
6396 catches = new AST.Catches();
6397 catches.push(c);
6407 if (!catches && !finalbody)
6411 if (catches)
6412 s = new AST.TryCatchStatement(loc, _body, catches);
statementsem.d 345 auto catches = new Catches();
348 catches.push(ctch);
350 Statement st = new TryCatchStatement(Loc.initial, _body, catches);
3584 /* Even if body is empty, still do semantic analysis on catches
3587 foreach (i, c; *tcs.catches)
3598 // Determine if current catch 'hides' any previous catches
3601 Catch cj = (*tcs.catches)[j];
3636 /* If the try body never throws, we can eliminate any catches
3641 foreach_reverse (i; 0 .. tcs.catches.dim
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyLateEHPrepare.cpp 177 SmallVector<MachineInstr *, 16> Catches;
181 Catches.push_back(&MI);
183 for (auto *Catch : Catches) {
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
exception.d 645 Catches and returns the exception thrown from the given expression.
693 Catches and returns the exception thrown from the given expression.
731 Catches the exception thrown from the given expression and returns the
777 Value that collectExceptionMsg returns when it catches an exception

Completed in 85 milliseconds