Home
last modified time | relevance | path

Searched refs:maybe_pair (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/builtins/
Dbuiltins-object.cc516 Handle<Object> maybe_pair = it.GetAccessors(); in ObjectLookupAccessor() local
517 if (maybe_pair->IsAccessorPair()) { in ObjectLookupAccessor()
519 Handle<AccessorPair>::cast(maybe_pair), component); in ObjectLookupAccessor()
/external/v8/src/runtime/
Druntime-debug.cc354 Handle<Object> maybe_pair; in RUNTIME_FUNCTION() local
356 maybe_pair = it.GetAccessors(); in RUNTIME_FUNCTION()
361 bool has_js_accessors = !maybe_pair.is_null() && maybe_pair->IsAccessorPair(); in RUNTIME_FUNCTION()
373 Handle<AccessorPair> accessors = Handle<AccessorPair>::cast(maybe_pair); in RUNTIME_FUNCTION()
/external/v8/src/
Dobjects.cc9252 Handle<Object> maybe_pair(descriptors->GetValue(descriptor), isolate); in TransitionToAccessorProperty() local
9253 if (!maybe_pair->IsAccessorPair()) { in TransitionToAccessorProperty()
9257 Handle<AccessorPair> pair = Handle<AccessorPair>::cast(maybe_pair); in TransitionToAccessorProperty()
9280 Handle<Object> maybe_pair(old_descriptors->GetValue(descriptor), isolate); in TransitionToAccessorProperty() local
9281 if (!maybe_pair->IsAccessorPair()) { in TransitionToAccessorProperty()
9285 Handle<AccessorPair> current_pair = Handle<AccessorPair>::cast(maybe_pair); in TransitionToAccessorProperty()
9303 pair = AccessorPair::Copy(Handle<AccessorPair>::cast(maybe_pair)); in TransitionToAccessorProperty()