Home
last modified time | relevance | path

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

/third_party/node/deps/npm/node_modules/es-abstract/
Des5.js63 SameValue: function SameValue(x, y) {
Des2016.js12 return this.SameValue(x, y);
Des2015.js188 if (this.SameValue(this.ToString(n), argument)) { return n; }
/third_party/node/deps/npm/node_modules/es-abstract/operations/
D2015.js35 SameValue: 'https://ecma-international.org/ecma-262/6.0/#sec-samevalue', property
D2016.js35 SameValue: 'https://ecma-international.org/ecma-262/7.0/#sec-samevalue', property
D2017.js36 SameValue: 'https://ecma-international.org/ecma-262/8.0/#sec-samevalue', property
/third_party/node/deps/npm/node_modules/es-abstract/test/
Des5.js192 t.equal(true, ES.SameValue(NaN, NaN), 'NaN is SameValue as NaN');
193 t.equal(false, ES.SameValue(0, -0), '+0 is not SameValue as -0');
195 t.equal(val === val, ES.SameValue(val, val), '"' + val + '" is SameValue to itself');
Dtests.js384 t.equal(true, ES.SameValue(NaN, NaN), 'NaN is SameValue as NaN');
385 t.equal(false, ES.SameValue(0, -0), '+0 is not SameValue as -0');
387 t.equal(val === val, ES.SameValue(val, val), debug(val) + ' is SameValue to itself');
/third_party/node/doc/api/
Dassert.md476 * Primitive values are compared using the [SameValue Comparison][], used by
529 // OK, because of the SameValue comparison
545 // Different zeros using the SameValue Comparison:
1187 determined by the [SameValue Comparison][].
1366 determined by the [SameValue Comparison][].
1601 [SameValue Comparison]: https://tc39.github.io/ecma262/#sec-samevalue
/third_party/node/src/
Dheap_utils.cc57 return a->JSValue()->SameValue(b->JSValue()); in operator ()()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonConstExtenders.cpp1463 auto SameValue = [&EV,this,IsStack](unsigned I) { in assignInits() local
1468 if (all_of(P.second, SameValue)) { in assignInits()