Searched defs:__defineSetter__ (Results 1 – 11 of 11) sorted by relevance
/external/chromium_org/v8/test/mjsunit/ |
D | error-constructors.js | 54 ReferenceError.prototype.__defineSetter__('name', fail); method in ReferenceError 55 ReferenceError.prototype.__defineSetter__('message', fail); method in ReferenceError 56 ReferenceError.prototype.__defineSetter__('stack', fail); method in ReferenceError
|
D | indexed-accessors.js | 50 Pair.prototype.__defineSetter__('0', function(x) { this.x = x; }); method in Pair 51 Pair.prototype.__defineSetter__('1', function(y) { this.y = y; }); method in Pair
|
D | setter-on-constructor-prototype.js | 66 C3.prototype.__defineSetter__('x', function(value) { this.y = 23; }); method in C3
|
D | object-define-property.js | 1205 C.prototype.__defineSetter__('x', function(value) { this.y = 23; }); method in C
|
/external/chromium_org/v8/test/mjsunit/regress/ |
D | regress-1160.js | 40 Array.prototype.__defineSetter__(2, function() { }); method in Array
|
D | regress-618.js | 68 C3.prototype.__defineSetter__('x', function(value) { this.y = 23; }); method in C3
|
/external/chromium_org/v8/test/webkit/fast/js/ |
D | object-slow-put.js | 32 Cons.prototype.__defineSetter__("3", function() { ouches++; }); method in Cons
|
D | array-slow-put.js | 29 Array.prototype.__defineSetter__("3", function() { ouches++; }); method in Array
|
D | array-bad-time.js | 36 Array.prototype.__defineSetter__("3", function() { ouches++; }); method in Array
|
D | object-bad-time.js | 39 Cons.prototype.__defineSetter__("3", function() { ouches++; }); method in Cons
|
/external/chromium_org/v8/test/webkit/ |
D | dictionary-no-cache.js | 81 Test.prototype.__defineSetter__("newProperty", function(){ calledNewPrototypeSetter = true; }); method in Test
|