Home
last modified time | relevance | path

Searched refs:StrictEquals (Results 1 – 15 of 15) sorted by relevance

/third_party/node/src/
Dprocess_wrap.cc120 if (type->StrictEquals(env->ignore_string())) { in ParseStdioOptions()
122 } else if (type->StrictEquals(env->pipe_string())) { in ParseStdioOptions()
126 } else if (type->StrictEquals(env->overlapped_string())) { in ParseStdioOptions()
131 } else if (type->StrictEquals(env->wrap_string())) { in ParseStdioOptions()
Dspawn_sync.cc895 if (js_type->StrictEquals(env()->ignore_string())) { in ParseStdioOption()
898 } else if (js_type->StrictEquals(env()->pipe_string())) { in ParseStdioOption()
927 } else if (js_type->StrictEquals(env()->inherit_string()) || in ParseStdioOption()
928 js_type->StrictEquals(env()->fd_string())) { in ParseStdioOption()
Dnode_file-inl.h282 if (value->StrictEquals(env->fs_use_promises_symbol())) { in GetReqWrap()
Djs_native_api_v8.cc1476 *result = a->StrictEquals(b); in napi_strict_equals()
/third_party/node/deps/v8/src/runtime/
Druntime-operators.cc48 return isolate->heap()->ToBoolean(x.StrictEquals(y)); in RUNTIME_FUNCTION()
56 return isolate->heap()->ToBoolean(!x.StrictEquals(y)); in RUNTIME_FUNCTION()
Druntime-array.cc419 if (search_element->StrictEquals(*element_k)) { in RUNTIME_FUNCTION()
/third_party/node/test/addons/new-target/
Dbinding.cc9 assert(!args.This()->StrictEquals(args.NewTarget())); in NewClass()
/third_party/node/deps/v8/include/
Dv8-value.h424 bool StrictEquals(Local<Value> that) const;
/third_party/node/deps/v8/src/extensions/
Dgc-extension.cc38 return Just<bool>(maybe_property.ToLocalChecked()->StrictEquals( in IsProperty()
/third_party/node/deps/v8/src/codegen/
Dcompilation-cache.cc156 if (!host_defined_options->get(i).StrictEquals(script_options->get(i))) { in HasOrigin()
/third_party/node/deps/v8/src/objects/
Dobjects.h399 V8_EXPORT_PRIVATE bool StrictEquals(Object that);
Delements.cc530 if (value->StrictEquals(*element_k)) return Just<int64_t>(k); in IndexOfValueSlowPath()
1821 if (value->StrictEquals(element_k)) { in IndexOfValueImpl()
1837 if (value->StrictEquals(*element_k)) return Just<int64_t>(k); in IndexOfValueImpl()
2619 if (value.StrictEquals(elements.get(static_cast<uint32_t>(k)))) { in IndexOfValueImpl()
4683 if (value->StrictEquals(*element_k)) { in IndexOfValueImpl()
4691 } else if (value->StrictEquals(*element_k)) { in IndexOfValueImpl()
Dobjects.cc858 bool Object::StrictEquals(Object that) { in StrictEquals() function in v8::internal::Object
/third_party/node/deps/v8/src/d8/
Dd8.cc677 return array->Get(context, 1).As<String>()->StrictEquals(resource_name); in IsValidHostDefinedOptions()
3798 DCHECK(value->StrictEquals(expected)); in Send()
/third_party/node/deps/v8/src/api/
Dapi.cc4237 bool Value::StrictEquals(Local<Value> that) const { in StrictEquals() function in v8::Value
4240 return self->StrictEquals(*other); in StrictEquals()