Lines Matching refs:property

136       var property = properties[i], value = source[property];
142 })(property).wrap(method);
147 this.prototype[property] = value;
195 for (var property in source)
196 destination[property] = source[property];
288 for (var property in object) {
289 if (object.hasOwnProperty(property)) {
290 results.push(property);
298 for (var property in object)
299 results.push(object[property]);
972 function pluck(property) { argument
975 results.push(value[property]);
2124 var property = pair.first(),
2126 value = (element[property] || '').toString();
2132 recursivelyCollect: function(element, property, maximumLength) { argument
2137 while (element = element[property]) {
2390 for (var property in styles)
2391 if (property == 'opacity') element.setOpacity(styles[property]);
2393 elementStyle[(property == 'float' || property == 'cssFloat') ?
2395 property] = styles[property];
2521 return properties.inject(dim, function(memo, property) { argument
2522 var val = proceed(element, property);
2903 for (var property in methods) {
2904 var value = methods[property];
2905 if (Object.isFunction(value) && !(property in element))
2906 element[property] = value.methodize();
3002 for (var property in methods) {
3003 var value = methods[property];
3005 if (!onlyIfAbsent || !(property in destination))
3006 destination[property] = value.methodize();
3075 var B = Prototype.Browser, doc = document, element, property = {}; variable
3090 property[D] = 'client' + D;
3092 viewport['get' + D] = function() { return element[property[D]] };
3186 function getPixelValue(value, property, context) { argument
3190 value = element.getStyle(property);
3220 var isHorizontal = property.include('left') || property.include('right') ||
3221 property.include('width');
3223 var isVertical = property.include('top') || property.include('bottom') ||
3224 property.include('height');
3285 Element.Layout.PROPERTIES.each( function(property) { argument
3286 this._set(property, null);
3298 _set: function(property, value) { argument
3299 return Hash.prototype.set.call(this, property, value);
3302 set: function(property, value) { argument
3306 get: function($super, property) { argument
3307 var value = $super(property);
3308 return value === null ? this._compute(property) : value;
3378 _compute: function(property) { argument
3380 if (!(property in COMPUTATIONS)) {
3384 return this._set(property, COMPUTATIONS[property].call(this, this.element));
3655 function measure(element, property) { argument
3656 return $(element).getLayout().get(property);