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

12 3 4 5 6

  /dalvik/dx/tests/076-dex-synch-and-stack/
Blort.java 20 new Object();
  /external/chromium_org/v8/test/mjsunit/
parallel-initial-prototype-change.js 44 // Optimized code of f1 depends on initial object and array maps.
48 Object.prototype[1] = 1.5; // Invalidate current initial object map.
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);
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;
  /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/chromium_org/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/chromium_org/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-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/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-crbug-3184.js 28 Object.extend = function (dest, source) {
33 Object.extend ( Function.prototype,
70 Object.extend( Array.prototype,
  /external/jsr305/ri/src/main/java/javax/annotation/meta/
TypeQualifier.java 25 Class<?> applicableTo() default Object.class;
  /external/v8/test/mjsunit/
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;
  /external/chromium_org/tools/gyp/test/win/
gyptest-cl-function-level-linking.py 31 def Object(proj, obj):
41 test.built_file_path(Object('test_fll_on', 'function-level-linking.obj'),
47 test.built_file_path(Object('test_fll_off', 'function-level-linking.obj'),
  /external/chromium_org/v8/test/webkit/
array-holes.js 105 Object.prototype[1] = "peekaboo";
134 delete Object.prototype[1];
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
utilities.js 31 * @param {Object} obj
34 Object.isEmpty = function(obj)
42 * @param {!Object.<string,T>} obj
46 Object.values = function(obj)
48 var result = Object.keys(obj);
339 Object.defineProperty(Array.prototype, "remove",
364 Object.defineProperty(Array.prototype, "keySet",
367 * @return {!Object.<string, boolean>}
379 Object.defineProperty(Array.prototype, "rotate",
396 Object.defineProperty(Uint32Array.prototype, "sort",
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
string-tagcloud.js 38 if (!Object.prototype.toJSONString) {
49 case 'object':
99 Object.prototype.toJSONString = function (w) {
111 case 'object':
135 Object.prototype.hasOwnProperty.apply(this, [k])) {
138 case 'object':
182 if (v && typeof v === 'object') {
184 if (Object.prototype.hasOwnProperty.apply(v, [i])) {
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
string-tagcloud.js 38 if (!Object.prototype.toJSONString) {
49 case 'object':
99 Object.prototype.toJSONString = function (w) {
111 case 'object':
135 Object.prototype.hasOwnProperty.apply(this, [k])) {
138 case 'object':
182 if (v && typeof v === 'object') {
184 if (Object.prototype.hasOwnProperty.apply(v, [i])) {
    [all...]

Completed in 1741 milliseconds

12 3 4 5 6