/third_party/node/deps/v8/src/objects/ |
H A D | template-objects.cc | 58 JSObject::SetIntegrityLevel(raw_object, FROZEN, kThrowOnError).ToChecked(); in GetTemplateObject() 68 Just(kThrowOnError)) in GetTemplateObject() 72 JSObject::SetIntegrityLevel(template_object, FROZEN, kThrowOnError) in GetTemplateObject()
|
H A D | bigint.h | 234 ShouldThrow should_throw = kThrowOnError);
|
H A D | js-objects.cc | 196 ShouldThrow::kThrowOnError; in CheckPrivateNameStore() 375 Just(ShouldThrow::kThrowOnError)); in FastAssign() 393 CHECK(JSObject::CreateDataProperty(&it, prop_value, Just(kThrowOnError)) in FastAssign() 487 Just(ShouldThrow::kThrowOnError)), in SetOrCopyDataProperties() 493 CHECK(JSObject::CreateDataProperty(&it, prop_value, Just(kThrowOnError)) in SetOrCopyDataProperties() 958 is_sloppy(language_mode) ? kDontThrow : kThrowOnError; in DeleteProperty() 1046 Just(kThrowOnError)); in DefineProperty() 1121 desc->name(), desc, Just(kThrowOnError)); in DefineProperties() 1936 Just(kThrowOnError)), in SetIntegrityLevel() 1954 DefineOwnProperty(isolate, receiver, key, &desc, Just(kThrowOnError)), in SetIntegrityLevel() [all...] |
H A D | module.cc | 356 JSObject::PreventExtensions(ns, kThrowOnError).ToChecked(); in GetModuleNamespace()
|
H A D | js-temporal-objects.cc | 1542 Just(kThrowOnError)) in PrepareTemporalFieldsOrPartial() 2968 isolate, merged, next_key_string, prop_value, Just(kThrowOnError)); in DefaultMergeFields() 3396 UnitToString(isolate, largest_unit), Just(kThrowOnError)) in MergeLargestUnitOption() 5708 Just(kThrowOnError)) \ 5726 Just(kThrowOnError)) in GetISOFields() 5849 Just(kThrowOnError)) in GetISOFields() 5937 Just(kThrowOnError)) in GetISOFields() 6010 Just(kThrowOnError)) in GetISOFields() 6129 iso8601_calendar, Just(kThrowOnError)) in GetISOFields() 6387 field, Just(kThrowOnError)) \ in GetISOFields() [all...] |
H A D | objects.cc | 141 if (mode == LanguageMode::kStrict) return kThrowOnError; in GetShouldThrow() 158 return is_sloppy(mode) ? kDontThrow : kThrowOnError; in GetShouldThrow() 2611 (GetShouldThrow(isolate, should_throw) == ShouldThrow::kThrowOnError)) { in CheckContextualStoreToJSGlobalObject() 2757 should_throw == kThrowOnError in WriteToReadOnlyProperty() 2843 isolate, to_assign, Object::Share(isolate, to_assign, kThrowOnError), in SetDataProperty() 2966 if (throw_if_cannot_be_shared == kThrowOnError) { in ShareSlow() 3183 is_sloppy(language_mode) ? kDontThrow : kThrowOnError; in DeletePropertyOrElement() 3325 // In our case, if should_throw == kThrowOnError, it can be! in DefineOwnProperty() 5434 Just(ShouldThrow::kThrowOnError)) in MoveMessageToPromise()
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-object.cc | 95 isolate, receiver, name, &desc, Just(kThrowOnError)); in ObjectDefineAccessor() 220 FROZEN, kThrowOnError), in BUILTIN() 264 JSReceiver::SetPrototype(isolate, receiver, proto, true, kThrowOnError), in BUILTIN() 360 SEALED, kThrowOnError), in BUILTIN()
|
H A D | builtins-array.cc | 186 Just(ShouldThrow::kThrowOnError)); in SetLengthProperty() 202 Just(ShouldThrow::kThrowOnError))); in GenericArrayFill() 344 ShouldThrow::kThrowOnError)); in GenericArrayPush() 349 Just(ShouldThrow::kThrowOnError)), in GenericArrayPush() 363 Just(ShouldThrow::kThrowOnError))); in GenericArrayPush() 422 Just(ShouldThrow::kThrowOnError))); in GenericArrayPop() 450 Just(ShouldThrow::kThrowOnError))); in GenericArrayPop() 555 Just(ShouldThrow::kThrowOnError))); in GenericArrayShift() 696 JSReceiver::CreateDataProperty(&it, elm, Just(kThrowOnError)), false); in visit() 771 StoreOrigin::kMaybeKeyed, Just(ShouldThrow::kThrowOnError)), in ToJSReceiver() [all...] |
H A D | builtins-arraybuffer.cc | 86 isolate, byte_length, max_byte_length, kThrowOnError, in ConstructBuffer()
|
H A D | builtins-intl.cc | 320 Just(kThrowOnError)); in LegacyFormatConstructor()
|
/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-utils.cc | 58 StoreOrigin::kMaybeKeyed, Just(kThrowOnError)); in SetLastIndex()
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-debug.cc | 846 Just(ShouldThrow::kThrowOnError)) in RUNTIME_FUNCTION() 855 Just(ShouldThrow::kThrowOnError)) in RUNTIME_FUNCTION() 860 generator, StoreOrigin::kMaybeKeyed, Just(ShouldThrow::kThrowOnError)) in RUNTIME_FUNCTION()
|
H A D | runtime-scopes.cc | 717 if (should_throw == kThrowOnError) { in LoadLookupSlot() 736 LoadLookupSlot(isolate, name, kThrowOnError)); in RUNTIME_FUNCTION() 755 isolate, value, LoadLookupSlot(isolate, name, kThrowOnError, &receiver), in RUNTIME_FUNCTION_RETURN_PAIR()
|
H A D | runtime-atomics.cc | 634 isolate, shared_value, Object::Share(isolate, args.at(2), kThrowOnError)); in RUNTIME_FUNCTION() 660 isolate, shared_value, Object::Share(isolate, args.at(2), kThrowOnError)); in RUNTIME_FUNCTION()
|
H A D | runtime-object.cc | 628 JSReceiver::SetPrototype(isolate, obj, prototype, false, kThrowOnError), in RUNTIME_FUNCTION() 722 kThrowOnError), in RUNTIME_FUNCTION() 755 JSReceiver::SetPrototype(isolate, object, proto, true, kThrowOnError), in RUNTIME_FUNCTION() 1476 MAYBE_RETURN(JSReceiver::CreateDataProperty(&it, value, Just(kThrowOnError)), in RUNTIME_FUNCTION()
|
H A D | runtime-internal.cc | 728 isolate, shared_value, Object::ShareSlow(isolate, value, kThrowOnError)); in RUNTIME_FUNCTION()
|
/third_party/node/deps/v8/include/ |
H A D | v8-internal.h | 424 static const int kThrowOnError = 0; member in v8::internal::Internals
|
/third_party/node/deps/v8/src/common/ |
H A D | globals.h | 1022 kThrowOnError = Internals::kThrowOnError, enumerator
|
/third_party/node/deps/v8/src/execution/ |
H A D | messages.cc | 1031 Just(ShouldThrow::kThrowOnError)), in GetFormattedStack() 1054 Just(ShouldThrow::kThrowOnError)) in SetFormattedStack()
|
H A D | isolate.cc | 1245 Just(ShouldThrow::kThrowOnError)), in CaptureAndSetErrorStack() 1592 Just(ShouldThrow::kThrowOnError)) in ThrowAt() 1599 Just(ShouldThrow::kThrowOnError)) in ThrowAt() 1605 Just(ShouldThrow::kThrowOnError)) in ThrowAt()
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-internal.h | 622 static const int kThrowOnError = 0; member in v8::internal::Internals
|
/third_party/node/deps/v8/src/api/ |
H A D | api-natives.cc | 129 Just(ShouldThrow::kThrowOnError), in DefineDataProperty()
|
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-objects.cc | 1701 Just(ShouldThrow::kThrowOnError)) in New() 1706 Just(ShouldThrow::kThrowOnError)) in New()
|
/third_party/node/deps/v8/src/ic/ |
H A D | ic.cc | 1662 ShouldThrow::kThrowOnError)) { in LookupForWrite() 2629 &it, value, NONE, Just(ShouldThrow::kThrowOnError)), in StoreOwnElement()
|
/third_party/node/deps/v8/src/debug/ |
H A D | debug-wasm-objects.cc | 899 Just(ShouldThrow::kThrowOnError)) in Create()
|