HomeSort by relevance Sort by last modified time
    Searched defs:undetectable (Results 1 - 11 of 11) sorted by null

  /external/v8/test/mjsunit/regress/
regress-674753.js 30 var undetectable = %GetUndetectable(); variable
107 assertTrue(typeof undetectable == 'undefined');
108 assertTrue(typeof undetectable === 'undefined');
109 assertFalse(typeof undetectable != 'undefined');
110 assertFalse(typeof undetectable !== 'undefined');
125 assertTrue(typeof undetectable != 'function');
126 assertTrue(typeof undetectable !== 'function');
127 assertFalse(typeof undetectable == 'function');
128 assertFalse(typeof undetectable === 'function');
159 assertTrue(typeof undetectable != 'object')
    [all...]
  /external/v8/test/mjsunit/
undetectable-compare.js 7 var undetectable = %GetUndetectable(); variable
29 var func = (function eq(a) { return a == undetectable; });
31 (function eq_L0() { return true == undetectable; }),
32 (function eq_L1() { return false == undetectable; }),
33 (function eq_L2() { return null == undetectable; }),
34 (function eq_L3() { return void 0 == undetectable; }),
35 (function eq_L4() { return 0 == undetectable; }),
36 (function eq_L5() { return 0.0 == undetectable; }),
37 (function eq_L6() { return -0 == undetectable; }),
38 (function eq_L7() { return "" == undetectable; }),
    [all...]
  /external/v8/src/arm/
code-stubs-arm.cc 433 // equality. Also handles the undetectable receiver to null/undefined
443 Label object_test, return_equal, return_unequal, undetectable; local
465 __ b(ne, &undetectable);
478 __ bind(&undetectable);
    [all...]
  /external/v8/src/x87/
code-stubs-x87.cc 1016 Label return_equal, return_unequal, undetectable; local
    [all...]
  /external/v8/src/arm64/
code-stubs-arm64.cc 376 // equality. Also handles the undetectable receiver to null/undefined
387 Label object_test, return_equal, return_unequal, undetectable; local
407 __ Tbnz(right_bitfield, MaskToBit(1 << Map::kIsUndetectable), &undetectable);
419 __ Bind(&undetectable);
    [all...]
  /external/v8/src/ia32/
code-stubs-ia32.cc 1309 Label return_equal, return_unequal, undetectable; local
    [all...]
  /external/v8/src/mips/
code-stubs-mips.cc 462 Label object_test, return_equal, return_unequal, undetectable; local
485 __ Branch(&undetectable, ne, at, Operand(zero_reg));
499 __ bind(&undetectable);
    [all...]
  /external/v8/src/mips64/
code-stubs-mips64.cc 458 Label object_test, return_equal, return_unequal, undetectable; local
481 __ Branch(&undetectable, ne, at, Operand(zero_reg));
495 __ bind(&undetectable);
    [all...]
  /external/v8/src/ppc/
code-stubs-ppc.cc 450 // equality. Also handles the undetectable receiver to null/undefined
459 Label object_test, return_equal, return_unequal, undetectable; local
481 __ bne(&undetectable, cr0);
494 __ bind(&undetectable);
    [all...]
  /external/v8/src/s390/
code-stubs-s390.cc 441 // equality. Also handles the undetectable receiver to null/undefined
450 Label object_test, return_equal, return_unequal, undetectable; local
475 __ bne(&undetectable);
488 __ bind(&undetectable);
    [all...]
  /external/v8/src/x64/
code-stubs-x64.cc 1195 Label return_equal, return_unequal, undetectable; local
    [all...]

Completed in 2673 milliseconds