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

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
module.h 149 Symbol *sdtor; // module destructor member in class:Module
dmodule.d 1437 Symbol* sdtor; // module destructor
statementsem.d 1896 Statement sdtor = new DtorExpStatement(ifs.loc, ifs.match.edtor, ifs.match);
1897 sdtor = new ScopeGuardStatement(ifs.loc, TOK.onScopeExit, sdtor);
1898 ifs.ifbody = new CompoundStatement(ifs.loc, sdtor, ifs.ifbody);
  /src/external/gpl3/gcc.old/dist/gcc/d/
modules.cc 496 if (decl->sdtor)
586 if (decl->sdtor)
637 CONSTRUCTOR_APPEND_ELT (minit, NULL_TREE, build_address (decl->sdtor));
770 tm->sdtor = build_funcs_gates_fn (get_identifier ("*__modtestdtor"),
800 decl->sdtor = build_funcs_gates_fn (get_identifier ("*__moddtor"),
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
typecons.d 8623 static int sdtor;
8625 this() { ++sdtor; assert(sdtor == 1); }
8626 ~this() { assert(sdtor == 1); --sdtor; }
8633 this() { ++sdtor; assert(sdtor == 2); }
8634 ~this() { assert(sdtor == 2); --sdtor; }
8637 A.sdtor = 0
    [all...]

Completed in 55 milliseconds