Searched refs:v8 (Results 26 - 50 of 1998) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DV8ErrorHandler.h34 #include "bindings/v8/V8EventListener.h"
36 #include <v8.h>
45 static PassRefPtr<V8ErrorHandler> create(v8::Local<v8::Object> listener, bool isInline, v8::Isolate* isolate)
50 static void storeExceptionOnErrorEventWrapper(ErrorEvent*, v8::Handle<v8::Value>, v8::Isolate*);
53 V8ErrorHandler(v8::Local<v8
[all...]
H A DV8Utilities.h35 #include <v8.h>
48 void createHiddenDependency(v8::Handle<v8::Object>, v8::Local<v8::Value>, int cacheIndex, v8::Isolate*);
49 void removeHiddenDependency(v8::Handle<v8::Object>, v8::Local<v8
[all...]
H A DCustomElementBinding.h34 #include "bindings/v8/UnsafePersistent.h"
36 #include <v8.h>
44 static PassOwnPtr<CustomElementBinding> create(v8::Isolate*, v8::Handle<v8::Object> prototype, const WrapperTypeInfo*);
48 v8::Handle<v8::Object> prototype() { return m_prototype.newLocal(m_isolate); }
52 CustomElementBinding(v8::Isolate*, v8::Handle<v8
[all...]
H A DV8GCController.h34 #include <v8.h>
43 static void gcPrologue(v8::GCType, v8::GCCallbackFlags);
44 static void gcEpilogue(v8::GCType, v8::GCCallbackFlags);
45 static void minorGCPrologue(v8::Isolate*);
46 static void minorGCEpilogue(v8::Isolate*);
47 static void majorGCPrologue(bool constructRetainedObjectInfos, v8::Isolate*);
48 static void majorGCEpilogue(v8::Isolate*);
51 static void collectGarbage(v8
[all...]
H A DScriptScope.h34 #include <v8.h>
44 v8::Local<v8::Object> global() const { return m_context->Global(); }
47 v8::HandleScope m_handleScope;
48 v8::Local<v8::Context> m_context;
49 v8::Context::Scope m_scope;
50 v8::TryCatch m_exceptionCatcher;
H A DV8ObjectConstructor.h34 #include "bindings/v8/V8PerIsolateData.h"
36 #include <v8.h>
70 static v8::Local<v8::Object> newInstance(v8::Handle<v8::Function>);
71 static v8::Local<v8::Object> newInstance(v8::Handle<v8
[all...]
H A DCustomElementWrapper.cpp32 #include "bindings/v8/CustomElementWrapper.h"
38 #include "bindings/v8/DOMDataStore.h"
39 #include "bindings/v8/DOMWrapperWorld.h"
40 #include "bindings/v8/V8PerContextData.h"
49 v8::Handle<v8::Object> createDirectWrapper(ElementType*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
52 v8
[all...]
H A DV8EventListenerList.h34 #include "bindings/v8/V8EventListener.h"
35 #include "bindings/v8/V8HiddenPropertyName.h"
37 #include <v8.h>
49 // This is a container for V8EventListener objects that uses hidden properties of v8::Object to speed up lookups.
52 static PassRefPtr<V8EventListener> findWrapper(v8::Local<v8::Value> value, v8::Isolate* isolate)
58 v8::Handle<v8::String> wrapperProperty = getHiddenProperty(false, isolate);
59 return doFindWrapper(v8
[all...]
H A DV8NPUtils.h34 #include <v8.h>
39 void convertV8ObjectToNPVariant(v8::Local<v8::Value>, NPObject*, NPVariant*, v8::Isolate*);
43 v8::Handle<v8::Value> convertNPVariantToV8Object(const NPVariant*, NPObject*, v8::Isolate*);
45 // Helper function to create an NPN String Identifier from a v8 string.
46 NPIdentifier getStringIdentifier(v8::Handle<v8
[all...]
H A DV8DOMConfiguration.h32 #include "bindings/v8/V8DOMWrapper.h"
33 #include <v8.h>
49 v8::AccessorGetterCallback getter;
50 v8::AccessorSetterCallback setter;
51 v8::AccessorGetterCallback getterForMainWorld;
52 v8::AccessorSetterCallback setterForMainWorld;
54 v8::AccessControl settings;
55 v8::PropertyAttribute attribute;
63 v8::FunctionCallback getter;
64 v8
[all...]
/external/chromium_org/gin/public/
H A Dcontext_holder.h13 #include "v8/include/v8.h"
17 // Gin embedder that store embedder data in v8::Contexts must do so in a
28 // ContextHolder is a generic class for holding a v8::Context. Rather than
33 explicit ContextHolder(v8::Isolate* isolate);
36 v8::Isolate* isolate() const { return isolate_; }
38 v8::Handle<v8::Context> context() const {
39 return v8::Local<v8
[all...]
/external/v8/src/extensions/
H A Dgc-extension.cc30 namespace v8 { namespace
36 v8::Handle<v8::FunctionTemplate> GCExtension::GetNativeFunction(
37 v8::Handle<v8::String> str) {
38 return v8::FunctionTemplate::New(GCExtension::GC);
42 v8::Handle<v8::Value> GCExtension::GC(const v8::Arguments& args) {
44 return v8
[all...]
/external/chromium_org/chrome/renderer/extensions/
H A Dfile_system_natives.h19 void GetFileEntry(const v8::FunctionCallbackInfo<v8::Value>& args);
20 void GetIsolatedFileSystem(const v8::FunctionCallbackInfo<v8::Value>& args);
22 const v8::FunctionCallbackInfo<v8::Value>& args);
24 void GetDOMError(const v8::FunctionCallbackInfo<v8::Value>& args);
H A Dactivity_log_converter_strategy.cc10 bool ActivityLogConverterStrategy::FromV8Object(v8::Handle<v8::Object> value,
12 v8::Isolate* isolate) const {
16 bool ActivityLogConverterStrategy::FromV8Array(v8::Handle<v8::Array> value,
18 v8::Isolate* isolate) const {
23 v8::Handle<v8::Object> value,
25 v8::Isolate* isolate) const {
38 v8
[all...]
/external/chromium_org/gin/
H A Dconverter.h13 #include "v8/include/v8.h"
22 static v8::Handle<v8::Value> ToV8(v8::Isolate* isolate,
24 static bool FromV8(v8::Isolate* isolate,
25 v8::Handle<v8::Value> val,
31 static v8::Handle<v8
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8ArrayBufferViewCustom.h34 #include "bindings/v8/V8Binding.h"
35 #include "bindings/v8/V8ObjectConstructor.h"
36 #include "bindings/v8/custom/V8ArrayBufferCustom.h"
46 static bool hasInstance(v8::Handle<v8::Value> value, v8::Isolate*, WrapperWorldType)
50 static bool hasInstanceInAnyWorld(v8::Handle<v8::Value> value, v8::Isolate*)
54 static ArrayBufferView* toNative(v8
[all...]
H A DV8CustomXPathNSResolver.h38 #include <v8.h>
47 static PassRefPtr<V8CustomXPathNSResolver> create(v8::Handle<v8::Object> resolver, v8::Isolate*);
53 V8CustomXPathNSResolver(v8::Handle<v8::Object> resolver, v8::Isolate*);
55 v8::Handle<v8::Object> m_resolver; // Handle to resolver object.
56 v8
[all...]
H A DV8ImageDataCustom.cpp34 #include "bindings/v8/custom/V8Uint8ClampedArrayCustom.h"
38 v8::Handle<v8::Object> wrap(ImageData* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
41 v8::Handle<v8::Object> wrapper = V8ImageData::createWrapper(impl, creationContext, isolate);
44 v8::Handle<v8
[all...]
/external/chromium_org/mojo/apps/js/bindings/
H A Dhandle.h15 static v8::Handle<v8::Value> ToV8(v8::Isolate* isolate,
17 static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val,
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DJavaScriptCallFrame.h35 #include "bindings/v8/ScopedPersistent.h"
36 #include "bindings/v8/ScriptWrappable.h"
37 #include <v8-debug.h>
47 static PassRefPtr<JavaScriptCallFrame> create(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame)
60 v8::Handle<v8::Value> scopeChain() const;
62 v8
[all...]
H A DJavaScriptCallFrame.cpp34 #include "bindings/v8/ScriptValue.h"
35 #include "bindings/v8/V8Binding.h"
39 JavaScriptCallFrame::JavaScriptCallFrame(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame)
40 : m_isolate(v8::Isolate::GetCurrent())
54 v8::HandleScope handleScope(m_isolate);
55 v8::Handle<v8
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebTestingSupport.cpp31 #include <v8/include/v8.h>
37 v8::HandleScope handleScope(v8::Isolate::GetCurrent());
43 v8::HandleScope handleScope(v8::Isolate::GetCurrent());
/external/chromium_org/chrome/renderer/
H A Dnet_benchmarking_extension.cc10 #include "v8/include/v8.h"
14 const char kNetBenchmarkingExtensionName[] = "v8/NetBenchmarking";
18 class NetBenchmarkingWrapper : public v8::Extension {
21 v8::Extension(kNetBenchmarkingExtensionName,
50 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
51 v8::Isolate* isolate,
52 v8::Handle<v8
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
H A DV8TestCallbackInterface.cpp37 #include "bindings/v8/V8Binding.h"
38 #include "bindings/v8/V8Callback.h"
45 V8TestCallbackInterface::V8TestCallbackInterface(v8::Handle<v8::Function> callback, ExecutionContext* context)
61 v8::Isolate* isolate = v8::Isolate::GetCurrent();
62 v8::HandleScope handleScope(isolate);
64 v8::Handle<v8::Context> v8Context = toV8Context(executionContext(), m_world.get());
68 v8
[all...]
/external/v8/samples/
H A Dlineprocessor.cc36 #include <v8.h>
39 #include <v8-debug.h>
108 const char* ToCString(const v8::String::Utf8Value& value);
109 void ReportException(v8::TryCatch* handler);
110 v8::Handle<v8::String> ReadFile(const char* name);
111 v8::Handle<v8::String> ReadLine();
113 v8::Handle<v8
[all...]

Completed in 359 milliseconds

1234567891011>>