Home
last modified time | relevance | path

Searched refs:LazyPixelRef (Results 1 – 18 of 18) sorted by relevance

/external/chromium_org/skia/ext/
Dlazy_pixel_ref.cc11 LazyPixelRef::LazyPixelRef() { in LazyPixelRef() function in skia::LazyPixelRef
15 LazyPixelRef::LazyPixelRef(const SkImageInfo& info) : SkPixelRef(info) { in LazyPixelRef() function in skia::LazyPixelRef
18 LazyPixelRef::~LazyPixelRef() { in ~LazyPixelRef()
Dlazy_pixel_ref.h15 class SK_API LazyPixelRef : public SkPixelRef {
19 LazyPixelRef();
22 explicit LazyPixelRef(const SkImageInfo& info);
23 virtual ~LazyPixelRef();
Dlazy_pixel_ref_utils.h15 class LazyPixelRef; variable
20 skia::LazyPixelRef* lazy_pixel_ref;
Dlazy_pixel_ref_utils.cc39 static_cast<skia::LazyPixelRef*>(pixel_ref); in Add()
Dlazy_pixel_ref_utils_unittest.cc42 class TestLazyPixelRef : public skia::LazyPixelRef {
/external/chromium_org/third_party/WebKit/Source/platform/
DPlatformInstrumentation.h56 : TraceEvent::TraceScopedTrackableObject<void*>(CategoryName, LazyPixelRef, instance) in LazyPixelRefTracker()
69 static const char LazyPixelRef[]; variable
120 TRACE_EVENT_INSTANT1(CategoryName, DrawLazyPixelRefEvent, LazyPixelRef, lazyPixelRefId); in didDrawLazyPixelRef()
125 TRACE_EVENT_BEGIN1(CategoryName, DecodeLazyPixelRefEvent, LazyPixelRef, lazyPixelRefId); in willDecodeLazyPixelRef()
130 TRACE_EVENT_END1(CategoryName, DecodeLazyPixelRefEvent, LazyPixelRef, lazyPixelRefId); in didDecodeLazyPixelRef()
DPlatformInstrumentation.cpp44 const char PlatformInstrumentation::LazyPixelRef[] = "LazyPixelRef"; member in WebCore::PlatformInstrumentation
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DLazyDecodingPixelRef.h39 using skia::LazyPixelRef;
48 class LazyDecodingPixelRef : public LazyPixelRef {
61 virtual bool PrepareToDecode(const LazyPixelRef::PrepareParams&);
DLazyDecodingPixelRef.cpp37 : LazyPixelRef(info) in LazyDecodingPixelRef()
108 bool LazyDecodingPixelRef::PrepareToDecode(const LazyPixelRef::PrepareParams& params) in PrepareToDecode()
/external/chromium_org/cc/resources/
Dpicture.h43 typedef std::vector<skia::LazyPixelRef*> PixelRefs;
90 skia::LazyPixelRef* operator->() const {
95 skia::LazyPixelRef* operator*() const {
Dpicture_pile_impl.h90 skia::LazyPixelRef* operator->() const { return *pixel_ref_iterator_; }
91 skia::LazyPixelRef* operator*() const { return *pixel_ref_iterator_; }
Dtile_manager.h157 skia::LazyPixelRef* pixel_ref,
175 Tile* tile, skia::LazyPixelRef* pixel_ref);
Draster_worker_pool.h21 class LazyPixelRef; variable
207 skia::LazyPixelRef* pixel_ref,
Draster_worker_pool.cc256 ImageDecodeWorkerPoolTaskImpl(skia::LazyPixelRef* pixel_ref, in ImageDecodeWorkerPoolTaskImpl()
280 skia::RefPtr<skia::LazyPixelRef> pixel_ref_;
454 skia::LazyPixelRef* pixel_ref, in CreateImageDecodeTask()
Dtile_manager.cc837 Tile* tile, skia::LazyPixelRef* pixel_ref) { in CreateImageDecodeTask()
862 skia::LazyPixelRef* pixel_ref = *iter; in CreateRasterTask()
900 skia::LazyPixelRef* pixel_ref, in OnImageDecodeTaskCompleted()
/external/chromium_org/cc/test/
Dskia_common.h37 class TestLazyPixelRef : public skia::LazyPixelRef {
Dskia_common.cc35 : skia::LazyPixelRef(info), in TestLazyPixelRef()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorTimelineAgent.cpp367 …dispatcher->addListener(PlatformInstrumentation::LazyPixelRef, TRACE_EVENT_PHASE_DELETE_OBJECT, th… in innerStart()
993 unsigned long long pixelRefId = event.asUInt(PlatformInstrumentation::LazyPixelRef); in onDecodeLazyPixelRefBegin()
1006 unsigned long long pixelRefId = event.asUInt(PlatformInstrumentation::LazyPixelRef); in onDrawLazyPixelRef()