Searched defs:__defineSetter__ (Results 1 - 15 of 15) sorted by relevance

/external/v8/test/mjsunit/bugs/
H A Dbug-618.js44 C.prototype.__defineSetter__('x', function(value) { this.y = 23; });
H A D618.js68 C3.prototype.__defineSetter__('x', function(value) { this.y = 23; });
83 C4.prototype.__proto__.__defineSetter__('x', function(value) { this.y = 23; });
H A Dbug-1344252.js45 Object.prototype.__defineSetter__('x', function(value) { result_x = value; });
54 proto.__defineSetter__('y', function (value) { result_y = value; });
74 Object.prototype.__defineSetter__('z', function(value) { result_z = value; });
/external/v8/test/mjsunit/regress/
H A Dregress-1151.js31 __defineSetter__.__proto__ = function() {};
32 __defineSetter__['prototype']
H A Dregress-1160.js40 Array.prototype.__defineSetter__(2, function() { });
H A Dregress-191.js34 Object.prototype.__defineSetter__("x", function() { setterCalled = true; });
H A Dregress-192.js38 Object.prototype.__defineSetter__("y",
H A Dregress-88591.js32 Object.prototype.__defineSetter__('x', function(x) { called = true; });
/external/v8/test/mjsunit/
H A Dindexed-accessors.js36 o.__defineSetter__('0', function(y) { o.x = y; });
50 Pair.prototype.__defineSetter__('0', function(x) { this.x = x; });
51 Pair.prototype.__defineSetter__('1', function(y) { this.y = y; });
92 q1.__defineSetter__('0', function() {q1.b = 17;});
104 __defineSetter__("0", function() {});
H A Dtry-catch-extension-object.js33 Object.prototype.__defineSetter__("x", function() { setterCalled = true; });
H A Derror-constructors.js37 ReferenceError.prototype.__defineSetter__('stack', fail);
38 ReferenceError.prototype.__defineSetter__('message', fail);
39 ReferenceError.prototype.__defineSetter__('type', fail);
40 ReferenceError.prototype.__defineSetter__('arguments', fail);
H A Dsetter-on-constructor-prototype.js66 C3.prototype.__defineSetter__('x', function(value) { this.y = 23; });
83 C4.prototype.__proto__.__defineSetter__('x', function(value) { this.y = 23; });
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/GetSet/
H A Dgetset-004.js22 * SUMMARY: Testing obj.__defineSetter__(), obj.__defineGetter__()
28 var summary = 'Testing obj.__defineSetter__(), obj.__defineGetter__()';
47 obj.__defineSetter__('name', function(newValue) {this._name=newValue; this.nameSETS++;});
77 Object.prototype.__defineSetter__('name', function(newValue) {this._name=newValue; this.nameSETS++;});
111 TestObject.prototype.__defineSetter__('name', function(newValue) {this._name=newValue; this.nameSETS++;});
H A Dgetset-005.js22 * SUMMARY: Testing obj.__defineSetter__(), obj.__defineGetter__()
31 var summary = 'Testing obj.__defineSetter__(), obj.__defineGetter__()';
56 obj.__defineSetter__(cnName, cnNameSetter);
86 Object.prototype.__defineSetter__(cnName, cnNameSetter);
120 TestObject.prototype.__defineSetter__(cnName, cnNameSetter);
H A Dgetset-006.js61 obj.__defineSetter__(cnName, cnNameSetter);
86 Object.prototype.__defineSetter__(cnName, cnNameSetter);
116 TestObject.prototype.__defineSetter__(cnName, cnNameSetter);

Completed in 207 milliseconds