HomeSort by relevance Sort by last modified time
    Searched refs:SameValue (Results 1 - 20 of 20) 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]));
test-api.cc     [all...]
  /external/chromium_org/v8/src/
types.cc 388 if (type1->SameValue(Type::Any())) return *type1;
389 if (type2->SameValue(Type::Any())) return *type2;
390 if (type1->SameValue(Type::None())) return *type2;
391 if (type2->SameValue(Type::None())) return *type1;
464 if (type1->SameValue(Type::None())) return *type1;
465 if (type2->SameValue(Type::None())) return *type2;
466 if (type1->SameValue(Type::Any())) return *type2;
467 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 618 if (is_observed && !old_value->SameValue(*value)) {
runtime.js 604 function SameValue(x, y) {
objects.cc     [all...]
objects-inl.h     [all...]
api.cc     [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...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8PromiseCustom.cpp 676 if (promise->SameValue(valuePromise)) {
    [all...]
  /external/chromium_org/v8/include/
v8.h     [all...]

Completed in 1296 milliseconds