HomeSort by relevance Sort by last modified time
    Searched defs:Object (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /external/v8/test/mjsunit/regress/
regress-192.js 28 // Test that exceptions are correctly propagated when creating object
33 // UPDATE: This bug report is no longer valid. In ES5, creating object
37 Object.prototype.__defineGetter__("x", function() {});
38 Object.prototype.__defineSetter__("y",
41 // Creating this object literal will *not* throw an exception because we are
regress-1107.js 31 Object.prototype.__defineGetter__(0, function(){});
regress-1130.js 29 // of JS accessors on Object's prototype elements.
31 Object.prototype.__defineGetter__(0, function() { throw 42; } );
regress-1172-bis.js 31 Object.prototype.__defineGetter__(0, function() { throw 42; });
34 Object[0]();
regress-1172.js 33 Object.prototype.__defineGetter__('constructor', function() { throw 42; });
regress-1254366.js 30 Object.prototype.findOrStore = function() {
35 var a = new Object();
regress-191.js 34 Object.prototype.__defineSetter__("x", function() { setterCalled = true; });
38 assertFalse(setterCalled, "accessor setter call on context object");
regress-88591.js 28 // Regression test for a crash. A data property in the global object's
29 // prototype shadowed by a setter in the global object's prototype's
32 Object.prototype.__defineSetter__('x', function(x) { called = true; });
33 Object.prototype.__defineGetter__('x', function () { return 0; });
39 var o = Object.getOwnPropertyDescriptor(this, 'x');
regress-1403.js 31 Object.prototype.__proto__ = { __proto__: null };
regress-1412.js 46 Object.prototype.valueOf.apply(receiver, arguments);
regress-1365.js 36 var valueOf = Object.prototype.valueOf;
37 var hasOwnProperty = Object.prototype.hasOwnProperty;
42 assertEquals(Object.prototype, Object.prototype.valueOf());
46 %OptimizeFunctionOnNextCall(Object.prototype.valueOf);
47 Object.prototype.valueOf();
49 assertEquals(Object.prototype, Object.prototype.valueOf());
54 var valueOf = Object.prototype.valueOf;
55 var hasOwnProperty = Object.prototype.hasOwnProperty
    [all...]
regress-crbug-3184.js 28 Object.extend = function (dest, source) {
33 Object.extend ( Function.prototype,
70 Object.extend( Array.prototype,
  /external/v8/test/mjsunit/
string-fromcharcode.js 33 Object.prototype.fromCharCode = function(x) { return this; };
69 : (num < 9) ? constFun(Object("dummy"))
70 : constFun(Object(42));
71 var expected = (num < 5) ? " " : (num < 9) ? Object("dummy") : Object(42);
try-catch-extension-object.js 30 // Object prototype have no effect.
33 Object.prototype.__defineSetter__("x", function() { setterCalled = true; });
arguments-opt.js 97 // Object access.
129 Object.prototype[5] = 42;
131 Object.prototype[-5] = 87;
obj-construct.js 30 function Object() {
undeletable-functions.js 86 CheckEcmaSemantics(Object.prototype, array, "Object prototype");
88 var old_Object_prototype = Object.prototype;
91 Object.prototype = new_Object_prototype;
92 assertEquals(old_Object_prototype, Object.prototype);
136 var hasOwnProperty = Object.prototype.hasOwnProperty;
  /dalvik/dx/tests/076-dex-synch-and-stack/
Blort.java 20 new Object();
  /external/clang/test/CodeGenCXX/
2007-01-02-UnboundedArray.cpp 7 struct Object {
12 new Object;
  /external/clang/test/Parser/
namelookup-bug-1.c 4 typedef int Object;
6 struct Object *pp;
8 Object staticObject1;
namelookup-bug-2.c 4 typedef int Object;
6 struct Object {int i1; } *P;
9 struct Object { int i2; } *X;
10 Object:
12 Object a;
  /external/v8/test/mjsunit/bugs/
bug-1344252.js 42 // Add a setter for x to Object.prototype and make sure it gets
45 Object.prototype.__defineSetter__('x', function(value) { result_x = value; });
53 var proto = new Object();
69 var o1 = new Object();
70 var o2 = new Object();
74 Object.prototype.__defineSetter__('z', function(value) { result_z = value; });
  /external/jsr305/ri/src/main/java/javax/annotation/meta/
TypeQualifier.java 25 Class<?> applicableTo() default Object.class;
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/GetSet/
getset-004.js 43 // SECTION1: define getter/setter directly on an object (not its prototype)
44 obj = new Object();
74 // SECTION2: define getter/setter in Object.prototype
75 Object.prototype.nameSETS = 0;
76 Object.prototype.nameGETS = 0;
77 Object.prototype.__defineSetter__('name', function(newValue) {this._name=newValue; this.nameSETS++;});
78 Object.prototype.__defineGetter__('name', function() {this.nameGETS++; return this._name;});
80 obj = new Object();
getset-005.js 52 // SECTION1: define getter/setter directly on an object (not its prototype)
53 obj = new Object();
83 // SECTION2: define getter/setter in Object.prototype
84 Object.prototype.nameSETS = 0;
85 Object.prototype.nameGETS = 0;
86 Object.prototype.__defineSetter__(cnName, cnNameSetter);
87 Object.prototype.__defineGetter__(cnName, cnNameGetter);
89 obj = new Object();

Completed in 830 milliseconds

1 2 3 4