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

  /external/webkit/Source/JavaScriptCore/runtime/
JSObject.cpp 129 JSCell* specificValue;
130 if ((m_structure->get(exec->globalData(), propertyName, attributes, specificValue) != WTF::notFound) && attributes & ReadOnly) {
220 JSCell* specificValue;
221 if (m_structure->get(exec->globalData(), propertyName, attributes, specificValue) != WTF::notFound) {
428 bool JSObject::getPropertySpecificValue(ExecState* exec, const Identifier& propertyName, JSCell*& specificValue) const
431 if (m_structure->get(exec->globalData(), propertyName, attributes, specificValue) != WTF::notFound)
PropertyMapHashTable.h 77 WriteBarrier<JSCell> specificValue;
79 PropertyMapEntry(JSGlobalData& globalData, JSCell* owner, StringImpl* key, unsigned offset, unsigned attributes, JSCell* specificValue)
83 , specificValue(globalData, owner, specificValue)
262 writeBarrier(globalData, owner, iter->specificValue.get());
286 writeBarrier(globalData, owner, iter->specificValue.get());

Completed in 26 milliseconds