Lines Matching refs:maybe
48 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); in DeclareGlobals() local
49 if (!maybe.IsJust()) return isolate->heap()->exception(); in DeclareGlobals()
52 PropertyAttributes old_attributes = maybe.FromJust(); in DeclareGlobals()
180 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); in RUNTIME_FUNCTION() local
181 DCHECK(maybe.IsJust()); in RUNTIME_FUNCTION()
182 PropertyAttributes old_attributes = maybe.FromJust(); in RUNTIME_FUNCTION()
392 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); in RUNTIME_FUNCTION() local
393 if (!maybe.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
394 PropertyAttributes old_attributes = maybe.FromJust(); in RUNTIME_FUNCTION()
764 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); in FindNameClash() local
765 if (!maybe.IsJust()) return isolate->heap()->exception(); in FindNameClash()
766 if ((maybe.FromJust() & DONT_DELETE) != 0) { in FindNameClash()