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

  /external/webkit/WebCore/ForwardingHeaders/runtime/
JSByteArray.h 3 #include <JavaScriptCore/JSByteArray.h>
  /external/webkit/JavaScriptCore/runtime/
JSByteArray.cpp 27 #include "JSByteArray.h"
36 const ClassInfo JSByteArray::s_defaultInfo = { "ByteArray", 0, 0, 0 };
38 JSByteArray::JSByteArray(ExecState* exec, NonNullPassRefPtr<Structure> structure, ByteArray* storage, const JSC::ClassInfo* classInfo)
47 JSByteArray::~JSByteArray()
54 PassRefPtr<Structure> JSByteArray::createStructure(JSValue prototype)
60 bool JSByteArray::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
71 bool JSByteArray::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
82 bool JSByteArray::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot
    [all...]
JSByteArray.h 35 class JSByteArray : public JSObject {
76 JSByteArray(ExecState* exec, NonNullPassRefPtr<Structure>, WTF::ByteArray* storage, const JSC::ClassInfo* = &s_defaultInfo);
95 virtual ~JSByteArray();
103 JSByteArray(VPtrStealingHackType)
113 JSByteArray* asByteArray(JSValue value);
114 inline JSByteArray* asByteArray(JSValue value)
116 return static_cast<JSByteArray*>(asCell(value));
JSGlobalData.cpp 41 #include "JSByteArray.h"
89 COMPILE_ASSERT(sizeof(JSByteArray) <= sizeof(CollectorCell), sizeof_JSByteArray_must_be_less_than_CollectorCell);
90 JSCell* jsByteArray = new (storage) JSByteArray(JSByteArray::VPtrStealingHack);
91 JSGlobalData::jsByteArrayVPtr = jsByteArray->vptr();
92 jsByteArray->~JSCell();
  /external/webkit/WebCore/bindings/js/
JSImageDataCustom.cpp 32 #include <runtime/JSByteArray.h>
50 DEFINE_STATIC_LOCAL(RefPtr<Structure>, cpaStructure, (JSByteArray::createStructure(jsNull())));
52 wrapper->putDirect(dataName, new (exec) JSByteArray(exec, cpaStructure, imageData->data()->data(), &cpaClassInfo), DontDelete | ReadOnly);
  /external/webkit/JavaScriptCore/
Android.mk 106 runtime/JSByteArray.cpp \
  /external/webkit/WebCore/bridge/qt/
qt_runtime.cpp 30 #include "JSByteArray.h"
102 JSByteArray
128 return JSByteArray;
202 case JSByteArray:
440 if (type == JSByteArray) {
846 return new (exec) JSC::JSByteArray(exec, JSC::JSByteArray::createStructure(jsNull()), wtfByteArray.get());
    [all...]
  /external/webkit/JavaScriptCore/jit/
JITStubs.cpp 45 #include "JSByteArray.h"
    [all...]
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp 46 #include "JSByteArray.h"
    [all...]

Completed in 328 milliseconds