Searched defs:slotBase (Results 1 - 2 of 2) sorted by relevance

/external/webkit/JavaScriptCore/runtime/
H A DPropertySlot.h90 void setValueSlot(JSValue slotBase, JSValue* valueSlot) argument
94 m_slotBase = slotBase;
98 void setValueSlot(JSValue slotBase, JSValue* valueSlot, size_t offset) argument
102 m_slotBase = slotBase;
126 void setCustom(JSValue slotBase, GetValueFunc getValue) argument
128 ASSERT(slotBase);
131 m_slotBase = slotBase;
134 void setCustomIndex(JSValue slotBase, unsigned index, GetValueFunc getValue) argument
136 ASSERT(slotBase);
139 m_slotBase = slotBase;
155 JSValue slotBase() const function in class:JSC::PropertySlot
[all...]
H A DOperations.h342 inline size_t normalizePrototypeChain(CallFrame* callFrame, JSValue base, JSValue slotBase, const Identifier& propertyName, size_t& slotOffset) argument
347 while (slotBase != cell) {
350 // If we didn't find slotBase in base's prototype chain, then base
362 if (slotBase == cell)

Completed in 47 milliseconds