HomeSort by relevance Sort by last modified time
    Searched refs:v8 (Results 1 - 25 of 2272) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/MC/AArch64/
arm64-verbose-vector-case.s 3 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.1q, v8.2d, v8.2
    [all...]
  /external/v8/src/inspector/
v8-value-copier.h 1 // Copyright 2016 the V8 project authors. All rights reserved.
10 #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::Value>)
    [all...]
v8-injected-script-host.h 1 // Copyright 2015 the V8 project authors. All rights reserved.
8 #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>&)
    [all...]
v8-console.h 1 // Copyright 2016 the V8 project authors. All rights reserved.
10 #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*)
    [all...]
v8-internal-value-type.h 1 // Copyright 2016 the V8 project authors. All rights reserved.
8 #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>
    [all...]
java-script-call-frame.cc 38 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::Local<v8::Context>::New(m_isolate, m_debuggerContext)
    [all...]
v8-function-call.h 36 #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::Local<v8::Value> callWithoutExceptionHandling()
    [all...]
java-script-call-frame.h 39 #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::Local<v8::Value> expression
    [all...]
v8-internal-value-type.cc 1 // Copyright 2016 the V8 project authors. All rights reserved.
5 #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::String>()
    [all...]
v8-function-call.cc 31 #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::Value> value)
    [all...]
  /external/v8/src/extensions/
free-buffer-extension.h 1 // Copyright 2013 the V8 project authors. All rights reserved.
8 #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::String> name)
    [all...]
ignition-statistics-extension.h 1 // Copyright 2016 the V8 project authors. All rights reserved.
8 #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::String> name) override
    [all...]
statistics-extension.h 1 // Copyright 2010 the V8 project authors. All rights reserved.
8 #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::String> name)
    [all...]
externalize-string-extension.h 1 // Copyright 2010 the V8 project authors. All rights reserved.
8 #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::String> name)
    [all...]
trigger-failure-extension.h 1 // Copyright 2013 the V8 project authors. All rights reserved.
8 #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::String> name)
    [all...]
trigger-failure-extension.cc 1 // Copyright 2013 the V8 project authors. All rights reserved.
10 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)
    [all...]
gc-extension.cc 1 // Copyright 2010 the V8 project authors. All rights reserved.
9 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)
    [all...]
gc-extension.h 1 // Copyright 2010 the V8 project authors. All rights reserved.
8 #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::String> name)
    [all...]
ignition-statistics-extension.cc 1 // Copyright 2016 the V8 project authors. All rights reserved.
12 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::Value>& args)
    [all...]
  /external/pdfium/fxjs/
cjs_v8.h 10 #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::Value> NewNull()
    [all...]
cfxjse_runtimedata.h 12 #include "v8/include/v8.h"
20 static CFXJSE_RuntimeData* Get(v8::Isolate* pIsolate);
22 v8::Isolate* m_pIsolate;
23 v8::Global<v8::FunctionTemplate> m_hRootContextGlobalTemplate;
24 v8::Global<v8::Context> m_hRootContext;
27 explicit CFXJSE_RuntimeData(v8::Isolate* pIsolate);
29 static std::unique_ptr<CFXJSE_RuntimeData> Create(v8::Isolate* pIsolate)
    [all...]
cjs_publicmethods.h 17 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::Value>>& params)
    [all...]
fxjs_v8.h 7 // FXJS_V8 is a layer that makes it easier to define native objects in V8, but
11 // PDFium code should include this file rather than including V8 headers
17 #include <v8-util.h>
18 #include <v8.h>
53 class V8TemplateMapTraits : public v8::StdMapTraits<void*, v8::Object> {
55 typedef v8::GlobalValueMap<void*, v8::Object, V8TemplateMapTraits> MapType;
59 WeakCallbackParameter(MapType* map, void* key, v8::Local<v8::Object> value)
    [all...]
  /external/v8/include/libplatform/
libplatform.h 1 // Copyright 2014 the V8 project authors. All rights reserved.
9 #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
    [all...]
  /external/v8/src/
gdb-jit.h 1 // Copyright 2010 the V8 project authors. All rights reserved.
8 #include "include/v8.h"
12 // interface", V8 can tell GDB when it emits JIT code. Unfortunately to do so,
16 // was introduced in GDB 7.0. V8 support can be enabled with the --gdbjit flag.
18 // The other way that GDB can know about V8 code is via the "custom JIT reader"
19 // interface, in which a GDB extension parses V8's private data to determine the
21 // This interface was introduced in GDB 7.6. This interface still relies on V8
23 // that V8 create ELF images. Support will be added for this interface in the
27 namespace v8 { namespace
33 void EventHandler(const v8::JitCodeEvent* event)
    [all...]

Completed in 253 milliseconds

1 2 3 4 5 6 7 8 91011>>