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

  /external/chromium_org/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/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/chromium_org/v8/test/cctest/
test-symbols.cc 45 CHECK(symbols[i]->SameValue(*symbols[i]));
47 CHECK(!symbols[i]->SameValue(*symbols[j]));
  /external/chromium_org/v8/src/
types.cc 353 if (type1->SameValue(Type::Any())) return *type1;
354 if (type2->SameValue(Type::Any())) return *type2;
355 if (type1->SameValue(Type::None())) return *type2;
356 if (type2->SameValue(Type::None())) return *type1;
429 if (type1->SameValue(Type::None())) return *type1;
430 if (type2->SameValue(Type::None())) return *type2;
431 if (type1->SameValue(Type::Any())) return *type2;
432 if (type2->SameValue(Type::Any())) return *type1;
v8natives.js 733 SameValue(desc.isEnumerable(), current.isEnumerable())) &&
735 SameValue(desc.isConfigurable(), current.isConfigurable())) &&
737 SameValue(desc.isWritable(), current.isWritable())) &&
739 SameValue(desc.getValue(), current.getValue())) &&
741 SameValue(desc.getGet(), current.getGet())) &&
743 SameValue(desc.getSet(), current.getSet()))) {
777 !SameValue(desc.getValue(), current.getValue())) {
787 if (desc.hasSetter() && !SameValue(desc.getSet(), current.getSet())) {
794 if (desc.hasGetter() && !SameValue(desc.getGet(),current.getGet())) {
    [all...]
accessors.cc 505 if (is_observed && !old_value->SameValue(*value)) {
runtime.js 604 function SameValue(x, y) {
objects.cc     [all...]
objects-inl.h     [all...]
objects.h     [all...]
runtime.cc     [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 337 milliseconds