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

  /external/webkit/WebCore/bridge/
runtime_array.cpp 38 const ClassInfo RuntimeArray::s_info = { "RuntimeArray", &JSArray::info, 0, 0 };
40 RuntimeArray::RuntimeArray(ExecState* exec, Bindings::Array* array)
43 : JSObject(deprecatedGetDOMStructure<RuntimeArray>(exec))
48 JSValue RuntimeArray::lengthGetter(ExecState* exec, const Identifier&, const PropertySlot& slot)
50 RuntimeArray* thisObj = static_cast<RuntimeArray*>(asObject(slot.slotBase()));
54 JSValue RuntimeArray::indexGetter(ExecState* exec, const Identifier&, const PropertySlot& slot)
56 RuntimeArray* thisObj = static_cast<RuntimeArray*>(asObject(slot.slotBase()))
    [all...]
runtime_array.h 34 class RuntimeArray : public JSObject {
36 RuntimeArray(ExecState*, Bindings::Array*);

Completed in 23 milliseconds