HomeSort by relevance Sort by last modified time
    Searched defs:slotBase (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/JavaScriptCore/runtime/
PropertySlot.h 64 typedef JSValue (*GetValueFunc)(ExecState*, JSValue slotBase, const Identifier&);
65 typedef JSValue (*GetIndexValueFunc)(ExecState*, JSValue slotBase, unsigned);
72 return m_getIndexValue(exec, slotBase(), index());
75 return m_getValue(exec, slotBase(), propertyName);
86 return m_getValue(exec, slotBase(), Identifier::from(exec, propertyName));
98 void setValue(JSValue slotBase, JSValue value)
103 m_slotBase = slotBase;
107 void setValue(JSValue slotBase, JSValue value, size_t offset)
111 m_slotBase = slotBase;
126 void setCustom(JSValue slotBase, GetValueFunc getValue
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.cpp 897 if (slot.slotBase() == baseValue) {
912 if (slot.slotBase() == structure->prototypeForLookup(callFrame)) {
913 ASSERT(slot.slotBase().isObject());
915 JSObject* slotBaseObject = asObject(slot.slotBase());
934 size_t count = normalizePrototypeChain(callFrame, baseValue, slot.slotBase(), propertyName, offset);
    [all...]

Completed in 34 milliseconds