Home
last modified time | relevance | path

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

/external/v8/test/mjsunit/
Derror-constructors.js52 ReferenceError.prototype.__defineSetter__('name', fail); method in ReferenceError
53 ReferenceError.prototype.__defineSetter__('message', fail); method in ReferenceError
54 ReferenceError.prototype.__defineSetter__('stack', 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
Dobject-define-property.js1205 C.prototype.__defineSetter__('x', function(value) { this.y = 23; }); method in C
/external/v8/test/mjsunit/regress/
Dregress-crbug-513602.js19 Parent.prototype.__defineSetter__("foo", function() { print("A"); }); method in Parent
20 Parent.prototype.__defineSetter__("foo", function() { print("B"); }); method in Parent
Dregress-1160.js40 Array.prototype.__defineSetter__(2, function() { }); method in Array
Dregress-618.js68 C3.prototype.__defineSetter__('x', function(value) { this.y = 23; }); method in C3
/external/v8/test/webkit/fast/js/
Dobject-slow-put.js32 Cons.prototype.__defineSetter__("3", function() { ouches++; }); method in Cons
Darray-slow-put.js29 Array.prototype.__defineSetter__("3", function() { ouches++; }); method in Array
Darray-bad-time.js36 Array.prototype.__defineSetter__("3", function() { ouches++; }); method in Array
Dobject-bad-time.js39 Cons.prototype.__defineSetter__("3", function() { ouches++; }); method in Cons
/external/v8/test/webkit/
Ddictionary-no-cache.js81 Test.prototype.__defineSetter__("newProperty", function(){ calledNewPrototypeSetter = true; }); method in Test
/external/v8/test/mjsunit/harmony/
Dreflect-define-property.js1114 C.prototype.__defineSetter__('x', function(value) { this.y = 23; }); method in C