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

1234567891011>>

/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/v8/src/inspector/
H A Dv8-value-copier.h10 #include "include/v8.h"
14 v8::MaybeLocal<v8::Value> copyValueFromDebuggerContext(
15 v8::Isolate*, v8::Local<v8::Context> debuggerContext,
16 v8::Local<v8::Context> toContext, v8::Local<v8
[all...]
H A Dv8-console.h10 #include "include/v8.h"
20 static v8::Local<v8::Object> createConsole(InspectedContext*,
22 static void clearInspectedContextIfNeeded(v8::Local<v8::Context>,
23 v8::Local<v8::Object> console);
24 static v8::Local<v8::Object> createCommandLineAPI(InspectedContext*);
28 CommandLineAPIScope(v8
[all...]
H A Dv8-injected-script-host.h8 #include "include/v8.h"
27 static v8::Local<v8::Object> create(v8::Local<v8::Context>, V8InspectorImpl*);
31 const v8::FunctionCallbackInfo<v8::Value>&);
33 const v8::FunctionCallbackInfo<v8::Value>&);
34 static void subtypeCallback(const v8
[all...]
H A Dv8-internal-value-type.h8 #include "include/v8.h"
14 bool markAsInternal(v8::Local<v8::Context>, v8::Local<v8::Object>,
16 bool markArrayEntriesAsInternal(v8::Local<v8::Context>, v8::Local<v8::Array>,
18 v8
[all...]
H A Djava-script-call-frame.cc38 JavaScriptCallFrame::JavaScriptCallFrame(v8::Local<v8::Context> debuggerContext,
39 v8::Local<v8::Object> callFrame)
47 v8::HandleScope handleScope(m_isolate);
48 v8::MicrotasksScope microtasks(m_isolate,
49 v8::MicrotasksScope::kDoNotRunMicrotasks);
50 v8::Local<v8::Context> context =
51 v8
[all...]
H A Dv8-function-call.h36 #include "include/v8.h"
44 V8FunctionCall(V8InspectorImpl*, v8::Local<v8::Context>, v8::Local<v8::Value>,
47 void appendArgument(v8::Local<v8::Value>);
52 v8::Local<v8::Value> call(bool& hadException, bool reportExceptions = true);
53 v8
[all...]
H A Djava-script-call-frame.h39 #include "include/v8.h"
46 v8::Local<v8::Context> debuggerContext, v8::Local<v8::Object> callFrame) {
57 v8::Local<v8::Object> details() const;
59 v8::MaybeLocal<v8::Value> evaluate(v8
[all...]
H A Dv8-internal-value-type.cc5 #include "src/inspector/v8-internal-value-type.h"
14 v8::Local<v8::Private> internalSubtypePrivate(v8::Isolate* isolate) {
15 return v8::Private::ForApi(
20 v8::Local<v8::String> subtypeForInternalType(v8::Isolate* isolate,
33 return v8::Local<v8
[all...]
H A Dv8-function-call.cc31 #include "src/inspector/v8-function-call.h"
34 #include "src/inspector/v8-debugger.h"
35 #include "src/inspector/v8-inspector-impl.h"
37 #include "include/v8-inspector.h"
42 v8::Local<v8::Context> context,
43 v8::Local<v8::Value> value, const String16& name)
49 void V8FunctionCall::appendArgument(v8::Local<v8
[all...]
/external/v8/src/extensions/
H A Dtrigger-failure-extension.h8 #include "include/v8.h"
10 namespace v8 { namespace
13 class TriggerFailureExtension : public v8::Extension {
15 TriggerFailureExtension() : v8::Extension("v8/trigger-failure", kSource) {}
16 virtual v8::Local<v8::FunctionTemplate> GetNativeFunctionTemplate(
17 v8::Isolate* isolate, v8::Local<v8
[all...]
H A Dfree-buffer-extension.h8 #include "include/v8.h"
10 namespace v8 { namespace
13 class FreeBufferExtension : public v8::Extension {
16 : v8::Extension("v8/free-buffer", "native function freeBuffer();") {}
17 virtual v8::Local<v8::FunctionTemplate> GetNativeFunctionTemplate(
18 v8::Isolate* isolate, v8::Local<v8
[all...]
H A Dignition-statistics-extension.h8 #include "include/v8.h"
10 namespace v8 { namespace
13 class IgnitionStatisticsExtension : public v8::Extension {
16 : v8::Extension("v8/ignition-statistics", kSource) {}
18 v8::Local<v8::FunctionTemplate> GetNativeFunctionTemplate(
19 v8::Isolate* isolate, v8::Local<v8
[all...]
H A Dstatistics-extension.h8 #include "include/v8.h"
10 namespace v8 { namespace
13 class StatisticsExtension : public v8::Extension {
15 StatisticsExtension() : v8::Extension("v8/statistics", kSource) {}
16 virtual v8::Local<v8::FunctionTemplate> GetNativeFunctionTemplate(
17 v8::Isolate* isolate, v8::Local<v8
[all...]
H A Dfree-buffer-extension.cc10 namespace v8 { namespace
14 v8::Local<v8::FunctionTemplate> FreeBufferExtension::GetNativeFunctionTemplate(
15 v8::Isolate* isolate, v8::Local<v8::String> str) {
16 return v8::FunctionTemplate::New(isolate, FreeBufferExtension::FreeBuffer);
21 const v8::FunctionCallbackInfo<v8::Value>& args) {
22 v8
[all...]
H A Dtrigger-failure-extension.cc10 namespace v8 { namespace
20 v8::Local<v8::FunctionTemplate>
21 TriggerFailureExtension::GetNativeFunctionTemplate(v8::Isolate* isolate,
22 v8::Local<v8::String> str) {
23 if (strcmp(*v8::String::Utf8Value(str), "triggerCheckFalse") == 0) {
24 return v8::FunctionTemplate::New(
27 } else if (strcmp(*v8::String::Utf8Value(str), "triggerAssertFalse") == 0) {
28 return v8
[all...]
H A Dexternalize-string-extension.h8 #include "include/v8.h"
10 namespace v8 { namespace
13 class ExternalizeStringExtension : public v8::Extension {
15 ExternalizeStringExtension() : v8::Extension("v8/externalize", kSource) {}
16 virtual v8::Local<v8::FunctionTemplate> GetNativeFunctionTemplate(
17 v8::Isolate* isolate, v8::Local<v8
[all...]
H A Dgc-extension.cc9 namespace v8 { namespace
13 v8::Local<v8::FunctionTemplate> GCExtension::GetNativeFunctionTemplate(
14 v8::Isolate* isolate, v8::Local<v8::String> str) {
15 return v8::FunctionTemplate::New(isolate, GCExtension::GC);
19 void GCExtension::GC(const v8::FunctionCallbackInfo<v8::Value>& args) {
24 ? v8
[all...]
H A Dgc-extension.h8 #include "include/v8.h"
11 namespace v8 { namespace
14 class GCExtension : public v8::Extension {
17 : v8::Extension("v8/gc",
19 virtual v8::Local<v8::FunctionTemplate> GetNativeFunctionTemplate(
20 v8::Isolate* isolate, v8::Local<v8
[all...]
H A Dignition-statistics-extension.cc12 namespace v8 { namespace
15 v8::Local<v8::FunctionTemplate>
17 v8::Isolate* isolate, v8::Local<v8::String> name) {
18 DCHECK_EQ(strcmp(*v8::String::Utf8Value(name), "getIgnitionDispatchCounters"),
20 return v8::FunctionTemplate::New(
28 const v8::FunctionCallbackInfo<v8
[all...]
/external/skia/experimental/SkV8Example/
H A DDrawingMethods.h13 #include <v8.h>
32 void addAttributesAndMethods(v8::Handle<v8::ObjectTemplate> tmpl);
36 static DrawingMethods* Unwrap(v8::Handle<v8::Object> obj);
42 static void GetWidth(v8::Local<v8::String> name,
43 const v8::PropertyCallbackInfo<v8::Value>& info);
44 static void GetHeight(v8
[all...]
H A DPath2DBuilder.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...]
H A DGlobal.h15 #include <v8.h>
23 typedef v8::Persistent<v8::Function, v8::CopyablePersistentTraits<v8::Function> > CopyablePersistentFn;
29 Global(v8::Isolate* isolate)
42 v8::Local<v8::Context> getContext() {
43 return v8::Local<v8
[all...]
/external/pdfium/fxjs/
H A Dfxjs_v8.h17 #include <v8-util.h>
18 #include <v8.h>
51 class V8TemplateMapTraits : public v8::StdMapTraits<void*, v8::Object> {
53 typedef v8::GlobalValueMap<void*, v8::Object, V8TemplateMapTraits> MapType;
59 const v8::Local<v8::Object>& value) {
63 const v8::WeakCallbackInfo<WeakCallbackDataType>&);
66 const v8
[all...]
/external/v8/include/libplatform/
H A Dlibplatform.h9 #include "libplatform/v8-tracing.h"
10 #include "v8-platform.h" // NOLINT(build/include)
12 namespace v8 { namespace
16 * Returns a new instance of the default v8::Platform implementation.
23 V8_PLATFORM_EXPORT v8::Platform* CreateDefaultPlatform(
34 V8_PLATFORM_EXPORT bool PumpMessageLoop(v8::Platform* platform,
35 v8::Isolate* isolate);
43 v8::Platform* platform,
44 v8::platform::tracing::TracingController* tracing_controller);
47 } // namespace v8
[all...]

Completed in 1473 milliseconds

1234567891011>>