Searched refs:v8 (Results 1 - 25 of 1998) sorted by relevance

1234567891011>>

/external/chromium_org/v8/src/
H A Dstring-search.cc28 #include "v8.h"
31 namespace v8 { namespace
41 }} // namespace v8::internal
/external/v8/src/
H A Dstring-search.cc28 #include "v8.h"
31 namespace v8 { namespace
41 }} // namespace v8::internal
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DV8NPObject.h35 #include <v8.h>
41 void npObjectNamedPropertyGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>&);
42 void npObjectIndexedPropertyGetter(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>&);
43 void npObjectGetNamedProperty(v8::Local<v8::Object> self, v8
[all...]
H A DV8ScriptRunner.h33 #include <v8.h>
44 static PassOwnPtr<v8::ScriptData> precompileScript(v8::Handle<v8::String>, ScriptResource*);
45 static v8::Local<v8::Script> compileScript(v8::Handle<v8::String>, const String&, const TextPosition&, v8::ScriptData*, v8
[all...]
H A DV8ThrowException.h29 #include <v8.h>
44 static v8::Handle<v8::Value> createDOMException(int ec, const String& message, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate)
48 static v8::Handle<v8::Value> createDOMException(int, const String& sanitizedMessage, const String& unsanitizedMessage, const v8::Handle<v8
[all...]
H A DCustomElementWrapper.h35 #include <v8.h>
47 friend v8::Handle<v8::Object> createV8HTMLWrapper(HTMLElement*, v8::Handle<v8::Object>, v8::Isolate*);
48 friend v8::Handle<v8::Object> createV8SVGWrapper(SVGElement*, v8::Handle<v8
[all...]
H A DV8ObjectConstructor.cpp26 #include "bindings/v8/V8ObjectConstructor.h"
28 #include "bindings/v8/V8Binding.h"
29 #include "bindings/v8/V8ScriptRunner.h"
37 v8::Local<v8::Object> V8ObjectConstructor::newInstance(v8::Handle<v8::Function> function)
40 return v8::Local<v8::Object>();
45 v8
[all...]
H A DV8EventListener.cpp32 #include "bindings/v8/V8EventListener.h"
34 #include "bindings/v8/ScriptController.h"
35 #include "bindings/v8/V8Binding.h"
41 V8EventListener::V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, v8::Isolate* isolate)
47 v8::Local<v8::Function> V8EventListener::getListenerFunction(ExecutionContext* context)
49 v8::Local<v8
[all...]
H A DV8ScriptRunner.cpp27 #include "bindings/v8/V8ScriptRunner.h"
29 #include "bindings/v8/V8Binding.h"
30 #include "bindings/v8/V8GCController.h"
31 #include "bindings/v8/V8RecursionScope.h"
39 PassOwnPtr<v8::ScriptData> V8ScriptRunner::precompileScript(v8::Handle<v8::String> code, ScriptResource* resource)
41 TRACE_EVENT0("v8", "v8.compile");
55 return adoptPtr(v8
[all...]
H A DScheduledAction.h34 #include "bindings/v8/ScopedPersistent.h"
35 #include "bindings/v8/ScriptSourceCode.h"
36 #include "bindings/v8/UnsafePersistent.h"
37 #include <v8.h>
50 ScheduledAction(v8::Handle<v8::Context>, v8::Handle<v8::Function>, int argc, v8::Handle<v8
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8PromiseCustom.h28 #include "bindings/v8/WrapperTypeInfo.h"
30 #include <v8.h>
65 static v8::Local<v8::Object> createPromise(v8::Handle<v8::Object> creationContext, v8::Isolate*);
68 static v8::Local<v8::Object> getInternal(v8
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-platform-macos.cc32 #include "v8.h"
35 using namespace ::v8::internal;
H A Dtest-thread-termination.cc28 #include "v8.h"
33 v8::internal::Semaphore* semaphore = NULL;
36 void Signal(const v8::FunctionCallbackInfo<v8::Value>& args) {
41 void TerminateCurrentThread(const v8::FunctionCallbackInfo<v8::Value>& args) {
42 CHECK(!v8::V8::IsExecutionTerminating(args.GetIsolate()));
43 v8::V8::TerminateExecution(args.GetIsolate());
47 void Fail(const v8::FunctionCallbackInfo<v8
[all...]
/external/v8/test/cctest/
H A Dtest-platform-macos.cc7 #include "v8.h"
10 using namespace ::v8::internal;
H A Dtest-thread-termination.cc28 #include "v8.h"
33 v8::internal::Semaphore* semaphore = NULL;
36 v8::Handle<v8::Value> Signal(const v8::Arguments& args) {
38 return v8::Undefined();
42 v8::Handle<v8::Value> TerminateCurrentThread(const v8::Arguments& args) {
43 CHECK(!v8
[all...]
/external/chromium_org/v8/src/extensions/
H A Dfree-buffer-extension.h31 #include "v8.h"
33 namespace v8 { namespace
36 class FreeBufferExtension : public v8::Extension {
39 : v8::Extension("v8/free-buffer", source) {}
40 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
41 v8::Isolate* isolate,
42 v8::Handle<v8
[all...]
H A Dgc-extension.h31 #include "v8.h"
33 namespace v8 { namespace
36 class GCExtension : public v8::Extension {
38 explicit GCExtension(const char* source) : v8::Extension("v8/gc", source) {}
39 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
40 v8::Isolate* isolate,
41 v8::Handle<v8
[all...]
H A Dstatistics-extension.h31 #include "v8.h"
33 namespace v8 { namespace
36 class StatisticsExtension : public v8::Extension {
38 StatisticsExtension() : v8::Extension("v8/statistics", kSource) {}
39 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
40 v8::Isolate* isolate,
41 v8::Handle<v8
[all...]
H A Dexternalize-string-extension.h31 #include "v8.h"
33 namespace v8 { namespace
36 class ExternalizeStringExtension : public v8::Extension {
38 ExternalizeStringExtension() : v8::Extension("v8/externalize", kSource) {}
39 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
40 v8::Isolate* isolate,
41 v8::Handle<v8
[all...]
/external/v8/src/extensions/
H A Dgc-extension.h31 #include "v8.h"
33 namespace v8 { namespace
36 class GCExtension : public v8::Extension {
38 GCExtension() : v8::Extension("v8/gc", kSource) {}
39 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction(
40 v8::Handle<v8::String> name);
41 static v8
[all...]
H A Dexternalize-string-extension.h31 #include "v8.h"
33 namespace v8 { namespace
36 class ExternalizeStringExtension : public v8::Extension {
38 ExternalizeStringExtension() : v8::Extension("v8/externalize", kSource) {}
39 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction(
40 v8::Handle<v8::String> name);
41 static v8
[all...]
/external/chromium_org/chrome/renderer/extensions/
H A Dsafe_builtins.h8 #include "v8/include/v8.h"
17 // Creates the v8::Extension which manages SafeBuiltins instances.
18 static v8::Extension* CreateV8Extension();
31 v8::Local<v8::Object> GetArray() const;
32 v8::Local<v8::Object> GetFunction() const;
33 v8::Local<v8
[all...]
/external/chromium_org/chrome/renderer/
H A Dplayback_extension.cc7 #include "v8/include/v8.h"
9 const char kPlaybackExtensionName[] = "v8/PlaybackMode";
13 v8::Extension* PlaybackExtension::Get() {
14 v8::Extension* extension = new v8::Extension(
/external/chromium_org/content/shell/renderer/
H A Dgc_extension.cc7 #include "v8/include/v8.h"
9 const char kGCExtensionName[] = "v8/GCController";
14 v8::Extension* GCExtension::Get() {
15 v8::Extension* extension = new v8::Extension(
/external/chromium_org/gin/
H A Dper_isolate_data.h13 #include "v8/include/v8.h"
17 // There is one instance of PerIsolateData per v8::Isolate managed by Gin. This
21 explicit PerIsolateData(v8::Isolate* isolate);
24 static PerIsolateData* From(v8::Isolate* isolate);
26 // Each isolate is associated with a collection of v8::ObjectTemplates and
27 // v8::FunctionTemplates. Typically these template objects are created
30 v8::Local<v8::ObjectTemplate> object_template);
32 v8
[all...]

Completed in 2399 milliseconds

1234567891011>>