/third_party/node/deps/v8/src/compiler/ |
H A D | type-narrowing-reducer.cc | 55 DECLARE_CASE(SameValue) in Reduce()
|
H A D | operation-typer.h | 61 Type SameValue(Type lhs, Type rhs);
|
H A D | operation-typer.cc | 1225 Type OperationTyper::SameValue(Type lhs, Type rhs) { in SameValue() function in v8::internal::compiler::OperationTyper 1247 // SameValue and SamevalueNumbersOnly only differ in treatment of in SameValueNumbersOnly() 1248 // strings and biginits. Since the SameValue typer does not do anything in SameValueNumbersOnly() 1250 return SameValue(lhs, rhs); in SameValueNumbersOnly()
|
H A D | simplified-operator.h | 818 const Operator* SameValue();
|
H A D | opcodes.h | 310 V(SameValue) \
|
H A D | simplified-operator.cc | 790 V(SameValue, Operator::kCommutative, 2, 0) \
|
H A D | typer.cc | 2015 return t->operation_typer()->SameValue(lhs, rhs); in SameValueTyper()
|
H A D | js-native-context-specialization.cc | 2473 graph()->NewNode(simplified()->SameValue(), current_value, value); in BuildPropertyStore()
|
H A D | simplified-lowering.cc | 425 DECLARE_CASE(SameValue) in UpdateFeedbackType()
|
/third_party/node/deps/v8/include/ |
H A D | v8-value.h | 425 bool SameValue(Local<Value> that) const;
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-value.h | 435 bool SameValue(Local<Value> that) const;
|
/third_party/node/src/ |
H A D | heap_utils.cc | 72 return a->JSValue()->SameValue(b->JSValue()); in operator ()()
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-arraybuffer.cc | 271 // * [AB] If SameValue(new, O) is true, throw a TypeError exception. in SliceHelper() 272 if (!is_shared && new_->SameValue(*args.receiver())) { in SliceHelper()
|
H A D | accessors.cc | 171 DCHECK(Utils::OpenHandle(*name)->SameValue( in ArrayLengthSetter()
|
H A D | builtins-definitions.h | 703 TFC(SameValue, Compare) \
|
H A D | builtins-internal-gen.cc | 999 TF_BUILTIN(SameValue, CodeStubAssembler) { in TF_BUILTIN()
|
/third_party/node/deps/v8/src/objects/ |
H A D | hash-table-inl.h | 276 return key->SameValue(other); in IsMatch()
|
H A D | js-array-buffer.cc | 38 // 4. If SameValue(! ToString(n), argument) is false, return undefined. in CanonicalNumericIndexString() 41 if (!str->SameValue(*key)) return false; in CanonicalNumericIndexString()
|
H A D | module.cc | 439 // SameValue(Desc.[[Value]], current.[[Value]]). in DefineOwnProperty() 445 (desc->has_value() && !desc->value()->SameValue(*current.value()))) { in DefineOwnProperty()
|
H A D | objects.h | 598 V8_EXPORT_PRIVATE bool SameValue(Object other); 600 // A part of SameValue which handles Number vs. Number case. 605 // +0 and -0 are treated equal. Everything else is the same as SameValue.
|
H A D | js-objects.cc | 265 if (search_element->SameValue(*excluded_properties->at(i))) { in HasExcludedProperty() 1497 (current->has_value() && current->value()->SameValue(*desc->value()))) && in ValidateAndApplyPropertyDescriptor() 1501 (current->has_get() && current->get()->SameValue(*desc->get()))) && in ValidateAndApplyPropertyDescriptor() 1503 (current->has_set() && current->set()->SameValue(*desc->set())))) { in ValidateAndApplyPropertyDescriptor() 1517 // ! SameValue(Desc.[[Enumerable]], current.[[Enumerable]]) is false, return in ValidateAndApplyPropertyDescriptor() 1534 // 6. Else if ! SameValue(!IsDataDescriptor(current), in ValidateAndApplyPropertyDescriptor() 1575 // 7a ii. If Desc.[[Value]] is present and SameValue(Desc.[[Value]], in ValidateAndApplyPropertyDescriptor() 1577 if (desc->has_value() && !desc->value()->SameValue(*current->value())) { in ValidateAndApplyPropertyDescriptor() 1592 // 8a i. If Desc.[[Set]] is present and SameValue(Desc.[[Set]], in ValidateAndApplyPropertyDescriptor() 1594 if (desc->has_set() && !desc->set()->SameValue(*curren in ValidateAndApplyPropertyDescriptor() [all...] |
H A D | objects.cc | 1254 // 10.a.i. If SameValue(trapResult, targetDesc.[[Value]]) is false, in CheckGetSetTrapResult() 1259 !trap_result->SameValue(*target_desc.value()); in CheckGetSetTrapResult() 1390 // 12. If SameValue(handlerProto, targetProto) is false, throw a TypeError. in GetPrototype() 1391 if (!handler_proto->SameValue(*target_proto)) { in GetPrototype() 1641 bool Object::SameValue(Object other) { in SameValue() function in v8::internal::Object 5231 // 13. If SameValue(V, targetProto) is false, throw a TypeError exception. in SetPrototype() 5232 if (bool_trap_result && !value->SameValue(*target_proto)) { in SetPrototype() 5491 // 7. If SameValue(resolution, promise) is true, then in Resolve()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
H A D | HexagonConstExtenders.cpp | 1463 auto SameValue = [&EV,this,IsStack](unsigned I) { in assignInits() local 1468 if (all_of(P.second, SameValue)) { in assignInits()
|
/third_party/node/deps/v8/src/wasm/ |
H A D | c-api.cc | 949 return impl(this)->v8_object()->SameValue(*impl(that)->v8_object());
|
/third_party/node/deps/v8/src/api/ |
H A D | api.cc | 4243 bool Value::SameValue(Local<Value> that) const { in SameValue() function in v8::Value 4246 return self->SameValue(*other); in SameValue()
|