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

  /external/webkit/JavaScriptCore/runtime/
ArrayConstructor.cpp 27 #include "ArrayPrototype.h"
40 ArrayConstructor::ArrayConstructor(ExecState* exec, NonNullPassRefPtr<Structure> structure, ArrayPrototype* arrayPrototype, Structure* prototypeFunctionStructure)
41 : InternalFunction(&exec->globalData(), structure, Identifier(exec, arrayPrototype->classInfo()->className))
44 putDirectWithoutTransition(exec->propertyNames().prototype, arrayPrototype, DontEnum | DontDelete | ReadOnly);
JSGlobalObject.h 36 class ArrayPrototype;
86 , arrayPrototype(0)
125 ArrayPrototype* arrayPrototype;
209 ArrayPrototype* arrayPrototype() const { return d()->arrayPrototype; }
JSGlobalObject.cpp 39 #include "ArrayPrototype.h"
226 d()->arrayPrototype = new (exec) ArrayPrototype(ArrayPrototype::createStructure(d()->objectPrototype));
227 d()->arrayStructure = JSArray::createStructure(d()->arrayPrototype);
228 d()->regExpMatchesArrayStructure = RegExpMatchesArray::createStructure(d()->arrayPrototype);
263 JSCell* arrayConstructor = new (exec) ArrayConstructor(exec, ArrayConstructor::createStructure(d()->functionPrototype), d()->arrayPrototype, d()->prototypeFunctionStructure.get());
284 d()->arrayPrototype->putDirectFunctionWithoutTransition(exec->propertyNames().constructor, arrayConstructor, DontEnum);
389 markIfNeeded(markStack, d()->arrayPrototype);
  /external/webkit/WebCore/bridge/
runtime_array.h 56 static ArrayPrototype* createPrototype(ExecState*, JSGlobalObject* globalObject)
58 return globalObject->arrayPrototype();

Completed in 26 milliseconds