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

  /external/webkit/Source/WebCore/ForwardingHeaders/runtime/
JSByteArray.h 3 #include <JavaScriptCore/JSByteArray.h>
  /external/webkit/Source/JavaScriptCore/runtime/
JSByteArray.cpp 27 #include "JSByteArray.h"
36 const ClassInfo JSByteArray::s_defaultInfo = { "ByteArray", &Base::s_info, 0, 0 };
38 JSByteArray::JSByteArray(ExecState* exec, Structure* structure, ByteArray* storage)
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::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot
    [all...]
JSByteArray.h 35 class JSByteArray : public JSNonFinalObject {
78 JSByteArray(ExecState*, Structure*, WTF::ByteArray* storage);
96 virtual ~JSByteArray();
103 JSByteArray(VPtrStealingHackType)
111 JSByteArray* asByteArray(JSValue value);
112 inline JSByteArray* asByteArray(JSValue value)
114 return static_cast<JSByteArray*>(value.asCell());
JSGlobalData.cpp 41 #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);
133 JSGlobalData::jsByteArrayVPtr = jsByteArray->vptr();
  /external/webkit/Source/WebCore/bindings/js/
JSImageDataCustom.cpp 32 #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/
DFGOperations.cpp 33 #include "JSByteArray.h"
135 JSByteArray* jsByteArray = asByteArray(baseValue);
138 jsByteArray->setIndex(i, value.asInt32());
144 jsByteArray->setIndex(i, dValue);
  /external/webkit/Source/WebCore/bridge/qt/
qt_runtime.cpp 31 #include "JSByteArray.h"
107 JSByteArray
164 return JSByteArray;
240 case JSByteArray:
478 if (type == JSByteArray) {
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.cpp 47 #include "JSByteArray.h"
    [all...]
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.cpp 47 #include "JSByteArray.h"
    [all...]

Completed in 209 milliseconds