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

1234567891011>>

/external/chromium_org/v8/src/
H A Dstring-search.cc5 #include "src/v8.h"
8 namespace v8 { namespace
18 }} // namespace v8::internal
/external/llvm/test/MC/AArch64/
H A Darm64-verbose-vector-case.s3 pmull v8.8h, v8.8b, v8.8b
4 pmull2 v8.8h, v8.16b, v8.16b
5 pmull v8.1q, v8.1d, v8.1d
6 pmull2 v8
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DV8NPObject.h34 #include <v8.h>
42 void npObjectNamedPropertyGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>&);
43 void npObjectIndexedPropertyGetter(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>&);
44 void npObjectGetNamedProperty(v8::Local<v8::Object> self, v8
[all...]
H A DV8ScriptRunner.h33 #include <v8.h>
45 static v8::Local<v8::Script> compileScript(const ScriptSourceCode&, v8::Isolate*, AccessControlStatus = SharableCrossOrigin);
46 static v8::Local<v8::Script> compileScript(v8::Handle<v8::String>, const String& fileName, const TextPosition&, ScriptResource*, v8::Isolate*, AccessControlStatus = SharableCrossOrigin);
47 static v8
[all...]
H A DCustomElementWrapper.h36 #include <v8.h>
48 friend v8::Handle<v8::Object> createV8HTMLWrapper(HTMLElement*, v8::Handle<v8::Object>, v8::Isolate*);
49 friend v8::Handle<v8::Object> createV8SVGWrapper(SVGElement*, v8::Handle<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 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*);
50 static void collectGarbage(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::Isolate* isolate, v8::Handle<v8::Function> function)
40 return v8::Local<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, ScriptState* scriptState)
47 v8::Local<v8::Function> V8EventListener::getListenerFunction(ExecutionContext*)
49 v8::Local<v8::Object> listener = getListenerObject(scriptState()->executionContext());
53 return v8
[all...]
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, ScriptState* scriptState)
50 static void storeExceptionOnErrorEventWrapper(ErrorEvent*, v8::Handle<v8::Value>, v8::Handle<v8::Object> creationContext, v8::Isolate*);
53 V8ErrorHandler(v8
[all...]
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationTestHelper.h9 #include <v8.h>
13 v8::Handle<v8::Value> stringToV8Value(String);
15 v8::Handle<v8::Value> doubleToV8Value(double);
17 void setV8ObjectPropertyAsString(v8::Handle<v8::Object>, String, String);
19 void setV8ObjectPropertyAsNumber(v8::Handle<v8::Object>, String, double);
/external/chromium_org/v8/src/extensions/
H A Dgc-extension.cc8 namespace v8 { namespace
12 v8::Handle<v8::FunctionTemplate> GCExtension::GetNativeFunctionTemplate(
13 v8::Isolate* isolate,
14 v8::Handle<v8::String> str) {
15 return v8::FunctionTemplate::New(isolate, GCExtension::GC);
19 void GCExtension::GC(const v8::FunctionCallbackInfo<v8::Value>& args) {
21 args[0]->BooleanValue() ? v8
[all...]
H A Dtrigger-failure-extension.h8 #include "src/v8.h"
10 namespace v8 { namespace
13 class TriggerFailureExtension : public v8::Extension {
15 TriggerFailureExtension() : v8::Extension("v8/trigger-failure", kSource) {}
16 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
17 v8::Isolate* isolate,
18 v8::Handle<v8
[all...]
H A Dfree-buffer-extension.h8 #include "src/v8.h"
10 namespace v8 { namespace
13 class FreeBufferExtension : public v8::Extension {
16 : v8::Extension("v8/free-buffer", "native function freeBuffer();") {}
17 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
18 v8::Isolate* isolate,
19 v8::Handle<v8
[all...]
H A Dstatistics-extension.h8 #include "src/v8.h"
10 namespace v8 { namespace
13 class StatisticsExtension : public v8::Extension {
15 StatisticsExtension() : v8::Extension("v8/statistics", kSource) {}
16 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
17 v8::Isolate* isolate,
18 v8::Handle<v8
[all...]
H A Dfree-buffer-extension.cc7 #include "src/v8.h"
9 namespace v8 { namespace
13 v8::Handle<v8::FunctionTemplate> FreeBufferExtension::GetNativeFunctionTemplate(
14 v8::Isolate* isolate,
15 v8::Handle<v8::String> str) {
16 return v8::FunctionTemplate::New(isolate, FreeBufferExtension::FreeBuffer);
21 const v8::FunctionCallbackInfo<v8
[all...]
H A Dtrigger-failure-extension.cc6 #include "src/v8.h"
8 namespace v8 { namespace
18 v8::Handle<v8::FunctionTemplate>
20 v8::Isolate* isolate,
21 v8::Handle<v8::String> str) {
22 if (strcmp(*v8::String::Utf8Value(str), "triggerCheckFalse") == 0) {
23 return v8::FunctionTemplate::New(
26 } else if (strcmp(*v8
[all...]
H A Dexternalize-string-extension.h8 #include "src/v8.h"
10 namespace v8 { namespace
13 class ExternalizeStringExtension : public v8::Extension {
15 ExternalizeStringExtension() : v8::Extension("v8/externalize", kSource) {}
16 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
17 v8::Isolate* isolate,
18 v8::Handle<v8
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-platform-macos.cc32 #include "src/v8.h"
35 using namespace ::v8::internal;
H A Dprint-extension.h31 #include "src/v8.h"
33 namespace v8 { namespace
36 class PrintExtension : public v8::Extension {
38 PrintExtension() : v8::Extension("v8/print", "native function print();") { }
39 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
40 v8::Isolate* isolate,
41 v8::Handle<v8
[all...]
H A Dprofiler-extension.h33 #include "include/v8-profiler.h"
35 namespace v8 { namespace
38 class ProfilerExtension : public v8::Extension {
40 ProfilerExtension() : v8::Extension("v8/profiler", kSource) { }
41 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
42 v8::Isolate* isolate,
43 v8::Handle<v8
[all...]
H A Dtrace-extension.h31 #include "src/v8.h"
33 namespace v8 { namespace
36 class TraceExtension : public v8::Extension {
38 TraceExtension() : v8::Extension("v8/trace", kSource) { }
39 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
40 v8::Isolate* isolate,
41 v8::Handle<v8
[all...]
/external/chromium_org/extensions/renderer/
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/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...]

Completed in 636 milliseconds

1234567891011>>