/third_party/node/deps/v8/src/logging/ |
H A D | metrics.cc | 13 class Recorder::Task : public v8::Task { 15 explicit Task(const std::shared_ptr<Recorder>& recorder) in Task() 19 std::queue<std::unique_ptr<Recorder::DelayedEventBase>> delayed_events; 31 std::shared_ptr<Recorder> recorder_; 34 void Recorder::SetEmbedderRecorder( in SetEmbedderRecorder() 36 const std::shared_ptr<v8::metrics::Recorder>& embedder_recorder) { in SetEmbedderRecorder() 43 bool Recorder::HasEmbedderRecorder() const { return embedder_recorder_.get(); } in HasEmbedderRecorder() 45 void Recorder::NotifyIsolateDisposal() { in NotifyIsolateDisposal() 51 void Recorder::Delay(std::unique_ptr<Recorder [all...] |
H A D | metrics.h | 23 class Recorder : public std::enable_shared_from_this<Recorder> { class 27 const std::shared_ptr<v8::metrics::Recorder>& embedder_recorder); 35 v8::metrics::Recorder::ContextId id) { in AddMainThreadEvent() 42 v8::metrics::Recorder::ContextId id) { in DelayMainThreadEvent() 57 virtual void Run(const std::shared_ptr<Recorder>& recorder) = 0; 63 DelayedEvent(const T& event, v8::metrics::Recorder::ContextId id) in DelayedEvent() 66 void Run(const std::shared_ptr<Recorder>& recorder) override { 72 v8::metrics::Recorder::ContextId id_; 78 std::unique_ptr<Recorder [all...] |
/third_party/skia/experimental/graphite/src/ |
H A D | Recorder.cpp | 8 #include "experimental/graphite/src/Recorder.h" 22 Recorder::Recorder(sk_sp<Context> context) in Recorder() function in skgpu::Recorder 30 Recorder::~Recorder() {} in ~Recorder() 32 Context* Recorder::context() const { in context() 36 ProgramCache* Recorder::programCache() { in programCache() 40 UniformCache* Recorder::uniformCache() { in uniformCache() 44 DrawBufferManager* Recorder::drawBufferManager() { in drawBufferManager() 48 void Recorder [all...] |
H A D | Recorder.h | 22 class Recorder final : public SkRefCnt { 24 Recorder(sk_sp<Context>); 25 ~Recorder() override;
|
H A D | Device.h | 25 class Recorder; 33 static sk_sp<Device> Make(sk_sp<Recorder>, const SkImageInfo&); 35 sk_sp<Recorder> refRecorder() { return fRecorder; } in refRecorder() 132 Device(sk_sp<Recorder>, sk_sp<DrawContext>); 159 sk_sp<Recorder> fRecorder;
|
H A D | DrawContext.h | 23 class Recorder; 82 void snapDrawPass(Recorder*, const BoundsManager* occlusionCuller); 93 sk_sp<Task> snapRenderPassTask(Recorder*, const BoundsManager* occlusionCuller);
|
H A D | DrawPass.h | 23 class Recorder; 43 static std::unique_ptr<DrawPass> Make(Recorder*,
|
H A D | Context.cpp | 15 #include "experimental/graphite/src/Recorder.h" 38 sk_sp<Recorder> Context::createRecorder() { in createRecorder() 39 return sk_make_sp<Recorder>(sk_ref_sp(this)); in createRecorder()
|
H A D | DrawContext.cpp | 91 void DrawContext::snapDrawPass(Recorder* recorder, const BoundsManager* occlusionCuller) { in snapDrawPass() 105 sk_sp<Task> DrawContext::snapRenderPassTask(Recorder* recorder, in snapRenderPassTask()
|
H A D | DrawPass.cpp | 17 #include "experimental/graphite/src/Recorder.h" 32 std::tuple<uint32_t, uint32_t> get_ids_from_paint(skgpu::Recorder* recorder, in get_ids_from_paint() 134 skgpu::UniformData* lookup(skgpu::Recorder* recorder, uint32_t uniformID) { in lookup() 154 std::unique_ptr<DrawPass> DrawPass::Make(Recorder* recorder, in Make()
|
H A D | SkStuff.cpp | 11 #include "experimental/graphite/src/Recorder.h" 14 sk_sp<SkSurface> MakeGraphite(sk_sp<skgpu::Recorder> recorder, const SkImageInfo& ii) { in MakeGraphite()
|
/third_party/node/deps/v8/src/libplatform/tracing/ |
H A D | recorder-mac.cc | 16 Recorder::Recorder() { v8Provider = os_log_create("v8", ""); } in Recorder() function in v8::platform::tracing::Recorder 17 Recorder::~Recorder() {} in ~Recorder() 19 bool Recorder::IsEnabled() { in IsEnabled() 22 bool Recorder::IsEnabled(const uint8_t level) { in IsEnabled() 31 void Recorder::AddEvent(TraceObject* trace_event) { in AddEvent()
|
H A D | recorder-win.cc | 24 Recorder::Recorder() { TraceLoggingRegister(g_v8LibProvider); } in Recorder() function in v8::platform::tracing::Recorder 26 Recorder::~Recorder() { in ~Recorder() 32 bool Recorder::IsEnabled() { in IsEnabled() 36 bool Recorder::IsEnabled(const uint8_t level) { in IsEnabled() 40 void Recorder::AddEvent(TraceObject* trace_event) { in AddEvent()
|
H A D | recorder.h | 39 class V8_PLATFORM_EXPORT Recorder { class 41 Recorder(); 42 ~Recorder();
|
H A D | trace-writer.h | 14 class Recorder; 41 std::unique_ptr<Recorder> recorder_;
|
/third_party/skia/experimental/graphite/include/ |
H A D | SkStuff.h | 17 class Recorder; 21 sk_sp<SkSurface> MakeGraphite(sk_sp<skgpu::Recorder>, const SkImageInfo&);
|
H A D | Context.h | 23 class Recorder; 59 sk_sp<Recorder> createRecorder();
|
/third_party/node/deps/v8/src/wasm/ |
H A D | module-decoder.h | 157 Counters* counters, std::shared_ptr<metrics::Recorder> metrics_recorder, 158 v8::metrics::Recorder::ContextId context_id, DecodingMethod decoding_method, 215 std::shared_ptr<metrics::Recorder> metrics_recorder, 216 v8::metrics::Recorder::ContextId context_id,
|
H A D | module-compiler.h | 57 v8::metrics::Recorder::ContextId context_id); 143 v8::metrics::Recorder::ContextId context_id() const { return context_id_; } in context_id() 229 v8::metrics::Recorder::ContextId context_id_;
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-metrics.h | 171 class V8_EXPORT Recorder { class 195 virtual ~Recorder() = default; 214 // Recorder::GetContextId() and the ID will be valid throughout the lifetime 216 // a valid context using Recorder::GetContext() at the time the metric is
|
/third_party/node/deps/v8/include/ |
H A D | v8-metrics.h | 170 * Recorder::GetContextId() and the ID will be valid throughout the lifetime 172 * a valid context using Recorder::GetContext() at the time the metric is 179 class V8_EXPORT Recorder { class 203 virtual ~Recorder() = default;
|
/third_party/node/deps/v8/src/heap/cppgc-js/ |
H A D | cpp-heap.cc | 318 // non-nested steps, report to the Recorder directly. in AddMainThreadEvent() 324 const std::shared_ptr<metrics::Recorder>& recorder = in AddMainThreadEvent() 341 // report to the Recorder directly. in AddMainThreadEvent() 342 const std::shared_ptr<metrics::Recorder>& recorder = in AddMainThreadEvent() 357 const std::shared_ptr<metrics::Recorder>& recorder = in FlushBatchedIncrementalEvents() 414 v8::metrics::Recorder::ContextId CppHeap::MetricRecorderAdapter::GetContextId() in GetContextId() 418 return v8::metrics::Recorder::ContextId::Empty(); in GetContextId()
|
/third_party/skia/tests/ |
H A D | RecorderTest.cpp | 42 DEF_TEST(Recorder, r) { in DEF_TEST()
|
/third_party/skia/tests/graphite/ |
H A D | UniformCacheTest.cpp | 12 #include "experimental/graphite/src/Recorder.h" 44 Recorder recorder(sk_ref_sp(context)); in DEF_GRAPHITE_TEST_FOR_CONTEXTS()
|
H A D | ProgramCacheTest.cpp | 12 #include "experimental/graphite/src/Recorder.h" 17 Recorder recorder(sk_ref_sp(context)); in DEF_GRAPHITE_TEST_FOR_CONTEXTS()
|