HomeSort by relevance Sort by last modified time
    Searched defs:Object (Results 26 - 50 of 154) sorted by null

12 3 4 5 6 7

  /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/v8/test/mjsunit/regress/
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-578775.js 16 Object.prototype.isPrototypeOf.call(__v_0, __v_10);
regress-crbug-3184.js 28 Object.extend = function (dest, source) {
33 Object.extend ( Function.prototype,
70 Object.extend( Array.prototype,
regress-123512.js 39 Object.prototype[0] = 23;
47 Object.prototype.__defineGetter__(0, function() { throw Error(); });
54 // Test the same on boilerplate objects for object literals that contain
63 Object.prototype[0] = 23;
64 Object.prototype.foo = 42;
72 Object.prototype.__defineGetter__(0, function() { throw Error(); });
73 Object.prototype.__defineGetter__('foo', function() { throw Error(); });
  /external/v8/test/mjsunit/
string-fromcharcode.js 54 Object.prototype.fromCharCode = function(x) { return this; };
90 : (num < 9) ? constFun(Object("dummy"))
91 : constFun(Object(42));
92 var expected = (num < 5) ? " " : (num < 9) ? Object("dummy") : Object(42);
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;
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudfront/
object.py 24 class Object(Key):
27 super(Object, self).__init__(bucket, name=name)
31 return '<Object: %s/%s>' % (self.distribution.config.origin, self.name)
43 class StreamingObject(Object):
  /external/clang/test/Parser/
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/jsr305/ri/src/main/java/javax/annotation/meta/
TypeQualifier.java 25 Class<?> applicableTo() default Object.class;
  /external/testng/src/main/java/org/testng/annotations/
Factory.java 8 * as Test classes. The method must return Object[].
38 public Class<?> dataProviderClass() default Object.class;
  /external/v8/test/mjsunit/harmony/
array-concat-object-proto.js 5 // Check that @@isConcatSpreadable is checked when set on Object.prototype
10 var object = {length: 1, '0': 'a'};
16 assertEquals([object], [].concat(object));
17 assertEquals([1, 2, 3, object], array.concat(object));
18 assertEquals([object], Array.prototype.concat.call(object,[]));
19 assertEquals([object, 1, 2, 3], Array.prototype.concat.call(object, array))
    [all...]
array-concat-object-proto-dict-getter.js 5 // Check that @@isConcatSpreadable is checked when set on Object.prototype
8 // Force Object.prototype into dictionary backing store by adding many
11 Object.prototype['generatedProperty'+i] = true;
15 var object = {length: 1, '0': 'a'};
21 assertEquals([object], [].concat(object));
22 assertEquals([1, 2, 3, object], array.concat(object));
23 assertEquals([object], Array.prototype.concat.call(object,[]));
    [all...]
array-concat-object-proto-dict.js 5 // Check that @@isConcatSpreadable is checked when set on Object.prototype
8 // Force Object.prototype into dictionary backing store by adding many
11 Object.prototype['generatedProperty'+i] = true;
15 var object = {length: 1, '0': 'a'};
21 assertEquals([object], [].concat(object));
22 assertEquals([1, 2, 3, object], array.concat(object));
23 assertEquals([object], Array.prototype.concat.call(object,[]));
    [all...]
array-concat-object-proto-generic-dict.js 5 // Check that @@isConcatSpreadable is checked when set on Object.prototype
8 // Force Object.prototype into dictionary backing store by adding many
11 Object.prototype['generatedProperty'+i] = true;
15 var object = {length: 1, '0': 'a'};
31 assertEquals([object], [].concat(object));
32 assertEquals([1, 2, 3, object], array.concat(object));
33 assertEquals([object], Array.prototype.concat.call(object,[]));
    [all...]
  /packages/services/Car/car-lib/src/android/car/annotation/
ValueTypeDef.java 31 Class type() default Object.class;
  /packages/services/Car/car-support-lib/src/android/support/car/annotation/
ValueTypeDef.java 31 Class type() default Object.class;
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/
OISObject.h 32 class _OISExport Object
35 virtual ~Object() {}
46 /** @remarks Returns this input object's creator */
71 Object(const std::string &vendor, Type iType, bool buffered,
82 //! Type of controller object
91 //! The creator who created this object
  /art/test/551-invoke-super/src/
Main.java 28 m.invoke(c.newInstance(), new Object[0]);
  /art/test/552-invoke-non-existent-super/src/
Main.java 28 m.invoke(c.newInstance(), new Object[0]);
  /art/test/973-default-multidex/src/
Main.java 24 System.out.println(m.invoke(c.newInstance(), new Object[0]));
  /external/v8/test/mjsunit/es6/
string-endswith.js 69 msg: "Empty object {}", val: {}
136 Object.prototype[1] = 2; // try to break `arguments[1]`
string-startswith.js 69 msg: "Empty object {}", val: {}
135 Object.prototype[1] = 2; // try to break `arguments[1]`
  /external/v8/test/webkit/
array-holes.js 105 Object.prototype[1] = "peekaboo";
134 delete Object.prototype[1];

Completed in 2042 milliseconds

12 3 4 5 6 7