Searched +refs:val +refs:obj (Results 1 - 16 of 16) sorted by relevance
| /yui3/build/charts-base/ |
| H A D | charts-base-debug.js | 108 * @param {Array} val Array of lengths 112 _getRadiusCollection: function(val) 115 len = val.length, 119 radii[i] = val[i] * 0.5; 153 setter: function(val) 155 this._dimensions = val; 156 return val; 164 setter: function(val) 166 this._xvalues = val; 174 setter: function(val) [all...] |
| /yui3/build/dial/ |
| H A D | dial-debug.js | 147 validator: function(val) { 148 return this._validateValue(val); 485 * @param val {Number} current value of the Dial 488 _setTimesWrappedFromValue : function(val){ 489 if(val % this._stepsPerRevolution === 0){ 490 this._timesWrapped = (val / this._stepsPerRevolution); 492 this._timesWrapped = Math.floor(val / this._stepsPerRevolution); 806 * If typeArray is false, the XY of the obj node passed in is set. 809 * @param obj {Node} 814 _setNodeToFixedRadius : function(obj, typeArra [all...] |
| /yui3/build/imageloader/ |
| H A D | imageloader-debug.js | 53 setter: function(val) { this._setFoldTriggers(); return val; }, 158 * @param {Object} obj The DOM object to attach the trigger event to 161 addTrigger: function(obj, type) { 162 if (! obj || ! type) { 176 this._triggers.push( Y.on(type, wrappedFetch, obj, this) ); 186 * @param {Object} obj The object on which to attach the event. <code>obj</code> is optional - by default the event is attached to the <code>Y</code> instance 188 addCustomTrigger: function(name, obj) { 199 if (Y.Lang.isUndefined(obj)) { [all...] |
| /yui3/build/simpleyui/ |
| H A D | simpleyui-debug.js | 1953 * var obj = document.createElement("object"); 1954 * Y.Lang.isFunction(obj.getAttribute) // reports false in IE 2423 @param {Object} obj Object to test. 2432 YArray.test = function (obj) { 2435 if (Lang.isArray(obj)) { 2437 } else if (Lang.isObject(obj)) { 2442 if ('length' in obj && !obj.tagName && !obj.alert && !obj [all...] |
| /yui3/build/yui/ |
| H A D | yui-debug.js | 1953 * var obj = document.createElement("object"); 1954 * Y.Lang.isFunction(obj.getAttribute) // reports false in IE 2423 @param {Object} obj Object to test. 2432 YArray.test = function (obj) { 2435 if (Lang.isArray(obj)) { 2437 } else if (Lang.isObject(obj)) { 2442 if ('length' in obj && !obj.tagName && !obj.alert && !obj [all...] |
| /yui3/build/yui-base/ |
| H A D | yui-base-debug.js | 1953 * var obj = document.createElement("object"); 1954 * Y.Lang.isFunction(obj.getAttribute) // reports false in IE 2423 @param {Object} obj Object to test. 2432 YArray.test = function (obj) { 2435 if (Lang.isArray(obj)) { 2437 } else if (Lang.isObject(obj)) { 2442 if ('length' in obj && !obj.tagName && !obj.alert && !obj [all...] |
| /yui3/build/yui-core/ |
| H A D | yui-core-debug.js | 1953 * var obj = document.createElement("object"); 1954 * Y.Lang.isFunction(obj.getAttribute) // reports false in IE 2423 @param {Object} obj Object to test. 2432 YArray.test = function (obj) { 2435 if (Lang.isArray(obj)) { 2437 } else if (Lang.isObject(obj)) { 2442 if ('length' in obj && !obj.tagName && !obj.alert && !obj [all...] |
| /yui3/build/yui-nodejs/ |
| H A D | yui-nodejs-debug.js | 1953 * var obj = document.createElement("object"); 1954 * Y.Lang.isFunction(obj.getAttribute) // reports false in IE 2423 @param {Object} obj Object to test. 2432 YArray.test = function (obj) { 2435 if (Lang.isArray(obj)) { 2437 } else if (Lang.isObject(obj)) { 2442 if ('length' in obj && !obj.tagName && !obj.alert && !obj [all...] |
| /yui3/src/charts/js/ |
| H A D | AxisType.js | 167 obj, 172 obj = data[i]; 173 keyArray[i] = obj[key]; 189 obj, 195 obj = dv[i]; 196 arr[i] = obj[key]; 456 setter: function(val) 462 if(Y_Lang.isArray(val)) 464 len = val.length; 467 keys[val[ [all...] |
| H A D | CategoryAxis.js | 27 formatLabel: function(val, format) 29 return val; 82 obj, 92 obj = data[i]; 94 labels[i] = obj[key]; 111 obj, 122 obj = dv[i]; 124 labels[i] = obj[key];
|
| H A D | Graph.js | 84 * @param {Number} val index of the series 87 getSeriesByIndex: function(val) 91 if(col && col.length > val) 93 series = col[val]; 102 * @param {String} val key value of the series 105 getSeriesByKey: function(val) 107 var obj = this._seriesDictionary, 109 if(obj && obj.hasOwnProperty(val)) [all...] |
| H A D | TimeAxis.js | 107 * <dt>val</dt><dd>Label to be formatted. (`String`)</dd> 115 value: function(val, format) 117 val = Y.DataType.Date.parse(val); 120 return Y.DataType.Date.format(val, {format:format}); 122 return val; 146 formatLabel: function(val, format) 148 val = Y.DataType.Date.parse(val); 151 return Y.DataType.Date.format(val, {forma [all...] |
| /yui3/src/dial/js/ |
| H A D | Dial.js | 145 validator: function(val) { 146 return this._validateValue(val); 483 * @param val {Number} current value of the Dial 486 _setTimesWrappedFromValue : function(val){ 487 if(val % this._stepsPerRevolution === 0){ 488 this._timesWrapped = (val / this._stepsPerRevolution); 490 this._timesWrapped = Math.floor(val / this._stepsPerRevolution); 804 * If typeArray is false, the XY of the obj node passed in is set. 807 * @param obj {Node} 812 _setNodeToFixedRadius : function(obj, typeArra [all...] |
| /yui3/src/imageloader/js/ |
| H A D | imageloader.js | 51 setter: function(val) { this._setFoldTriggers(); return val; }, 156 * @param {Object} obj The DOM object to attach the trigger event to 159 addTrigger: function(obj, type) { 160 if (! obj || ! type) { 174 this._triggers.push( Y.on(type, wrappedFetch, obj, this) ); 184 * @param {Object} obj The object on which to attach the event. <code>obj</code> is optional - by default the event is attached to the <code>Y</code> instance 186 addCustomTrigger: function(name, obj) { 197 if (Y.Lang.isUndefined(obj)) { [all...] |
| /yui3/src/simpleyui/js/ |
| H A D | concat.js | 1953 * var obj = document.createElement("object"); 1954 * Y.Lang.isFunction(obj.getAttribute) // reports false in IE 2423 @param {Object} obj Object to test. 2432 YArray.test = function (obj) { 2435 if (Lang.isArray(obj)) { 2437 } else if (Lang.isObject(obj)) { 2442 if ('length' in obj && !obj.tagName && !obj.alert && !obj [all...] |
| /yui3/src/yui/js/ |
| H A D | yui-object.js | 27 * @param {Object} obj Prototype object. 31 O = Y.Object = Lang._isNative(Object.create) ? function (obj) { 37 return Object.create(obj); 43 return function (obj) { 44 F.prototype = obj; 98 * `obj.hasOwnProperty()`. 101 * @param {Object} obj Object to test. 106 owns = O.owns = function (obj, key) { 107 return !!obj && hasOwn.call(obj, ke [all...] |
Completed in 149 milliseconds