Searched refs:v8 (Results 201 - 225 of 1755) sorted by relevance

1234567891011>>

/external/v8/src/profiler/
H A Dsampling-heap-profiler.h12 #include "include/v8-profiler.h"
16 namespace v8 { namespace
26 class AllocationProfile : public v8::AllocationProfile {
30 v8::AllocationProfile::Node* GetRootNode() override {
34 std::deque<v8::AllocationProfile::Node>& nodes() { return nodes_; }
37 std::deque<v8::AllocationProfile::Node> nodes_;
45 int stack_depth, v8::HeapProfiler::SamplingFlags flags);
48 v8::AllocationProfile* GetAllocationProfile();
61 reinterpret_cast<v8::Isolate*>(profiler_->isolate_), local_)),
96 if (script_id == v8
[all...]
H A Dtracing-cpu-profiler.h8 #include "include/v8-platform.h"
9 #include "include/v8-profiler.h"
14 namespace v8 { namespace
21 private v8::Platform::TraceStateObserver {
26 // v8::Platform::TraceStateObserver
43 } // namespace v8
H A Dsampling-heap-profiler.cc17 namespace v8 { namespace
44 v8::AllocationProfile::Allocation SamplingHeapProfiler::ScaleSample(
53 v8::HeapProfiler::SamplingFlags flags)
63 profile_root_(nullptr, "(root)", v8::UnboundScript::kNoScriptId, 0),
108 Local<v8::Value> loc = v8::Utils::ToLocal(obj);
192 return node->FindOrAddChildNode(name, v8::UnboundScript::kNoScriptId, 0);
200 int script_id = v8::UnboundScript::kNoScriptId;
210 v8::AllocationProfile::Node* SamplingHeapProfiler::TranslateAllocationNode(
216 Local<v8
[all...]
/external/v8/src/snapshot/
H A Dsnapshot-external.cc11 #include "src/v8.h" // for V8::Initialize
19 namespace v8 { namespace
23 static v8::StartupData external_startup_blob = {NULL, 0};
37 const v8::StartupData* Snapshot::DefaultSnapshotBlob() {
43 } // namespace v8
/external/pdfium/testing/
H A Dtest_support.h87 namespace v8 { namespace
91 namespace v8 { namespace
96 v8::StartupData* natives_blob,
97 v8::StartupData* snapshot_blob,
98 v8::Platform** platform);
101 v8::Platform** platform);
/external/pdfium/fxjs/
H A Dcjs_printparamsobj.h33 explicit CJS_PrintParamsObj(v8::Local<v8::Object> pObject)
H A Dcjs_timerobj.h31 explicit CJS_TimerObj(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {}
H A Dcjs_globalarrays.cpp12 v8::Local<v8::Array> array = (rt)->NewArray(); \
17 (name), [](const v8::FunctionCallbackInfo<v8::Value>& info) { \
H A Dcjs_object.cpp18 ? pEngine->NewNumber(consts[i].number).As<v8::Value>()
19 : pEngine->NewString(consts[i].pStr).As<v8::Value>());
43 CJS_Object::CJS_Object(v8::Local<v8::Object> pObject) {
/external/pdfium/fxjs/xfa/
H A Dcjx_list.cpp35 const std::vector<v8::Local<v8::Value>>& params) {
48 const std::vector<v8::Local<v8::Value>>& params) {
62 const std::vector<v8::Local<v8::Value>>& params) {
75 const std::vector<v8::Local<v8::Value>>& params) {
H A Dcjx_layoutpseudomodel.cpp73 const std::vector<v8::Local<v8::Value>>& params,
130 const std::vector<v8::Local<v8::Value>>& params) {
136 const std::vector<v8::Local<v8::Value>>& params) {
142 const std::vector<v8::Local<v8::Value>>& params) {
148 const std::vector<v8::Local<v8
[all...]
/external/v8/src/debug/
H A Ddebug.h25 #include "include/v8-debug.h"
27 namespace v8 { namespace
468 Handle<Script> script, v8::DebugEvent type);
470 v8::debug::PromiseDebugActionType type, int id);
472 void ProcessCompileEvent(v8::DebugEvent event, Handle<Script> script);
473 void ProcessDebugEvent(v8::DebugEvent event, Handle<JSObject> event_data);
598 class LegacyDebugDelegate : public v8::debug::DebugDelegate {
601 void PromiseEventOccurred(v8::debug::PromiseDebugActionType type, int id,
603 void ScriptCompiled(v8::Local<v8
[all...]
/external/v8/src/third_party/vtune/
H A Dvtune-jit.cc65 #include "v8-vtune.h"
163 void VTUNEJITInterface::event_handler(const v8::JitCodeEvent* event) {
166 case v8::JitCodeEvent::CODE_ADDED: {
226 case v8::JitCodeEvent::CODE_MOVED:
229 case v8::JitCodeEvent::CODE_REMOVED:
231 case v8::JitCodeEvent::CODE_ADD_LINE_POS_INFO: {
240 case v8::JitCodeEvent::CODE_START_LINE_INFO_RECORDING: {
241 v8::JitCodeEvent* temp_event = const_cast<v8::JitCodeEvent*>(event);
245 case v8
[all...]
/external/llvm/test/MC/AArch64/
H A Dfullfp16-neon-neg.s56 fmla v3.8h, v8.8h, v2.h[1]
60 fmls v3.8h, v8.8h, v2.h[1]
96 fcmge v3.4h, v8.4h, v12.4h
100 fcmle v3.4h, v12.4h, v8.4h
120 fcmge v3.4h, v8.4h, #0.0
124 fcmge v3.4h, v8.4h, #0
138 fcmle v1.8h, v8.8h, #0.0
142 fcmle v1.8h, v8.8h, #0
160 facgt v3.4h, v8.4h, v12.4h
164 faclt v3.4h, v12.4h, v8
[all...]
/external/v8/src/arm/
H A Dcodegen-arm.h10 namespace v8 { namespace
31 } // namespace v8
H A Dinterface-descriptors-arm.h10 namespace v8 { namespace
24 } // namespace v8
/external/v8/src/arm64/
H A Dcodegen-arm64.h10 namespace v8 { namespace
30 } // namespace v8
H A Dinterface-descriptors-arm64.h10 namespace v8 { namespace
24 } // namespace v8
/external/v8/src/ast/
H A Dast-function-literal-id-reindexer.cc10 namespace v8 { namespace
29 } // namespace v8
H A Dast-function-literal-id-reindexer.h11 namespace v8 { namespace
34 } // namespace v8
/external/v8/src/
H A Dcached-powers.h11 namespace v8 { namespace
41 } // namespace v8
H A Dchar-predicates.cc12 namespace v8 { namespace
42 } // namespace v8
/external/v8/src/compiler/
H A Dbasic-block-instrumentor.h11 namespace v8 { namespace
29 } // namespace v8
H A Dcheckpoint-elimination.h12 namespace v8 { namespace
31 } // namespace v8
H A Dgraph-replay.h10 namespace v8 { namespace
38 } // namespace v8

Completed in 1133 milliseconds

1234567891011>>