/external/webkit/Source/WebCore/ |
Android.v8bindings.mk | 29 external/v8/include \ 31 $(LOCAL_PATH)/bindings/v8 \ 32 $(LOCAL_PATH)/bindings/v8/custom \ 33 $(LOCAL_PATH)/bindings/v8/specialization \ 36 $(LOCAL_PATH)/bridge/jni/v8 \ 46 bindings/v8/ChildThreadDOMData.cpp \ 47 bindings/v8/DateExtension.cpp \ 48 bindings/v8/DOMData.cpp \ 49 bindings/v8/DOMDataStore.cpp \ 50 bindings/v8/DOMWrapperWorld.cpp [all...] |
/external/webkit/Source/WebCore/bindings/v8/ |
V8NodeFilterCondition.h | 35 #include <v8.h> 47 static PassRefPtr<V8NodeFilterCondition> create(v8::Handle<v8::Value> filter) 57 explicit V8NodeFilterCondition(v8::Handle<v8::Value> filter); 59 mutable v8::Persistent<v8::Value> m_filter;
|
V8AbstractEventListener.h | 37 #include <v8.h> 80 v8::Local<v8::Object> getListenerObject(ScriptExecutionContext* context) 83 return v8::Local<v8::Object>::New(m_listener); 86 v8::Local<v8::Object> getExistingListenerObject() 88 return v8::Local<v8::Object>::New(m_listener); 106 void setListenerObject(v8::Handle<v8::Object> listener) [all...] |
V8WindowErrorHandler.cpp | 40 V8WindowErrorHandler::V8WindowErrorHandler(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext) 45 v8::Local<v8::Value> V8WindowErrorHandler::callListenerFunction(ScriptExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event) 51 v8::Local<v8::Object> listener = getListenerObject(context); 52 v8::Local<v8::Value> returnValue [all...] |
ScriptDebugServer.cpp | 46 class ClientDataImpl : public v8::Debug::ClientData { 65 v8::HandleScope scope; 66 v8::Local<v8::Context> debuggerContext = v8::Debug::GetDebugContext(); 67 v8::Context::Scope contextScope(debuggerContext); 69 v8::Local<v8::Object> args = v8::Object::New(); 70 args->Set(v8::String::New("sourceID"), v8String(sourceID)) [all...] |
V8WindowErrorHandler.h | 35 #include <v8.h> 42 static PassRefPtr<V8WindowErrorHandler> create(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext) 48 V8WindowErrorHandler(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext); 50 virtual v8::Local<v8::Value> callListenerFunction(ScriptExecutionContext*, v8::Handle<v8::Value> jsEvent, Event*);
|
V8WorkerContextErrorHandler.h | 37 #include <v8.h> 44 static PassRefPtr<V8WorkerContextErrorHandler> create(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext) 50 V8WorkerContextErrorHandler(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext); 52 virtual v8::Local<v8::Value> callListenerFunction(ScriptExecutionContext*, v8::Handle<v8::Value> jsEvent, Event*);
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8CanvasRenderingContext2DCustom.cpp | 52 static v8::Handle<v8::Value> toV8Object(CanvasStyle* style) 63 static PassRefPtr<CanvasStyle> toCanvasStyle(v8::Handle<v8::Value> value) 69 return CanvasStyle::createFromGradient(V8CanvasGradient::toNative(v8::Handle<v8::Object>::Cast(value))); 72 return CanvasStyle::createFromPattern(V8CanvasPattern::toNative(v8::Handle<v8::Object>::Cast(value))); 77 v8::Handle<v8::Value> V8CanvasRenderingContext2D::strokeStyleAccessorGetter(v8::Local<v8::String> name, const v8 (…) [all...] |
V8CustomXPathNSResolver.h | 38 #include <v8.h> 51 static PassRefPtr<V8CustomXPathNSResolver> create(v8::Handle<v8::Object> resolver); 57 explicit V8CustomXPathNSResolver(v8::Handle<v8::Object> resolver); 59 v8::Handle<v8::Object> m_resolver; // Handle to resolver object.
|
V8IDBKeyCustom.cpp | 39 v8::Handle<v8::Value> toV8(IDBKey* key) 42 return v8::Null(); 46 return v8::Null(); 48 return v8::Number::New(key->number()); 52 return v8::Date::New(key->date()); 56 return v8::Undefined();
|
V8LocationCustom.cpp | 51 void V8Location::hashAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info) 63 void V8Location::hostAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info [all...] |
V8ScriptProfileNodeCustom.cpp | 38 #include <v8-profiler.h> 42 v8::Handle<v8::Value> V8ScriptProfileNode::childrenAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) 47 v8::Handle<v8::Array> result = v8::Array::New(children.size()); 51 result->Set(v8::Integer::New(index++), toV8(iter->get())) [all...] |
V8Float32ArrayCustom.cpp | 43 v8::Handle<v8::Value> V8Float32Array::constructorCallback(const v8::Arguments& args) 47 return constructWebGLArray<Float32Array, float>(args, &info, v8::kExternalFloatArray); 50 v8::Handle<v8::Value> V8Float32Array::setCallback(const v8::Arguments& args) 56 v8::Handle<v8::Value> toV8(Float32Array* impl) 59 return v8::Null() [all...] |
V8Float64ArrayCustom.cpp | 38 v8::Handle<v8::Value> V8Float64Array::constructorCallback(const v8::Arguments& args) 42 return constructWebGLArray<Float64Array, double>(args, &info, v8::kExternalDoubleArray); 45 v8::Handle<v8::Value> V8Float64Array::setCallback(const v8::Arguments& args) 51 v8::Handle<v8::Value> toV8(Float64Array* impl) 54 return v8::Null() [all...] |
V8Int16ArrayCustom.cpp | 43 v8::Handle<v8::Value> V8Int16Array::constructorCallback(const v8::Arguments& args) 47 return constructWebGLArray<Int16Array, short>(args, &info, v8::kExternalShortArray); 50 v8::Handle<v8::Value> V8Int16Array::setCallback(const v8::Arguments& args) 56 v8::Handle<v8::Value> toV8(Int16Array* impl) 59 return v8::Null() [all...] |
V8Int32ArrayCustom.cpp | 43 v8::Handle<v8::Value> V8Int32Array::constructorCallback(const v8::Arguments& args) 47 return constructWebGLArray<Int32Array, int>(args, &info, v8::kExternalIntArray); 50 v8::Handle<v8::Value> V8Int32Array::setCallback(const v8::Arguments& args) 56 v8::Handle<v8::Value> toV8(Int32Array* impl) 59 return v8::Null() [all...] |
V8Int8ArrayCustom.cpp | 43 v8::Handle<v8::Value> V8Int8Array::constructorCallback(const v8::Arguments& args) 47 return constructWebGLArray<Int8Array, signed char>(args, &info, v8::kExternalByteArray); 50 v8::Handle<v8::Value> V8Int8Array::setCallback(const v8::Arguments& args) 56 v8::Handle<v8::Value> toV8(Int8Array* impl) 59 return v8::Null() [all...] |
V8Uint16ArrayCustom.cpp | 43 v8::Handle<v8::Value> V8Uint16Array::constructorCallback(const v8::Arguments& args) 47 return constructWebGLArray<Uint16Array, unsigned short>(args, &info, v8::kExternalUnsignedShortArray); 50 v8::Handle<v8::Value> V8Uint16Array::setCallback(const v8::Arguments& args) 56 v8::Handle<v8::Value> toV8(Uint16Array* impl) 59 return v8::Null() [all...] |
V8Uint32ArrayCustom.cpp | 43 v8::Handle<v8::Value> V8Uint32Array::constructorCallback(const v8::Arguments& args) 47 return constructWebGLArray<Uint32Array, unsigned int>(args, &info, v8::kExternalUnsignedIntArray); 50 v8::Handle<v8::Value> V8Uint32Array::setCallback(const v8::Arguments& args) 56 v8::Handle<v8::Value> toV8(Uint32Array* impl) 59 return v8::Null() [all...] |
V8Uint8ArrayCustom.cpp | 43 v8::Handle<v8::Value> V8Uint8Array::constructorCallback(const v8::Arguments& args) 47 return constructWebGLArray<Uint8Array, unsigned char>(args, &info, v8::kExternalUnsignedByteArray); 50 v8::Handle<v8::Value> V8Uint8Array::setCallback(const v8::Arguments& args) 56 v8::Handle<v8::Value> toV8(Uint8Array* impl) 59 return v8::Null() [all...] |
/external/v8/test/cctest/ |
test-lockers.cc | 1 // Copyright 2007-2011 the V8 project authors. All rights reserved. 30 #include "v8.h" 43 using ::v8::AccessorInfo; 44 using ::v8::Context; 45 using ::v8::Extension; 46 using ::v8::Function; 47 using ::v8::HandleScope; 48 using ::v8::Local; 49 using ::v8::Object; 50 using ::v8::ObjectTemplate [all...] |
test-func-name-inference.cc | 1 // Copyright 2011 the V8 project authors. All rights reserved. 28 #include "v8.h" 35 using ::v8::internal::CStrVector; 36 using ::v8::internal::Factory; 37 using ::v8::internal::Handle; 38 using ::v8::internal::Heap; 39 using ::v8::internal::Isolate; 40 using ::v8::internal::JSFunction; 41 using ::v8::internal::Object; 42 using ::v8::internal::Runtime [all...] |
/external/webkit/Source/WebCore/bindings/scripts/test/V8/ |
V8TestObj.cpp | 55 static v8::Handle<v8::Value> readOnlyIntAttrAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) 59 return v8::Integer::New(imp->readOnlyIntAttr()); 62 static v8::Handle<v8::Value> readOnlyStringAttrAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info [all...] |
V8TestCallback.cpp | 41 V8TestCallback::V8TestCallback(v8::Local<v8::Object> callback, ScriptExecutionContext* context) 43 , m_callback(v8::Persistent<v8::Object>::New(callback)) 60 v8::HandleScope handleScope; 62 v8::Handle<v8::Context> v8Context = toV8Context(scriptExecutionContext(), m_worldContext); 66 v8::Context::Scope scope(v8Context); 69 v8::Handle<v8::Value> *argv = 0 [all...] |
/external/v8/src/ |
v8checks.h | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 35 namespace v8 { namespace 42 } } // namespace v8::internal 48 v8::Handle<v8::Value> unexpected, 50 v8::Handle<v8::Value> value); 55 v8::Handle<v8::Value> expected, 57 v8::Handle<v8::Value> value) [all...] |