Home | History | Annotate | Download | only in embenchen

Lines Matching defs:preRun

10   preRun: [function() {Module.printBuffer = ''}],
36 if (!Module['preRun']) Module['preRun'] = [];
37 Module["preRun"].push(runWithFS); // FS is not initialized yet, wait for it
202 Module['preRun'] = [];
1180 function preRun() {
1181 // compatibility - merge in anything from Module['preRun'] at this time
1182 if (Module['preRun']) {
1183 if (typeof Module['preRun'] == 'function') Module['preRun'] = [Module['preRun']];
1184 while (Module['preRun'].length) {
1185 addOnPreRun(Module['preRun'].shift());
1351 // Note that you can add dependencies in preRun, even though
42556 assert(__ATPRERUN__.length == 0, 'cannot call main when preRun functions remain to be called');
42620 preRun();
42622 if (runDependencies > 0) return; // a preRun added a dependency, run will be called later