HomeSort by relevance Sort by last modified time
    Searched refs:SameValue (Results 1 - 6 of 6) sorted by null

  /external/v8/test/mjsunit/
samevalue.js 30 // 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(false, false))
    [all...]
  /external/v8/src/
v8natives.js 718 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())) {
    [all...]
runtime.js 600 function SameValue(x, y) {
objects-inl.h     [all...]
objects.h     [all...]
objects.cc 759 bool Object::SameValue(Object* other) {
    [all...]

Completed in 99 milliseconds