HomeSort by relevance Sort by last modified time
    Searched full:__definesetter__ (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/webkit/Source/WebCore/manual-tests/inspector-wrappers/
inspector-treeElementIdentifier.html 11 document.body.__defineSetter__("__treeElementIdentifier", function(val) {
  /external/v8/test/mjsunit/
indexed-accessors.js 36 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() {});
error-constructors.js 37 ReferenceError.prototype.__defineSetter__('stack', fail);
38 ReferenceError.prototype.__defineSetter__('message', fail);
39 ReferenceError.prototype.__defineSetter__('type', fail);
40 ReferenceError.prototype.__defineSetter__('arguments', fail);
global-accessors.js 32 __defineSetter__('x', function(x) { x_ = x; });
35 __defineSetter__('y', function(x) { });
setter-on-constructor-prototype.js 66 C3.prototype.__defineSetter__('x', function(value) { this.y = 23; });
83 C4.prototype.__proto__.__defineSetter__('x', function(value) { this.y = 23; });
try-catch-extension-object.js 33 Object.prototype.__defineSetter__("x", function() { setterCalled = true; });
accessors-on-global-object.js 53 __defineSetter__("y", function(value) { setter_y = 2 * value; });
  /external/v8/test/mjsunit/regress/
regress-1170.js 30 __proto__.__defineSetter__("a", function(v) { setter_value = v; });
44 __proto__.__defineSetter__("b", function(v) { assertUnreachable(); });
63 __proto__.__defineSetter__("c", function(v) { throw 42; });
regress-1119.js 31 __proto__.__defineSetter__("x", function() { hasBeenInvoked = true; });
32 __proto__.__defineSetter__("y", function() { throw 'exception'; });
regress-1151.js 31 __defineSetter__.__proto__ = function() {};
32 __defineSetter__['prototype']
regress-798.js 40 x.__defineSetter__("a", function(val) {
67 x.__defineSetter__("b", setB);
regress-1160.js 40 Array.prototype.__defineSetter__(2, function() { });
regress-1213575.js 31 this.__defineSetter__('x', function(value) { assertTrue(value === 1); });
regress-191.js 34 Object.prototype.__defineSetter__("x", function() { setterCalled = true; });
regress-394.js 40 __defineSetter__('x',function(){});
regress-874.js 33 x.__defineSetter__(0, setter);
regress-88591.js 32 Object.prototype.__defineSetter__('x', function(x) { called = true; });
  /external/v8/test/mjsunit/compiler/
global-accessors.js 37 this.__defineSetter__('x', f);
44 this.__defineSetter__('y', f);
  /external/v8/test/mjsunit/bugs/
bug-1344252.js 45 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; });
618.js 68 C3.prototype.__defineSetter__('x', function(value) { this.y = 23; });
83 C4.prototype.__proto__.__defineSetter__('x', function(value) { this.y = 23; });
bug-618.js 44 C.prototype.__defineSetter__('x', function(value) { this.y = 23; });
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/GetSet/
getset-004.js 22 * 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++;});
getset-005.js 22 * 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);
getset-006.js 61 obj.__defineSetter__(cnName, cnNameSetter);
86 Object.prototype.__defineSetter__(cnName, cnNameSetter);
116 TestObject.prototype.__defineSetter__(cnName, cnNameSetter);
  /external/webkit/Source/JavaScriptCore/runtime/
CommonIdentifiers.h 31 macro(__defineSetter__) \

Completed in 2017 milliseconds

1 2 3