Searched refs:SameValue (Results 1 – 6 of 6) sorted by relevance
/external/v8/test/mjsunit/ |
D | samevalue.js | 35 assertTrue(natives.SameValue(0, 0)); 36 assertTrue(natives.SameValue(+0, +0)); 37 assertTrue(natives.SameValue(-0, -0)); 38 assertTrue(natives.SameValue(1, 1)); 39 assertTrue(natives.SameValue(2, 2)); 40 assertTrue(natives.SameValue(-1, -1)); 41 assertTrue(natives.SameValue(0.5, 0.5)); 42 assertTrue(natives.SameValue(true, true)); 43 assertTrue(natives.SameValue(false, false)); 44 assertTrue(natives.SameValue(NaN, NaN)); [all …]
|
/external/v8/src/ |
D | v8natives.js | 577 SameValue(desc.isEnumerable(), current.isEnumerable())) && 579 SameValue(desc.isConfigurable(), current.isConfigurable())) && 581 SameValue(desc.isWritable(), current.isWritable())) && 583 SameValue(desc.getValue(), current.getValue())) && 585 SameValue(desc.getGet(), current.getGet())) && 587 SameValue(desc.getSet(), current.getSet()))) { 621 !SameValue(desc.getValue(), current.getValue())) { 631 if (desc.hasSetter() && !SameValue(desc.getSet(), current.getSet())) { 638 if (desc.hasGetter() && !SameValue(desc.getGet(),current.getGet())) {
|
D | runtime.js | 576 function SameValue(x, y) { class
|
/external/llvm/include/llvm/MC/ |
D | MCDwarf.h | 232 enum OpType { SameValue, Remember, Restore, Move, RelMove }; enumerator 246 assert(Op == SameValue); in MCCFIInstruction()
|
/external/llvm/lib/MC/ |
D | MCStreamer.cpp | 315 MCCFIInstruction Instruction(MCCFIInstruction::SameValue, Label, Register); in EmitCFISameValue()
|
D | MCDwarf.cpp | 650 case MCCFIInstruction::SameValue: { in EmitCFIInstruction()
|