Searched refs:JSByteArray (Results 1 - 9 of 9) sorted by relevance

/external/webkit/Source/WebCore/ForwardingHeaders/runtime/
H A DJSByteArray.h3 #include <JavaScriptCore/JSByteArray.h>
/external/webkit/Source/JavaScriptCore/runtime/
H A DJSByteArray.cpp27 #include "JSByteArray.h"
36 const ClassInfo JSByteArray::s_defaultInfo = { "ByteArray", &Base::s_info, 0, 0 };
38 JSByteArray::JSByteArray(ExecState* exec, Structure* structure, ByteArray* storage) function in class:JSC::JSByteArray
46 JSByteArray::~JSByteArray()
53 Structure* JSByteArray::createStructure(JSGlobalData& globalData, JSValue prototype, const JSC::ClassInfo* classInfo)
58 bool JSByteArray::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
69 bool JSByteArray::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
80 bool JSByteArray
[all...]
H A DJSByteArray.h35 class JSByteArray : public JSNonFinalObject { class in namespace:JSC
78 JSByteArray(ExecState*, Structure*, WTF::ByteArray* storage);
96 virtual ~JSByteArray();
103 JSByteArray(VPtrStealingHackType) function in class:JSC::JSByteArray
111 JSByteArray* asByteArray(JSValue value);
112 inline JSByteArray* asByteArray(JSValue value)
114 return static_cast<JSByteArray*>(value.asCell());
H A DJSGlobalData.cpp41 #include "JSByteArray.h"
121 // Enough storage to fit a JSArray, JSByteArray, JSString, or JSFunction.
130 COMPILE_ASSERT(sizeof(JSByteArray) <= sizeof(storage), sizeof_JSByteArray_must_be_less_than_storage);
131 JSCell* jsByteArray = new (storage) JSByteArray(JSByteArray::VPtrStealingHack);
/external/webkit/Source/WebCore/bindings/js/
H A DJSImageDataCustom.cpp32 #include <runtime/JSByteArray.h>
50 static const ClassInfo cpaClassInfo = { "CanvasPixelArray", &JSByteArray::Base::s_info, 0, 0 };
51 DEFINE_STATIC_LOCAL(Strong<Structure>, cpaStructure, (exec->globalData(), JSByteArray::createStructure(exec->globalData(), jsNull(), &cpaClassInfo)));
52 wrapper->putDirect(exec->globalData(), dataName, new (exec) JSByteArray(exec, cpaStructure.get(), imageData->data()->data()), DontDelete | ReadOnly);
/external/webkit/Source/JavaScriptCore/dfg/
H A DDFGOperations.cpp33 #include "JSByteArray.h"
135 JSByteArray* jsByteArray = asByteArray(baseValue);
/external/webkit/Source/WebCore/bridge/qt/
H A Dqt_runtime.cpp31 #include "JSByteArray.h"
107 JSByteArray enumerator in enum:JSC::Bindings::__anon14538
164 return JSByteArray;
240 case JSByteArray:
478 if (type == JSByteArray) {
893 return new (exec) JSC::JSByteArray(exec, JSC::JSByteArray::createStructure(exec->globalData(), jsNull()), wtfByteArray.get());
/external/webkit/Source/JavaScriptCore/jit/
H A DJITStubs.cpp47 #include "JSByteArray.h"
2483 JSByteArray* jsByteArray = asByteArray(baseValue);
2525 JSByteArray* jsByteArray = asByteArray(baseValue);
/external/webkit/Source/JavaScriptCore/interpreter/
H A DInterpreter.cpp47 #include "JSByteArray.h"
3320 JSByteArray* jsByteArray = asByteArray(baseValue);

Completed in 139 milliseconds