Searched refs:time (Results 1 - 21 of 21) sorted by relevance

/yui3/build/event-flick/
H A Devent-flick-debug.js16 * velocity of the flick, along with distance and time information.
62 * @param fn {function} The method the event invokes. It receives an event facade with an e.flick object containing the flick related properties: e.flick.time, e.flick.distance, e.flick.velocity and e.flick.axis, e.flick.start.
151 time : new Date().getTime()
173 start.flick.time = new Date().getTime();
184 time,
220 startTime = start.flick.time;
222 time = endTime - startTime;
236 velocity = (time !== 0) ? distance/time : 0;
242 time
[all...]
/yui3/src/event-gestures/js/
H A DFlick.js14 * velocity of the flick, along with distance and time information.
60 * @param fn {function} The method the event invokes. It receives an event facade with an e.flick object containing the flick related properties: e.flick.time, e.flick.distance, e.flick.velocity and e.flick.axis, e.flick.start.
149 time : new Date().getTime()
171 start.flick.time = new Date().getTime();
182 time,
218 startTime = start.flick.time;
220 time = endTime - startTime;
234 velocity = (time !== 0) ? distance/time : 0;
240 time
[all...]
/yui3/src/event-gestures/tests/
H A Dflick-tests.js57 Assert.isTrue((sub['_fs'].flick.time > 0), 'Flick time was not set on move');
67 time: ((new Date().getTime()) - 3000)
89 Assert.isTrue((e.flick.time >- 3000), 'flick time is not set properly');
/yui3/build/console/
H A Dconsole-debug.js58 C_ENTRY_TIME = getCN(CONSOLE,ENTRY,'time'),
484 * <li>time - this moment</li>
489 * <li>localTime - readable version of time</li>
506 time : new Date(),
519 m.localTime = m.time.toLocaleTimeString ?
520 m.time.toLocaleTimeString() : (m.time + '');
521 m.elapsedTime = m.time - this.get(LAST_TIME);
522 m.totalTime = m.time - this.get(START_TIME);
524 this._set(LAST_TIME,m.time);
[all...]
/yui3/build/transition-timer/
H A Dtransition-timer-debug.js47 _runAttrs: function(time) {
70 elapsed = (time - delay) / 1000;
71 t = time;
88 if (!delay || time >= delay) {
/yui3/src/transition/js/
H A Dtransition-timer.js45 _runAttrs: function(time) {
68 elapsed = (time - delay) / 1000;
69 t = time;
86 if (!delay || time >= delay) {
H A Dtransition-native.js286 _runNative: function(time) {
/yui3/build/calendar-base/
H A Dcalendar-base-debug.js6 * months visible at a single time. CalendarBase supports custom date
536 for (var time = startTime; time <= endTime; time += 86400000) {
537 var addedDate = new Date(time);
539 this._addDateToSelection(addedDate, time);
590 for (var time = startTime; time <= endTime; time += 86400000) {
591 this._removeDateFromSelection(new Date(time), tim
[all...]
/yui3/src/console/js/
H A Dconsole.js56 C_ENTRY_TIME = getCN(CONSOLE,ENTRY,'time'),
482 * <li>time - this moment</li>
487 * <li>localTime - readable version of time</li>
504 time : new Date(),
517 m.localTime = m.time.toLocaleTimeString ?
518 m.time.toLocaleTimeString() : (m.time + '');
519 m.elapsedTime = m.time - this.get(LAST_TIME);
520 m.totalTime = m.time - this.get(START_TIME);
522 this._set(LAST_TIME,m.time);
[all...]
/yui3/src/calendar/js/
H A Dcalendar-base.js4 * months visible at a single time. CalendarBase supports custom date
534 for (var time = startTime; time <= endTime; time += 86400000) {
535 var addedDate = new Date(time);
537 this._addDateToSelection(addedDate, time);
588 for (var time = startTime; time <= endTime; time += 86400000) {
589 this._removeDateFromSelection(new Date(time), tim
[all...]
/yui3/build/transition/
H A Dtransition-debug.js288 _runNative: function(time) {
/yui3/build/transition-native/
H A Dtransition-native-debug.js289 _runNative: function(time) {
/yui3/src/yui/js/
H A Dyui.js164 'SWF.eventHandler': 1 }, // be done at build time
171 time = new Date().getTime(),
235 VERSION = '3.3.0'; // dev time hack for cdn test
414 Env._yidx + '_' + time).replace(/\./g, '_');
842 * logic is performed at a time.
1249 a global YUI config at the same time. This way they can all call `YUI.applyConfig({})` instead of
1296 // add a window load event at load time so we can capture
/yui3/src/charts/js/
H A DChartBase.js145 * <dt>time</dt><dd>Specifies a `TimeAxis</dd>
430 time: Y.TimeAxis
/yui3/build/yui-core/
H A Dyui-core-debug.js164 'SWF.eventHandler': 1 }, // be done at build time
171 time = new Date().getTime(),
235 VERSION = '3.3.0'; // dev time hack for cdn test
414 Env._yidx + '_' + time).replace(/\./g, '_');
842 * logic is performed at a time.
1249 a global YUI config at the same time. This way they can all call `YUI.applyConfig({})` instead of
1296 // add a window load event at load time so we can capture
2061 * Returns the current time in milliseconds.
2064 * @return {Number} Current time in milliseconds.
2608 // It is safer to look this up every time becaus
[all...]
/yui3/build/simpleyui/
H A Dsimpleyui-debug.js164 'SWF.eventHandler': 1 }, // be done at build time
171 time = new Date().getTime(),
235 VERSION = '3.3.0'; // dev time hack for cdn test
414 Env._yidx + '_' + time).replace(/\./g, '_');
842 * logic is performed at a time.
1249 a global YUI config at the same time. This way they can all call `YUI.applyConfig({})` instead of
1296 // add a window load event at load time so we can capture
2061 * Returns the current time in milliseconds.
2064 * @return {Number} Current time in milliseconds.
2608 // It is safer to look this up every time becaus
[all...]
/yui3/src/simpleyui/js/
H A Dconcat.js164 'SWF.eventHandler': 1 }, // be done at build time
171 time = new Date().getTime(),
235 VERSION = '3.3.0'; // dev time hack for cdn test
414 Env._yidx + '_' + time).replace(/\./g, '_');
842 * logic is performed at a time.
1249 a global YUI config at the same time. This way they can all call `YUI.applyConfig({})` instead of
1296 // add a window load event at load time so we can capture
2061 * Returns the current time in milliseconds.
2064 * @return {Number} Current time in milliseconds.
2608 // It is safer to look this up every time becaus
[all...]
/yui3/build/yui-base/
H A Dyui-base-debug.js164 'SWF.eventHandler': 1 }, // be done at build time
171 time = new Date().getTime(),
235 VERSION = '3.3.0'; // dev time hack for cdn test
414 Env._yidx + '_' + time).replace(/\./g, '_');
842 * logic is performed at a time.
1249 a global YUI config at the same time. This way they can all call `YUI.applyConfig({})` instead of
1296 // add a window load event at load time so we can capture
2061 * Returns the current time in milliseconds.
2064 * @return {Number} Current time in milliseconds.
2608 // It is safer to look this up every time becaus
[all...]
/yui3/build/yui/
H A Dyui-debug.js164 'SWF.eventHandler': 1 }, // be done at build time
171 time = new Date().getTime(),
235 VERSION = '3.3.0'; // dev time hack for cdn test
414 Env._yidx + '_' + time).replace(/\./g, '_');
842 * logic is performed at a time.
1249 a global YUI config at the same time. This way they can all call `YUI.applyConfig({})` instead of
1296 // add a window load event at load time so we can capture
2061 * Returns the current time in milliseconds.
2064 * @return {Number} Current time in milliseconds.
2608 // It is safer to look this up every time becaus
[all...]
/yui3/build/yui-nodejs/
H A Dyui-nodejs-debug.js164 'SWF.eventHandler': 1 }, // be done at build time
171 time = new Date().getTime(),
235 VERSION = '3.3.0'; // dev time hack for cdn test
414 Env._yidx + '_' + time).replace(/\./g, '_');
842 * logic is performed at a time.
1249 a global YUI config at the same time. This way they can all call `YUI.applyConfig({})` instead of
1296 // add a window load event at load time so we can capture
2061 * Returns the current time in milliseconds.
2064 * @return {Number} Current time in milliseconds.
2608 // It is safer to look this up every time becaus
[all...]
/yui3/build/charts-base/
H A Dcharts-base-debug.js3925 * <dt>time</dt><dd>Manages time data</dd>
4909 * TimeAxis manages time data on an axis.
5079 _dataType: "time",
8291 * The ColumnSeries class renders columns positioned horizontally along a category or time axis. The columns'
8440 * The BarSeries class renders bars positioned vertically along a category or time axis. The bars'
11806 * <dt>time</dt><dd>Specifies a `TimeAxis</dd>
12091 time: Y.TimeAxis
13697 if(attr == "time" || attr == "category")

Completed in 256 milliseconds