Searched defs:start (Results 1 - 5 of 5) sorted by relevance
/yui3/src/yui/scripts/ |
H A D | npm_package.js | 14 var start = process.argv[2]; variable 16 if (!start) { 21 start = path.resolve(start); 23 if (!path.existsSync(start)) { 28 process.chdir(start); 52 var dirs = fs.readdirSync(start); 54 var p = path.join(start, mod, 'index.js'); 55 var d = path.join(start, mod, 'debug.js'); 56 var stat = fs.statSync(path.join(start, mo [all...] |
/yui3/src/io/tests/cli/ |
H A D | server.js | 89 start: function() {
|
/yui3/src/io/js/ |
H A D | io-queue.js | 149 _queue.start = function () { io.qStart(); };
|
/yui3/src/io/as/com/yui/util/ |
H A D | io.as | 70 start(o, timer); 99 private function start(o:Object, timer:Timer):void { function 101 timer.start(); 104 dispatch(['start', o, null]);
|
/yui3/src/profiler/js/ |
H A D | Profiler.js | 40 * Called when a method ends execution. Marks the start and end time of the 135 var start = new Date(), 139 saveDataPoint(name, stop-start); 179 stopwatch.total += (now - stopwatch.start); 180 stopwatch.start = 0; 188 * of a registered function or object. This is used to start timing for a 192 * @method start 195 start: function(name){ 197 throw new Error("Cannot use '" + name + "' for profiling through start(), name is already in use."); 209 start [all...] |
Completed in 94 milliseconds