Searched defs:__defineSetter__ (Results 1 – 9 of 9) sorted by relevance
/external/v8/test/mjsunit/ |
D | error-constructors.js | 37 ReferenceError.prototype.__defineSetter__('stack', fail); method in ReferenceError 38 ReferenceError.prototype.__defineSetter__('message', fail); method in ReferenceError 39 ReferenceError.prototype.__defineSetter__('type', fail); method in ReferenceError 40 ReferenceError.prototype.__defineSetter__('arguments', 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
|
/external/v8/test/mjsunit/bugs/ |
D | bug-618.js | 44 C.prototype.__defineSetter__('x', function(value) { this.y = 23; }); method in C
|
D | 618.js | 68 C3.prototype.__defineSetter__('x', function(value) { this.y = 23; }); method in C3
|
/external/v8/test/mjsunit/regress/ |
D | regress-1160.js | 40 Array.prototype.__defineSetter__(2, function() { }); method in Array
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/GetSet/ |
D | getset-005.js | 120 TestObject.prototype.__defineSetter__(cnName, cnNameSetter); method in TestObject
|
D | getset-006.js | 116 TestObject.prototype.__defineSetter__(cnName, cnNameSetter); method in TestObject
|
D | getset-004.js | 111 TestObject.prototype.__defineSetter__('name', function(newValue) {this._name=newValue; this.nameSET… method in TestObject
|