HomeSort by relevance Sort by last modified time
    Searched full:holey (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/v8/test/mjsunit/
apply.js 170 var holey = new Array(3);
171 holey[0] = "mor";
172 holey[2] = "er";
174 assertEquals("morseper", String.prototype.concat.apply("", holey),
176 assertEquals("morseper", String.prototype.concat.apply("", holey, 1),
178 assertEquals("morseper", String.prototype.concat.apply("", holey, 1, 2),
180 assertEquals("morseper", String.prototype.concat.apply("", holey, 1, 2, 3),
182 assertEquals("morseper", String.prototype.concat.apply("", holey, 1, 2, 3, 4),
186 primes[1] = holey;
generated-transition-stub.js 78 // Test HOLEY SMI -> HOLEY DOUBLE
166 // Test HOLEY DOUBLE -> HOLEY OBJECT
array-concat.js 186 var holey = [void 0,'a',,'c'].concat(['d',,'f',[0,,2],void 0]) variable
187 assertEquals(9, holey.length); // hole in embedded array is ignored
188 for (var i = 0; i < holey.length; i++) {
190 assertFalse(i in holey);
192 assertTrue(i in holey);
allocation-site-info.js 184 // Case: make sure transitions from packed to holey are tracked
304 b[5] = 1; // boilerplate goes holey
306 a[0] = 3.5; // boilerplate goes holey double
array-constructor-feedback.js 234 // function. Verify that if we ask for a holey array then we deopt.
array-slice.js 294 // Check slicing of holey objects with elements in the prototype
  /external/v8/test/mjsunit/
apply.js 170 var holey = new Array(3);
171 holey[0] = "mor";
172 holey[2] = "er";
174 assertEquals("morseper", String.prototype.concat.apply("", holey),
176 assertEquals("morseper", String.prototype.concat.apply("", holey, 1),
178 assertEquals("morseper", String.prototype.concat.apply("", holey, 1, 2),
180 assertEquals("morseper", String.prototype.concat.apply("", holey, 1, 2, 3),
182 assertEquals("morseper", String.prototype.concat.apply("", holey, 1, 2, 3, 4),
186 primes[1] = holey;
array-concat.js 186 var holey = [void 0,'a',,'c'].concat(['d',,'f',[0,,2],void 0]) variable
187 assertEquals(9, holey.length); // hole in embedded array is ignored
188 for (var i = 0; i < holey.length; i++) {
190 assertFalse(i in holey);
192 assertTrue(i in holey);
  /external/chromium_org/v8/test/mjsunit/regress/
consolidated-holey-load.js 34 var a = [1, 2, , 4]; // Holey Smi elements.
regress-convert-hole2.js 29 // Test adding undefined from hole in double-holey to string.
  /external/chromium_org/v8/src/
elements-kind.h 80 // The number to add to a packed elements kind to reach a holey elements kind
code-stubs.h 1021 KeyedArrayCallStub(bool holey, int argc) : HICStub(), argc_(argc) {
1022 bit_field_ = ContextualBits::encode(false) | HoleyBits::encode(holey);
    [all...]
json-stringifier.h 587 // They resemble the non-holey cases except that a prototype chain lookup
hydrogen.cc     [all...]
objects.cc     [all...]
hydrogen-instructions.h     [all...]
  /external/chromium_org/v8/src/arm/
code-stubs-arm.cc     [all...]
  /external/chromium_org/v8/src/ia32/
code-stubs-ia32.cc     [all...]
  /external/chromium_org/v8/src/mips/
code-stubs-mips.cc     [all...]
  /external/chromium_org/v8/src/x64/
code-stubs-x64.cc     [all...]
  /external/chromium_org/v8/
ChangeLog 867 could result in creating a holey array with a packed elements kind.
972 Fixed bogus deopt in BuildEmitDeepCopy for holey arrays. (Chromium issue
    [all...]

Completed in 244 milliseconds