Searched refs:v8 (Results 1 - 25 of 1755) 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-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 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>&);
35 const 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) {
55 v8::MaybeLocal<v8::Object> details() const;
57 v8::MaybeLocal<v8::Value> evaluate(v8
[all...]
H A Dv8-internal-value-type.cc5 #include "src/inspector/v8-internal-value-type.h"
13 v8::Local<v8::Private> internalSubtypePrivate(v8::Isolate* isolate) {
14 return v8::Private::ForApi(
19 v8::Local<v8::String> subtypeForInternalType(v8::Isolate* isolate,
32 return v8::Local<v8
[all...]
H A Dv8-function-call.cc31 #include "src/inspector/v8-function-call.h"
35 #include "src/inspector/v8-debugger.h"
36 #include "src/inspector/v8-inspector-impl.h"
38 #include "include/v8-inspector.h"
43 v8::Local<v8::Context> context,
44 v8::Local<v8::Value> value, const String16& name)
50 void V8FunctionCall::appendArgument(v8::Local<v8
[all...]
H A Dv8-regex.cc5 #include "src/inspector/v8-regex.h"
10 #include "src/inspector/v8-inspector-impl.h"
12 #include "include/v8-inspector.h"
19 v8::Isolate* isolate = m_inspector->isolate();
20 v8::HandleScope handleScope(isolate);
21 v8::Local<v8::Context> context = m_inspector->regexContext();
22 v8::Context::Scope contextScope(context);
23 v8::TryCatch tryCatch(isolate);
25 unsigned flags = v8
[all...]
/external/pdfium/fxjs/
H A Dcjs_v8.h10 #include <v8-util.h>
11 #include <v8.h>
26 explicit CJS_V8(v8::Isolate* pIsolate);
29 v8::Isolate* GetIsolate() const { return m_isolate; }
31 v8::Local<v8::Context> NewLocalContext();
32 v8::Local<v8::Context> GetPersistentContext();
34 v8::Local<v8
[all...]
H A Dcjs_publicmethods.h17 explicit CJS_PublicMethods(v8::Local<v8::Object> pObject);
31 const std::vector<v8::Local<v8::Value>>& params);
34 const std::vector<v8::Local<v8::Value>>& params);
37 const std::vector<v8::Local<v8::Value>>& params);
40 const std::vector<v8::Local<v8
[all...]
H A Dcjs_global.h18 v8::Local<v8::String> property,
19 const v8::PropertyCallbackInfo<v8::Integer>& info);
20 static void getprop_static(v8::Local<v8::String> property,
21 const v8::PropertyCallbackInfo<v8::Value>& info);
22 static void putprop_static(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/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);
44 V8_PLATFORM_EXPORT void RunIdleTasks(v8::Platform* platform,
45 v8::Isolate* isolate,
54 v8
[all...]

Completed in 257 milliseconds

1234567891011>>