Searched defs:start (Results 1 - 5 of 5) sorted by relevance

/yui3/src/yui/scripts/
H A Dnpm_package.js14 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 Dserver.js89 start: function() {
/yui3/src/io/js/
H A Dio-queue.js149 _queue.start = function () { io.qStart(); };
/yui3/src/io/as/com/yui/util/
H A Dio.as70 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 DProfiler.js40 * 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 31 milliseconds