/external/chromium_org/third_party/WebKit/Source/platform/ |
PlatformInstrumentation.cpp | 33 #include "platform/PlatformInstrumentation.h" 37 const char PlatformInstrumentation::CategoryName[] = "webkit"; 39 const char PlatformInstrumentation::ImageDecodeEvent[] = "Decode Image"; 40 const char PlatformInstrumentation::ImageResizeEvent[] = "Resize Image"; 41 const char PlatformInstrumentation::DrawLazyPixelRefEvent[] = "Draw LazyPixelRef"; 42 const char PlatformInstrumentation::DecodeLazyPixelRefEvent[] = "Decode LazyPixelRef"; 44 const char PlatformInstrumentation::LazyPixelRef[] = "LazyPixelRef"; 46 const char PlatformInstrumentation::ImageTypeArgument[] = "imageType"; 47 const char PlatformInstrumentation::CachedArgument[] = "cached"; 49 PlatformInstrumentationClient* PlatformInstrumentation::m_client [all...] |
PlatformInstrumentation.h | 51 class PLATFORM_EXPORT PlatformInstrumentation { 90 inline void PlatformInstrumentation::willDecodeImage(const String& imageType) 97 inline void PlatformInstrumentation::didDecodeImage() 104 inline void PlatformInstrumentation::willResizeImage(bool shouldCache) 111 inline void PlatformInstrumentation::didResizeImage() 118 inline void PlatformInstrumentation::didDrawLazyPixelRef(unsigned long long lazyPixelRefId) 123 inline void PlatformInstrumentation::willDecodeLazyPixelRef(unsigned long long lazyPixelRefId) 128 inline void PlatformInstrumentation::didDecodeLazyPixelRef(unsigned long long lazyPixelRefId)
|
blink_platform.target.darwin-arm.mk | 75 third_party/WebKit/Source/platform/PlatformInstrumentation.cpp \ [all...] |
blink_platform.target.darwin-mips.mk | 74 third_party/WebKit/Source/platform/PlatformInstrumentation.cpp \ [all...] |
blink_platform.target.darwin-x86.mk | 74 third_party/WebKit/Source/platform/PlatformInstrumentation.cpp \ [all...] |
blink_platform.target.linux-arm.mk | 75 third_party/WebKit/Source/platform/PlatformInstrumentation.cpp \ [all...] |
blink_platform.target.linux-mips.mk | 74 third_party/WebKit/Source/platform/PlatformInstrumentation.cpp \ [all...] |
blink_platform.target.linux-x86.mk | 74 third_party/WebKit/Source/platform/PlatformInstrumentation.cpp \ [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
LazyDecodingPixelRef.h | 34 #include "platform/PlatformInstrumentation.h" 77 PlatformInstrumentation::LazyPixelRefTracker m_objectTracker;
|
DecodingImageGenerator.cpp | 31 #include "platform/PlatformInstrumentation.h" 80 PlatformInstrumentation::willDecodeLazyPixelRef(m_generationId); 82 PlatformInstrumentation::didDecodeLazyPixelRef(m_generationId);
|
LazyDecodingPixelRef.cpp | 76 PlatformInstrumentation::willDecodeLazyPixelRef(getGenerationID()); 78 PlatformInstrumentation::didDecodeLazyPixelRef(getGenerationID());
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/ |
BMPImageDecoder.cpp | 34 #include "platform/PlatformInstrumentation.h" 82 PlatformInstrumentation::willDecodeImage("BMP"); 84 PlatformInstrumentation::didDecodeImage();
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorTimelineAgent.cpp | 362 dispatcher->addListener(PlatformInstrumentation::ImageDecodeEvent, TRACE_EVENT_PHASE_BEGIN, this, &InspectorTimelineAgent::onImageDecodeBegin, m_client); 363 dispatcher->addListener(PlatformInstrumentation::ImageDecodeEvent, TRACE_EVENT_PHASE_END, this, &InspectorTimelineAgent::onImageDecodeEnd, m_client); 364 dispatcher->addListener(PlatformInstrumentation::DrawLazyPixelRefEvent, TRACE_EVENT_PHASE_INSTANT, this, &InspectorTimelineAgent::onDrawLazyPixelRef, m_client); 365 dispatcher->addListener(PlatformInstrumentation::DecodeLazyPixelRefEvent, TRACE_EVENT_PHASE_BEGIN, this, &InspectorTimelineAgent::onDecodeLazyPixelRefBegin, m_client); 366 dispatcher->addListener(PlatformInstrumentation::DecodeLazyPixelRefEvent, TRACE_EVENT_PHASE_END, this, &InspectorTimelineAgent::onDecodeLazyPixelRefEnd, m_client); 367 dispatcher->addListener(PlatformInstrumentation::LazyPixelRef, TRACE_EVENT_PHASE_DELETE_OBJECT, this, &InspectorTimelineAgent::onLazyPixelRefDeleted, m_client); [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/ |
NativeImageSkia.cpp | 34 #include "platform/PlatformInstrumentation.h" 298 PlatformInstrumentation::willResizeImage(shouldCache); 301 PlatformInstrumentation::didResizeImage(); 378 PlatformInstrumentation::didDrawLazyPixelRef(bitmap().getGenerationID()); 502 PlatformInstrumentation::didDrawLazyPixelRef(bitmap().getGenerationID());
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/ |
WEBPImageDecoder.cpp | 33 #include "platform/PlatformInstrumentation.h" 137 PlatformInstrumentation::willDecodeImage("WEBP"); 139 PlatformInstrumentation::didDecodeImage(); 160 PlatformInstrumentation::willDecodeImage("WEBP"); 162 PlatformInstrumentation::didDecodeImage();
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/ |
GIFImageDecoder.cpp | 30 #include "platform/PlatformInstrumentation.h" 113 PlatformInstrumentation::willDecodeImage("GIF"); 115 PlatformInstrumentation::didDecodeImage();
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ico/ |
ICOImageDecoder.cpp | 36 #include "platform/PlatformInstrumentation.h" 124 PlatformInstrumentation::willDecodeImage("ICO"); 126 PlatformInstrumentation::didDecodeImage();
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/ |
PNGImageDecoder.cpp | 42 #include "platform/PlatformInstrumentation.h" 249 PlatformInstrumentation::willDecodeImage("PNG"); 251 PlatformInstrumentation::didDecodeImage();
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/ |
JPEGImageDecoder.cpp | 43 #include "platform/PlatformInstrumentation.h" 657 PlatformInstrumentation::willDecodeImage("JPEG"); 659 PlatformInstrumentation::didDecodeImage();
|