Home
last modified time | relevance | path

Searched refs:SameValue (Results 1 – 6 of 6) sorted by relevance

/external/v8/test/mjsunit/
Dsamevalue.js35 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/
Dv8natives.js577 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())) {
Druntime.js576 function SameValue(x, y) { class
/external/llvm/include/llvm/MC/
DMCDwarf.h232 enum OpType { SameValue, Remember, Restore, Move, RelMove }; enumerator
246 assert(Op == SameValue); in MCCFIInstruction()
/external/llvm/lib/MC/
DMCStreamer.cpp315 MCCFIInstruction Instruction(MCCFIInstruction::SameValue, Label, Register); in EmitCFISameValue()
DMCDwarf.cpp650 case MCCFIInstruction::SameValue: { in EmitCFIInstruction()