Home | History | Annotate | Download | only in runtime

Lines Matching full:slot

532             PropertySlot slot(m_object);
533 if (!m_object->getOwnPropertySlot(exec, index, slot))
534 slot.setUndefined();
537 value = slot.getValue(exec, index);
549 PropertySlot slot(m_object);
551 if (!m_object->getOwnPropertySlot(exec, propertyName, slot))
553 JSValue value = slot.getValue(exec, propertyName);
608 bool JSONObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
610 return getStaticFunctionSlot<JSObject>(exec, ExecState::jsonTable(exec), this, propertyName, slot);
706 PropertySlot slot;
707 if (array->getOwnPropertySlot(m_exec, index, slot))
708 inValue = slot.getValue(m_exec, index);
772 PropertySlot slot;
773 if (object->getOwnPropertySlot(m_exec, properties[index], slot))
774 inValue = slot.getValue(m_exec, properties[index]);
792 PutPropertySlot slot;
797 object->put(m_exec, prop, filteredValue, slot);
829 PutPropertySlot slot;
830 finalHolder->put(m_exec, m_exec->globalData().propertyNames->emptyIdentifier, outValue, slot);