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

/external/webkit/Source/JavaScriptCore/runtime/
H A DJSObject.h146 bool getPropertySpecificValue(ExecState* exec, const Identifier& propertyName, JSCell*& specificFunction) const;
163 JSCell* specificFunction; local
164 size_t offset = m_structure->get(globalData, propertyName, attributes, specificFunction);
561 inline bool JSObject::putDirectInternal(JSGlobalData& globalData, const Identifier& propertyName, JSValue value, unsigned attributes, bool checkReadOnly, PutPropertySlot& slot, JSCell* specificFunction) argument
573 if (currentSpecificFunction && (specificFunction != currentSpecificFunction))
585 if (!currentSpecificFunction || (specificFunction != currentSpecificFunction))
594 offset = m_structure->addPropertyWithoutTransition(globalData, propertyName, attributes, specificFunction);
601 if (!specificFunction)
608 if (Structure* structure = Structure::addPropertyTransitionToExistingStructure(m_structure.get(), propertyName, attributes, specificFunction, offset)) {
617 if (!specificFunction)
[all...]

Completed in 20 milliseconds