Searched refs:v8 (Results 26 - 50 of 1755) sorted by relevance

1234567891011>>

/external/pdfium/fxjs/
H A Dcjs_v8.cpp14 CJS_V8::CJS_V8(v8::Isolate* isolate) : m_isolate(isolate) {}
20 v8::Local<v8::Value> CJS_V8::GetObjectProperty(
21 v8::Local<v8::Object> pObj,
24 return v8::Local<v8::Value>();
25 v8::Local<v8::Value> val;
29 return v8
[all...]
H A Dcfxjse_context.cpp46 v8::Local<v8::Object> CreateReturnValue(v8::Isolate* pIsolate,
47 v8::TryCatch& trycatch) {
48 v8::Local<v8::Object> hReturnValue = v8::Object::New(pIsolate);
50 v8::Local<v8::Value> hException = trycatch.Exception();
51 v8
[all...]
H A Dcfxjse_value.cpp56 v8::Isolate* pIsolate = v8::Isolate::GetCurrent();
60 v8::Local<v8::String> hMessage = v8::String::NewFromUtf8(
61 pIsolate, utf8Message.unterminated_c_str(), v8::String::kNormalString,
63 v8::Local<v8::Value> hError = v8::Exception::Error(hMessage);
67 CFXJSE_Value::CFXJSE_Value(v8
[all...]
H A Dcfxjse_runtimedata.h12 #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
[all...]
H A Dcfxjse_runtimedata.cpp14 CFXJSE_RuntimeData::CFXJSE_RuntimeData(v8::Isolate* pIsolate)
20 v8::Isolate* pIsolate) {
25 v8::Local<v8::FunctionTemplate> hFuncTemplate =
26 v8::FunctionTemplate::New(pIsolate);
27 v8::Local<v8::ObjectTemplate> hGlobalTemplate =
30 v8::Symbol::GetToStringTag(pIsolate),
31 v8::String::NewFromUtf8(pIsolate, "global", v8
[all...]
H A Dcjs_document.h27 CJS_Return set_ADBE(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
30 CJS_Return set_author(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
33 CJS_Return set_base_URL(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
36 CJS_Return set_bookmark_root(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
39 CJS_Return set_calculate(CJS_Runtime* pRuntime, v8::Local<v8
[all...]
H A Dfxjs_v8.h17 #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) {
63 const v8::WeakCallbackInfo<WeakCallbackDataType>&);
66 const v8
[all...]
H A Dcfxjse_class.cpp22 const v8::FunctionCallbackInfo<v8::Value>& info) {
25 info.Data().As<v8::External>()->Value());
40 const v8::FunctionCallbackInfo<v8::Value>& info) {
46 info.Data().As<v8::External>()->Value());
55 const v8::FunctionCallbackInfo<v8::Value>& info) {
57 info.Data().As<v8::External>()->Value());
63 info.GetReturnValue().Set(v8
[all...]
/external/v8/src/inspector/
H A Dinjected-script-native.h12 #include "include/v8.h"
18 explicit InjectedScriptNative(v8::Isolate*);
21 void setOnInjectedScriptHost(v8::Local<v8::Object>);
22 static InjectedScriptNative* fromInjectedScriptHost(v8::Isolate* isolate,
23 v8::Local<v8::Object>);
25 int bind(v8::Local<v8::Value>, const String16& groupName);
27 v8
[all...]
H A Dv8-debugger.h15 #include "src/inspector/v8-debugger-script.h"
18 #include "include/v8-inspector.h"
29 class V8Debugger : public v8::debug::DebugDelegate {
31 V8Debugger(v8::Isolate*, V8InspectorImpl*);
42 v8::debug::ExceptionBreakState getPauseOnExceptionsState();
43 void setPauseOnExceptionsState(v8::debug::ExceptionBreakState);
53 const String16& sourceID, v8::Local<v8::String> newSource, bool dryRun,
59 // Each script inherits debug data from v8::Context where it has been
69 v8
[all...]
H A Dv8-value-copier.cc5 #include "src/inspector/v8-value-copier.h"
16 v8::MaybeLocal<v8::Value> copy(v8::Local<v8::Value> value, int depth) {
18 return v8::MaybeLocal<v8::Value>();
20 if (value.IsEmpty()) return v8::MaybeLocal<v8::Value>();
24 if (!value->IsObject()) return v8
[all...]
H A Dv8-inspector-impl.h39 #include "include/v8-inspector.h"
54 V8InspectorImpl(v8::Isolate*, V8InspectorClient*);
57 v8::Isolate* isolate() const { return m_isolate; }
60 int contextGroupId(v8::Local<v8::Context>);
63 v8::MaybeLocal<v8::Value> runCompiledScript(v8::Local<v8::Context>,
64 v8
[all...]
H A Dv8-debugger.cc5 #include "src/inspector/v8-debugger.h"
12 #include "src/inspector/v8-debugger-agent-impl.h"
13 #include "src/inspector/v8-inspector-impl.h"
14 #include "src/inspector/v8-internal-value-type.h"
15 #include "src/inspector/v8-stack-trace-impl.h"
16 #include "src/inspector/v8-value-copier.h"
18 #include "include/v8-util.h"
29 inline v8::Local<v8::Boolean> v8Boolean(bool value, v8
[all...]
H A Dv8-console.cc5 #include "src/inspector/v8-console.h"
11 #include "src/inspector/v8-console-message.h"
12 #include "src/inspector/v8-debugger-agent-impl.h"
13 #include "src/inspector/v8-inspector-impl.h"
14 #include "src/inspector/v8-inspector-session-impl.h"
15 #include "src/inspector/v8-profiler-agent-impl.h"
16 #include "src/inspector/v8-runtime-agent-impl.h"
17 #include "src/inspector/v8-stack-trace-impl.h"
18 #include "src/inspector/v8-value-copier.h"
20 #include "include/v8
[all...]
H A Dinjected-script-native.cc9 InjectedScriptNative::InjectedScriptNative(v8::Isolate* isolate)
12 static const char privateKeyName[] = "v8-inspector#injectedScript";
17 v8::Local<v8::Object> injectedScriptHost) {
18 v8::HandleScope handleScope(m_isolate);
19 v8::Local<v8::External> external = v8::External::New(m_isolate, this);
20 v8::Local<v8
[all...]
H A Dinjected-script.h39 #include "src/inspector/v8-console.h"
40 #include "src/inspector/v8-debugger.h"
42 #include "include/v8.h"
62 v8::Local<v8::Object>, const String16& groupName, bool ownProperties,
70 v8::Local<v8::Value>, const String16& groupName, bool forceValueType,
73 Response wrapObjectProperty(v8::Local<v8::Object>, v8
[all...]
/external/libmojo/mojo/edk/js/
H A Dcore.h8 #include "v8/include/v8.h"
17 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
H A Dsupport.h8 #include "v8/include/v8.h"
17 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
/external/v8/src/
H A Dgdb-jit.h8 #include "include/v8.h"
27 namespace v8 { namespace
33 void EventHandler(const v8::JitCodeEvent* event);
37 } // namespace v8
H A Dapi-experimental.h8 namespace v8 { namespace
21 v8::internal::MaybeHandle<v8::internal::Code> BuildCodeFromFastAccessorBuilder(
22 v8::experimental::FastAccessorBuilder* fast_handler);
26 } // namespace v8
H A Dv8.h8 #include "include/v8.h"
12 namespace v8 { namespace
27 static void InitializePlatform(v8::Platform* platform);
29 V8_EXPORT_PRIVATE static v8::Platform* GetCurrentPlatform();
32 static void SetPlatformForTesting(v8::Platform* platform);
41 // v8::Platform to use.
42 static v8::Platform* platform_;
46 } // namespace v8
/external/v8/samples/
H A Dshell.cc28 #include <include/v8.h>
47 v8::Local<v8::Context> CreateShellContext(v8::Isolate* isolate);
48 void RunShell(v8::Local<v8::Context> context, v8::Platform* platform);
49 int RunMain(v8::Isolate* isolate, v8::Platform* platform, int argc,
51 bool ExecuteString(v8
[all...]
/external/v8/src/tracing/
H A Dtrace-event.cc12 #include "src/v8.h"
14 namespace v8 { namespace
18 v8::Platform* TraceEventHelper::GetCurrentPlatform() {
19 return v8::internal::V8::GetCurrentPlatform();
24 auto value = v8::tracing::TracedValue::Create();
26 v8::internal::tracing::AddTraceEvent(
28 v8::internal::tracing::kGlobalScope, v8::internal::tracing::kNoId,
29 v8::internal::tracing::kNoId, TRACE_EVENT_FLAG_NONE,
32 v8
[all...]
/external/v8/src/s390/
H A Dcpu-s390.cc6 #include "src/v8.h"
11 namespace v8 { namespace
23 } // namespace v8
/external/v8/src/third_party/vtune/
H A Dv8-vtune.h61 #include "../../../include/v8.h"
65 v8::JitCodeEventHandler GetVtuneCodeEventHandler();

Completed in 342 milliseconds

1234567891011>>