HomeSort by relevance Sort by last modified time
    Searched refs:V8ClassIndex (Results 1 - 25 of 47) sorted by null

1 2

  /external/webkit/WebCore/bindings/v8/custom/
V8WebGLByteArrayCustom.cpp 50 return constructWebGLArray<WebGLByteArray>(args, V8ClassIndex::ToInt(V8ClassIndex::WEBGLBYTEARRAY));
56 return getWebGLArrayElement<WebGLByteArray, signed char>(args, V8ClassIndex::WEBGLBYTEARRAY);
62 return setWebGLArray<WebGLByteArray, V8WebGLByteArray>(args, V8ClassIndex::WEBGLBYTEARRAY);
V8WebGLFloatArrayCustom.cpp 50 return constructWebGLArray<WebGLFloatArray>(args, V8ClassIndex::ToInt(V8ClassIndex::WEBGLFLOATARRAY));
56 return getWebGLArrayElement<WebGLFloatArray, float>(args, V8ClassIndex::WEBGLFLOATARRAY);
62 return setWebGLArray<WebGLFloatArray, V8WebGLFloatArray>(args, V8ClassIndex::WEBGLFLOATARRAY);
V8WebGLIntArrayCustom.cpp 50 return constructWebGLArray<WebGLIntArray>(args, V8ClassIndex::ToInt(V8ClassIndex::WEBGLINTARRAY));
56 return getWebGLArrayElement<WebGLIntArray, int>(args, V8ClassIndex::WEBGLINTARRAY);
62 return setWebGLArray<WebGLIntArray, V8WebGLIntArray>(args, V8ClassIndex::WEBGLINTARRAY);
V8WebGLShortArrayCustom.cpp 50 return constructWebGLArray<WebGLShortArray>(args, V8ClassIndex::ToInt(V8ClassIndex::WEBGLSHORTARRAY));
56 return getWebGLArrayElement<WebGLShortArray, short>(args, V8ClassIndex::WEBGLSHORTARRAY);
62 return setWebGLArray<WebGLShortArray, V8WebGLShortArray>(args, V8ClassIndex::WEBGLSHORTARRAY);
V8WebGLUnsignedByteArrayCustom.cpp 50 return constructWebGLArray<WebGLUnsignedByteArray>(args, V8ClassIndex::ToInt(V8ClassIndex::WEBGLUNSIGNEDBYTEARRAY));
56 return getWebGLArrayElement<WebGLUnsignedByteArray, unsigned char>(args, V8ClassIndex::WEBGLUNSIGNEDBYTEARRAY);
62 return setWebGLArray<WebGLUnsignedByteArray, V8WebGLUnsignedByteArray>(args, V8ClassIndex::WEBGLUNSIGNEDBYTEARRAY);
V8WebGLUnsignedIntArrayCustom.cpp 50 return constructWebGLArray<WebGLUnsignedIntArray>(args, V8ClassIndex::ToInt(V8ClassIndex::WEBGLUNSIGNEDINTARRAY));
56 return getWebGLArrayElement<WebGLUnsignedIntArray, unsigned int>(args, V8ClassIndex::WEBGLUNSIGNEDINTARRAY);
62 return setWebGLArray<WebGLUnsignedIntArray, V8WebGLUnsignedIntArray>(args, V8ClassIndex::WEBGLUNSIGNEDINTARRAY);
V8WebGLUnsignedShortArrayCustom.cpp 50 return constructWebGLArray<WebGLUnsignedShortArray>(args, V8ClassIndex::ToInt(V8ClassIndex::WEBGLUNSIGNEDSHORTARRAY));
56 return getWebGLArrayElement<WebGLUnsignedShortArray, unsigned short>(args, V8ClassIndex::WEBGLUNSIGNEDSHORTARRAY);
62 return setWebGLArray<WebGLUnsignedShortArray, V8WebGLUnsignedShortArray>(args, V8ClassIndex::WEBGLUNSIGNEDSHORTARRAY);
V8WebGLArrayBufferCustom.cpp 77 V8DOMWrapper::setDOMWrapper(args.Holder(), V8ClassIndex::ToInt(V8ClassIndex::WEBGLARRAYBUFFER), buffer.get());
V8WebKitCSSMatrixConstructor.cpp 66 V8DOMWrapper::setDOMWrapper(args.Holder(), V8ClassIndex::ToInt(V8ClassIndex::WEBKITCSSMATRIX), matrix.get());
V8XMLHttpRequestConstructor.cpp 56 V8DOMWrapper::setDOMWrapper(args.Holder(), V8ClassIndex::ToInt(V8ClassIndex::XMLHTTPREQUEST), xmlHttpRequest.get());
V8EventSourceConstructor.cpp 69 V8DOMWrapper::setDOMWrapper(args.Holder(), V8ClassIndex::ToInt(V8ClassIndex::EVENTSOURCE), eventSource.get());
V8HistoryCustom.cpp 88 ASSERT(V8ClassIndex::FromInt(data->Int32Value()) == V8ClassIndex::HISTORY);
96 ASSERT(V8ClassIndex::FromInt(data->Int32Value()) == V8ClassIndex::HISTORY);
V8WebKitPointConstructor.cpp 66 V8DOMWrapper::setDOMWrapper(args.Holder(), V8ClassIndex::WEBKITPOINT, point.get());
V8MessageChannelConstructor.cpp 74 V8DOMWrapper::setDOMWrapper(messageChannel, V8ClassIndex::MESSAGECHANNEL, obj.get());
V8HTMLAudioElementConstructor.cpp 73 V8DOMWrapper::setDOMWrapper(args.Holder(), V8ClassIndex::ToInt(V8ClassIndex::AUDIO), audio.get());
V8HTMLImageElementConstructor.cpp 73 V8DOMWrapper::setDOMWrapper(args.Holder(), V8ClassIndex::ToInt(V8ClassIndex::IMAGE), image.get());
  /external/webkit/WebCore/bindings/v8/
