Searched refs:SameValue (Results 1 - 9 of 9) sorted by relevance

/external/v8/test/mjsunit/
H A Dsamevalue.js30 // Test the SameValue internal method.
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(fals
[all...]
/external/v8/src/
H A Dv8natives.js718 SameValue(desc.isEnumerable(), current.isEnumerable())) &&
720 SameValue(desc.isConfigurable(), current.isConfigurable())) &&
722 SameValue(desc.isWritable(), current.isWritable())) &&
724 SameValue(desc.getValue(), current.getValue())) &&
726 SameValue(desc.getGet(), current.getGet())) &&
728 SameValue(desc.getSet(), current.getSet()))) {
762 !SameValue(desc.getValue(), current.getValue())) {
772 if (desc.hasSetter() && !SameValue(desc.getSet(), current.getSet())) {
779 if (desc.hasGetter() && !SameValue(desc.getGet(),current.getGet())) {
H A Druntime.js600 function SameValue(x, y) { function
H A Dobjects-inl.h4702 return key->SameValue(other);
H A Dobjects.h961 bool SameValue(Object* other);
H A Dobjects.cc759 bool Object::SameValue(Object* other) { function in class:v8::internal::Object
/external/llvm/include/llvm/MC/
H A DMCDwarf.h269 enum OpType { SameValue, RememberState, RestoreState, Move, RelMove, Escape, enumerator in enum:llvm::MCCFIInstruction::OpType
285 assert(Op == SameValue || Op == Restore);
/external/llvm/lib/MC/
H A DMCStreamer.cpp342 MCCFIInstruction Instruction(MCCFIInstruction::SameValue, Label, Register);
H A DMCDwarf.cpp1006 case MCCFIInstruction::SameValue: {

Completed in 418 milliseconds