HomeSort by relevance Sort by last modified time
    Searched refs:m_arrayPrototype (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptoriginalglobalobject_p.h 60 JSValueRef m_arrayPrototype;
81 initializeMember(globalObject, propertyName.get(), "Array", m_arrayConstructor, m_arrayPrototype);
128 JSValueUnprotect(m_context, m_arrayPrototype);
186 return isType(value, m_arrayConstructor, m_arrayPrototype);
  /external/webkit/Source/JavaScriptCore/runtime/
JSGlobalObject.cpp 190 m_arrayPrototype.set(exec->globalData(), this, new (exec) ArrayPrototype(this, ArrayPrototype::createStructure(exec->globalData(), m_objectPrototype.get())));
191 m_arrayStructure.set(exec->globalData(), this, JSArray::createStructure(exec->globalData(), m_arrayPrototype.get()));
192 m_regExpMatchesArrayStructure.set(exec->globalData(), this, RegExpMatchesArray::createStructure(exec->globalData(), m_arrayPrototype.get()));
218 JSCell* arrayConstructor = new (exec) ArrayConstructor(exec, this, ArrayConstructor::createStructure(exec->globalData(), m_functionPrototype.get()), m_arrayPrototype.get(), m_functionStructure.get());
239 m_arrayPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, arrayConstructor, DontEnum);
332 markIfNeeded(markStack, &m_arrayPrototype);
JSGlobalObject.h 83 WriteBarrier<ArrayPrototype> m_arrayPrototype;
188 ArrayPrototype* arrayPrototype() const { return m_arrayPrototype.get(); }

Completed in 43 milliseconds