HomeSort by relevance Sort by last modified time
    Searched full:m_structure (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/JavaScriptCore/runtime/
JSObject.h 151 size_t offset = m_structure->get(globalData, propertyName);
157 size_t offset = m_structure->get(globalData, propertyName);
164 size_t offset = m_structure->get(globalData, propertyName, attributes, specificFunction);
176 bool hasCustomProperties() { return !m_structure->isEmpty(); }
177 bool hasGetterSetterProperties() { return m_structure->hasGetterSetterProperties(); }
215 bool isSealed(JSGlobalData& globalData) { return m_structure->isSealed(globalData); }
216 bool isFrozen(JSGlobalData& globalData) { return m_structure->isFrozen(globalData); }
217 bool isExtensible() { return m_structure->isExtensible(); }
228 m_structure->flattenDictionaryStructure(globalData, this);
233 ASSERT(index < m_structure->anonymousSlotCount())
    [all...]
JSObject.cpp 130 if ((m_structure->get(exec->globalData(), propertyName, attributes, specificValue) != WTF::notFound) && attributes & ReadOnly) {
221 if (m_structure->get(exec->globalData(), propertyName, attributes, specificValue) != WTF::notFound) {
317 ASSERT(m_structure->hasGetterSetterProperties());
331 if (!m_structure->isDictionary())
332 setStructure(exec->globalData(), Structure::getterSetterTransition(globalData, m_structure.get()));
335 m_structure->setHasGetterSetterProperties(true);
343 ASSERT(m_structure->hasGetterSetterProperties());
356 if (!m_structure->isDictionary())
357 setStructure(exec->globalData(), Structure::getterSetterTransition(exec->globalData(), m_structure.get()));
360 m_structure->setHasGetterSetterProperties(true)
    [all...]
JSCell.h 146 return OBJECT_OFFSETOF(JSCell, m_structure);
151 return &m_structure;
162 WriteBarrier<Structure> m_structure; member in class:JSC::JSCell
166 : m_structure(globalData, this, structure)
169 ASSERT(m_structure || !globalData.dummyMarkableCellStructure);
178 return m_structure.get();
183 markStack.append(&m_structure);
Structure.h 263 return m_structure->typeInfo().type() == ObjectType;
268 return m_structure->typeInfo().type() == StringType;
273 return m_structure->classInfo();
  /external/webkit/Source/JavaScriptCore/jit/
JITPropertyAccess.cpp 582 // ecx = baseObject->m_structure
    [all...]

Completed in 441 milliseconds