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

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8ObjectConstructor.h34 #include "bindings/core/v8/V8PerIsolateData.h"
35 #include "bindings/core/v8/V8RecursionScope.h"
37 #include <v8.h>
50 ConstructorMode(v8::Isolate* isolate)
65 static bool current(v8::Isolate* isolate)
71 v8::Isolate* m_isolate;
78 static v8::Local<v8::Object> newInstance(v8::Isolate*, v8
[all...]
H A DCustomElementBinding.h34 #include "bindings/core/v8/ScopedPersistent.h"
36 #include <v8.h>
42 static PassOwnPtr<CustomElementBinding> create(v8::Isolate*, v8::Handle<v8::Object> prototype);
46 v8::Handle<v8::Object> prototype() { return m_prototype.newLocal(m_isolate); }
49 CustomElementBinding(v8::Isolate*, v8::Handle<v8
[all...]
H A DV8HiddenValue.cpp6 #include "bindings/core/v8/V8HiddenValue.h"
8 #include "bindings/core/v8/ScriptWrappable.h"
9 #include "bindings/core/v8/V8Binding.h"
14 v8::Handle<v8::String> V8HiddenValue::name(v8::Isolate* isolate) \
25 v8::Local<v8::Value> V8HiddenValue::getHiddenValue(v8::Isolate* isolate, v8
[all...]
H A DScriptString.h34 #include "bindings/core/v8/SharedPersistent.h"
37 #include <v8.h>
44 ScriptString(v8::Isolate*, v8::Handle<v8::String>);
47 v8::Isolate* isolate()
50 m_isolate = v8::Isolate::GetCurrent();
55 v8::Handle<v8::String> v8Value();
60 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.cpp30 #include "bindings/core/v8/V8DOMConfiguration.h"
32 #include "bindings/core/v8/V8ObjectConstructor.h"
37 void V8DOMConfiguration::installAttributes(v8::Handle<v8::ObjectTemplate> instanceTemplate, v8::Handle<v8::ObjectTemplate> prototype, const AttributeConfiguration* attributes, size_t attributeCount, v8::Isolate* isolate)
43 void V8DOMConfiguration::installAccessors(v8::Handle<v8::ObjectTemplate> prototype, v8
[all...]
H A DV8ScriptRunner.cpp27 #include "bindings/core/v8/V8ScriptRunner.h"
29 #include "bindings/core/v8/ScriptSourceCode.h"
30 #include "bindings/core/v8/ScriptStreamer.h"
31 #include "bindings/core/v8/V8Binding.h"
32 #include "bindings/core/v8/V8GCController.h"
33 #include "bindings/core/v8/V8RecursionScope.h"
34 #include "bindings/core/v8/V8ThrowException.h"
45 // v8::Function::Call, we don't call handleMaxRecursionDepthExceeded
46 // directly. Instead, we create a v8::Function of
48 void throwStackOverflowException(const v8
[all...]
/external/chromium_org/v8/include/libplatform/
H A Dlibplatform.h8 #include "include/v8-platform.h"
10 namespace v8 { namespace
14 * Returns a new instance of the default v8::Platform implementation.
21 v8::Platform* CreateDefaultPlatform(int thread_pool_size = 0);
32 bool PumpMessageLoop(v8::Platform* platform, v8::Isolate* isolate);
36 } // namespace v8
/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.
31 explicit ContextHolder(v8::Isolate* isolate);
34 v8::Isolate* isolate() const { return isolate_; }
36 v8::Handle<v8::Context> context() const {
37 return v8::Local<v8
[all...]
/external/chromium_org/v8/test/cctest/
H A Dprint-extension.cc30 namespace v8 { namespace
33 v8::Handle<v8::FunctionTemplate> PrintExtension::GetNativeFunctionTemplate(
34 v8::Isolate* isolate,
35 v8::Handle<v8::String> str) {
36 return v8::FunctionTemplate::New(isolate, PrintExtension::Print);
40 void PrintExtension::Print(const v8::FunctionCallbackInfo<v8::Value>& args) {
43 v8
[all...]
H A Dprofiler-extension.cc33 namespace v8 { namespace
37 v8::CpuProfile* ProfilerExtension::last_profile = NULL;
42 v8::Handle<v8::FunctionTemplate> ProfilerExtension::GetNativeFunctionTemplate(
43 v8::Isolate* isolate, v8::Handle<v8::String> name) {
44 if (name->Equals(v8::String::NewFromUtf8(isolate, "startProfiling"))) {
45 return v8::FunctionTemplate::New(isolate,
47 } else if (name->Equals(v8
[all...]
/external/chromium_org/extensions/renderer/
H A Druntime_custom_bindings.h10 #include "v8/include/v8.h"
22 void OpenChannelToExtension(const v8::FunctionCallbackInfo<v8::Value>& args);
25 void OpenChannelToNativeApp(const v8::FunctionCallbackInfo<v8::Value>& args);
28 void GetManifest(const v8::FunctionCallbackInfo<v8::Value>& args);
29 void GetExtensionViews(const v8::FunctionCallbackInfo<v8
[all...]
H A Duser_gestures_native_handler.h17 void IsProcessingUserGesture(const v8::FunctionCallbackInfo<v8::Value>& args);
18 void RunWithUserGesture(const v8::FunctionCallbackInfo<v8::Value>& args);
19 void RunWithoutUserGesture(const v8::FunctionCallbackInfo<v8::Value>& args);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8ArrayBufferViewCustom.h34 #include "bindings/core/v8/V8Binding.h"
35 #include "bindings/core/v8/V8ObjectConstructor.h"
36 #include "bindings/core/v8/custom/V8ArrayBufferCustom.h"
46 static bool hasInstance(v8::Handle<v8::Value> value, v8::Isolate*)
50 static ArrayBufferView* toImpl(v8::Handle<v8::Object>);
51 static ArrayBufferView* toImplWithTypeCheck(v8::Isolate*, v8
[all...]
H A DV8HTMLPlugInElementCustom.cpp34 #include "bindings/core/v8/NPV8Object.h"
35 #include "bindings/core/v8/SharedPersistent.h"
36 #include "bindings/core/v8/V8Binding.h"
37 #include "bindings/core/v8/V8HTMLAppletElement.h"
38 #include "bindings/core/v8/V8HTMLEmbedElement.h"
39 #include "bindings/core/v8/V8HTMLObjectElement.h"
40 #include "bindings/core/v8/V8NPObject.h"
50 void getScriptableObjectProperty(PropertyType property, const v8::PropertyCallbackInfo<v8::Value>& info)
53 RefPtr<SharedPersistent<v8
[all...]
H A DV8CustomXPathNSResolver.h38 #include <v8.h>
47 static PassRefPtrWillBeRawPtr<V8CustomXPathNSResolver> create(v8::Handle<v8::Object> resolver, v8::Isolate*);
54 V8CustomXPathNSResolver(v8::Handle<v8::Object> resolver, v8::Isolate*);
56 v8::Handle<v8::Object> m_resolver; // Handle to resolver object.
57 v8
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebTestingSupport.cpp29 #include "core/testing/v8/WebCoreTestSupport.h"
31 #include <v8/include/v8.h>
37 v8::HandleScope handleScope(v8::Isolate::GetCurrent());
43 v8::HandleScope handleScope(v8::Isolate::GetCurrent());
H A DWebArrayBufferConverter.cpp34 #include "bindings/core/v8/custom/V8ArrayBufferCustom.h"
40 v8::Handle<v8::Value> WebArrayBufferConverter::toV8Value(WebArrayBuffer* buffer, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
43 return v8::Handle<v8::Value>();
47 WebArrayBuffer* WebArrayBufferConverter::createFromV8Value(v8::Handle<v8
[all...]
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationTestHelper.cpp8 #include "bindings/core/v8/V8Binding.h"
12 v8::Handle<v8::Value> stringToV8Value(String string)
14 return v8::Handle<v8::Value>::Cast(v8String(v8::Isolate::GetCurrent(), string));
17 v8::Handle<v8::Value> doubleToV8Value(double number)
19 return v8::Handle<v8
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DJavaScriptCallFrame.cpp34 #include "bindings/core/v8/ScriptValue.h"
35 #include "bindings/core/v8/V8Binding.h"
36 #include <v8-debug.h>
40 JavaScriptCallFrame::JavaScriptCallFrame(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame)
41 : m_isolate(v8::Isolate::GetCurrent())
54 v8::HandleScope handleScope(m_isolate);
55 v8
[all...]
/external/pdfium/fpdfsdk/include/jsapi/
H A Dfxjs_v8.h10 #include <v8.h>
40 typedef v8::Isolate IJS_Runtime;
48 #define JS_PROPGET_ARGS v8::Local<v8::String> property,const v8::PropertyCallbackInfo<v8::Value>& info
49 #define JS_PROPPUT_ARGS v8::Local<v8::String> property,v8::Local<v8
[all...]
/external/chromium_org/third_party/skia/experimental/SkV8Example/
H A DPath2D.h13 #include <v8.h>
28 static void ConstructPath(const v8::FunctionCallbackInfo<v8::Value>& args);
34 static void ClosePath(const v8::FunctionCallbackInfo<v8::Value>& args);
35 static void MoveTo(const v8::FunctionCallbackInfo<v8::Value>& args);
36 static void LineTo(const v8::FunctionCallbackInfo<v8::Value>& args);
38 const v8
[all...]
/external/skia/experimental/SkV8Example/
H A DPath2D.h13 #include <v8.h>
28 static void ConstructPath(const v8::FunctionCallbackInfo<v8::Value>& args);
34 static void ClosePath(const v8::FunctionCallbackInfo<v8::Value>& args);
35 static void MoveTo(const v8::FunctionCallbackInfo<v8::Value>& args);
36 static void LineTo(const v8::FunctionCallbackInfo<v8::Value>& args);
38 const v8
[all...]
/external/chromium_org/content/renderer/
H A Dv8_value_converter_impl.h34 virtual v8::Handle<v8::Value> ToV8Value(
36 v8::Handle<v8::Context> context) const OVERRIDE;
38 v8::Handle<v8::Value> value,
39 v8::Handle<v8::Context> context) const OVERRIDE;
46 v8::Local<v8
[all...]
/external/chromium_org/v8/src/extensions/
H A Dgc-extension.h8 #include "src/v8.h"
10 namespace v8 { namespace
13 class GCExtension : public v8::Extension {
16 : v8::Extension("v8/gc",
18 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
19 v8::Isolate* isolate,
20 v8::Handle<v8
[all...]

Completed in 781 milliseconds

1234567891011>>