HomeSort by relevance Sort by last modified time
    Searched refs:obj4 (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/v8/test/cctest/
test-ordered-hash-table.cc 82 Handle<JSObject> obj4 = factory->NewJSObjectFromMap(map); local
83 ordered_set = OrderedHashSet::Add(ordered_set, obj4);
88 CHECK(ordered_set->Contains(obj4));
149 Handle<JSObject> obj4 = factory->NewJSObjectFromMap(map); local
151 ordered_map = OrderedHashMap::Put(ordered_map, obj4, val4);
156 CHECK(ordered_map->Lookup(obj4)->SameValue(*val4));
test-heap-profiler.cc 1788 v8::Local<v8::Object> obj4 = js_global->Get(v8_str("obj4")).As<v8::Object>(); local
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
proto-chain-constant.js 33 var obj4 = c(null, { f4: { value: function() { return 4; }, writable: true }}); variable
34 var obj3 = c(obj4, { f3: { value: function() { return 3; }, writable: true }});
45 obj4.f4 = function() { return 5; };
proto-chain-load.js 32 var obj4 = Object.create(null, { f4: {value: 4} });
33 var obj3 = Object.create(obj4, { f3: {value: 3} });
  /external/chromium_org/v8/test/mjsunit/
object-seal.js 186 var obj4 = {};
187 Object.defineProperty(obj4, 'x', {configurable: true, writable: false});
188 Object.defineProperty(obj4, 'y', {configurable: false, writable: false});
189 Object.preventExtensions(obj4);
191 assertFalse(Object.isSealed(obj4));
194 var obj4 = {};
195 assertTrue(obj4 === Object.seal(obj4));
accessor-map-sharing.js 38 var obj1, obj2, obj3, obj4;
183 obj4 = Object.create(obj2);
184 assertTrue(%HaveSameMap(obj3, obj4));
191 obj4 = Object.create(obj2);
192 assertTrue(%HaveSameMap(obj3, obj4));
object-freeze.js 176 var obj4 = {};
177 Object.defineProperty(obj4, 'x', {configurable: false, writable: true});
178 Object.defineProperty(obj4, 'y', {configurable: false, writable: false});
179 Object.preventExtensions(obj4);
181 assertFalse(Object.isFrozen(obj4));
object-define-property.js 444 var obj4 = {};
446 obj4.bar = func;
447 assertEquals(42, obj4.bar());
449 Object.defineProperty(obj4, "bar", accessorConfigurable);
450 desc = Object.getOwnPropertyDescriptor(obj4, "bar");
457 assertEquals(1, obj4.bar = 1);
459 assertEquals(5, obj4.bar);
463 obj4.bar();
    [all...]

Completed in 317 milliseconds