Home
last modified time | relevance | path

Searched defs:__defineSetter__ (Results 1 – 9 of 9) sorted by relevance

/external/v8/test/mjsunit/
Derror-constructors.js37 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
Dindexed-accessors.js50 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
Dsetter-on-constructor-prototype.js66 C3.prototype.__defineSetter__('x', function(value) { this.y = 23; }); method in C3
/external/v8/test/mjsunit/bugs/
Dbug-618.js44 C.prototype.__defineSetter__('x', function(value) { this.y = 23; }); method in C
D618.js68 C3.prototype.__defineSetter__('x', function(value) { this.y = 23; }); method in C3
/external/v8/test/mjsunit/regress/
Dregress-1160.js40 Array.prototype.__defineSetter__(2, function() { }); method in Array
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/GetSet/
Dgetset-005.js120 TestObject.prototype.__defineSetter__(cnName, cnNameSetter); method in TestObject
Dgetset-006.js116 TestObject.prototype.__defineSetter__(cnName, cnNameSetter); method in TestObject
Dgetset-004.js111 TestObject.prototype.__defineSetter__('name', function(newValue) {this._name=newValue; this.nameSET… method in TestObject