Home
last modified time | relevance | path

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

/external/v8/src/runtime/
Druntime-debug.cc318 Handle<Object> maybe_pair; in RUNTIME_FUNCTION() local
320 maybe_pair = it.GetAccessors(); in RUNTIME_FUNCTION()
325 bool has_js_accessors = !maybe_pair.is_null() && maybe_pair->IsAccessorPair(); in RUNTIME_FUNCTION()
337 AccessorPair* accessors = AccessorPair::cast(*maybe_pair); in RUNTIME_FUNCTION()
/external/v8/src/
Dobjects.cc9112 Handle<Object> maybe_pair = it.GetAccessors(); in GetAccessor() local
9113 if (maybe_pair->IsAccessorPair()) { in GetAccessor()
9115 AccessorPair::cast(*maybe_pair)->GetComponent(component), in GetAccessor()
9923 Handle<Object> maybe_pair(descriptors->GetValue(descriptor), isolate); in TransitionToAccessorProperty() local
9924 if (!maybe_pair->IsAccessorPair()) { in TransitionToAccessorProperty()
9928 Handle<AccessorPair> pair = Handle<AccessorPair>::cast(maybe_pair); in TransitionToAccessorProperty()
9952 Handle<Object> maybe_pair(old_descriptors->GetValue(descriptor), isolate); in TransitionToAccessorProperty() local
9953 if (!maybe_pair->IsAccessorPair()) { in TransitionToAccessorProperty()
9957 Object* current = Handle<AccessorPair>::cast(maybe_pair)->get(component); in TransitionToAccessorProperty()
9964 pair = AccessorPair::Copy(Handle<AccessorPair>::cast(maybe_pair)); in TransitionToAccessorProperty()