DOMData.cpp 61 void DOMData::ensureDeref(V8ClassIndex::V8WrapperType type, void* domObject)
81 void DOMData::derefObject(V8ClassIndex::V8WrapperType type, void* domObject)
84 case V8ClassIndex::NODE:
89 case V8ClassIndex::type: static_cast<name*>(domObject)->deref(); break;
95 case V8ClassIndex::type: static_cast<name*>(domObject)->deref(); break;
100 case V8ClassIndex::type: \
V8Index.cpp 475 v8::Persistent<v8::FunctionTemplate> V8ClassIndex::getTemplate(V8WrapperType type)
479 case V8ClassIndex::type: return V8##name::GetTemplate();
DOMData.h 70 typedef WTF::HashMap<void*, V8ClassIndex::V8WrapperType> DelayedObjectMap;
72 void ensureDeref(V8ClassIndex::V8WrapperType type, void* domObject);
73 static void derefObject(V8ClassIndex::V8WrapperType type, void* domObject);
80 V8ClassIndex::V8WrapperType type = V8DOMWrapper::domWrapperType(v8Object);
V8DOMWrapper.cpp 96 V8ClassIndex::V8WrapperType classIndex = V8ClassIndex::FromInt(index);
98 case V8ClassIndex::WEBGLBYTEARRAY:
101 case V8ClassIndex::WEBGLUNSIGNEDBYTEARRAY:
104 case V8ClassIndex::WEBGLSHORTARRAY:
107 case V8ClassIndex::WEBGLUNSIGNEDSHORTARRAY:
110 case V8ClassIndex::WEBGLINTARRAY:
113 case V8ClassIndex::WEBGLUNSIGNEDINTARRAY:
116 case V8ClassIndex::WEBGLFLOATARRAY:
133 V8ClassIndex::V8WrapperType type = V8DOMWrapper::domWrapperType(wrapper)
    [all...]
V8DOMWindowShell.h 81 v8::Local<v8::Object> createWrapperFromCache(V8ClassIndex::V8WrapperType type)
83 int classIndex = V8ClassIndex::ToInt(type);
105 v8::Local<v8::Object> createWrapperFromCacheSlowCase(V8ClassIndex::V8WrapperType);
V8Helpers.cpp 43 V8DOMWrapper::setDOMWrapper(object, V8ClassIndex::NPOBJECT, npObject);
V8DOMWindowShell.cpp 99 switch (V8ClassIndex::FromInt(data->Int32Value())) {
100 case V8ClassIndex::DOMWINDOW: {
109 case V8ClassIndex::LOCATION: {
114 case V8ClassIndex::HISTORY: {
303 m_wrapperBoilerplates = v8::Persistent<v8::Array>::New(v8::Array::New(V8ClassIndex::WRAPPER_TYPE_COUNT));
388 v8::Handle<v8::Function> windowConstructor = V8DOMWrapper::getConstructor(V8ClassIndex::DOMWINDOW, getHiddenObjectPrototype(context));
395 V8DOMWrapper::setDOMWrapper(jsWindow, V8ClassIndex::ToInt(V8ClassIndex::DOMWINDOW), window);
396 V8DOMWrapper::setDOMWrapper(v8::Handle<v8::Object>::Cast(jsWindow->GetPrototype()), V8ClassIndex::ToInt(V8ClassIndex::DOMWINDOW), window)
    [all...]
V8DOMWrapper.h 125 static V8ClassIndex::V8WrapperType domWrapperType(v8::Handle<v8::Object>);
172 static v8::Local<v8::Function> getConstructorForContext(V8ClassIndex::V8WrapperType, v8::Handle<v8::Context>);
173 static v8::Local<v8::Function> getConstructor(V8ClassIndex::V8WrapperType, v8::Handle<v8::Value> objectPrototype);
174 static v8::Local<v8::Function> getConstructor(V8ClassIndex::V8WrapperType, DOMWindow*);
175 static v8::Local<v8::Function> getConstructor(V8ClassIndex::V8WrapperType, WorkerContext*);
183 static bool isWrapperOfType(v8::Handle<v8::Value>, V8ClassIndex::V8WrapperType);
194 static v8::Local<v8::Object> instantiateV8Object(V8Proxy* proxy, V8ClassIndex::V8WrapperType type, void* impl);
V8GCController.cpp 115 V8ClassIndex::V8WrapperType type = V8DOMWrapper::domWrapperType(wrapper);
126 V8ClassIndex::V8WrapperType type = V8DOMWrapper::domWrapperType(wrapper);
185 V8ClassIndex::V8WrapperType type = V8DOMWrapper::domWrapperType(wrapper);
188 case V8ClassIndex::TYPE: { \
206 if (type == V8ClassIndex::MESSAGEPORT) {
372 V8ClassIndex::V8WrapperType type = V8DOMWrapper::domWrapperType(wrapper);
375 case V8ClassIndex::TYPE: { \
389 if (type == V8ClassIndex::MESSAGEPORT) {

Completed in 538 milliseconds

1 2