HomeSort by relevance Sort by last modified time
    Searched refs:PlatformInstrumentation (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/
PlatformInstrumentation.cpp 33 #include "platform/PlatformInstrumentation.h"
37 const char PlatformInstrumentation::CategoryName[] = TRACE_DISABLED_BY_DEFAULT("devtools.timeline");
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()
blink_platform.target.darwin-arm.mk 73 third_party/WebKit/Source/platform/PlatformInstrumentation.cpp \
    [all...]
blink_platform.target.darwin-arm64.mk 72 third_party/WebKit/Source/platform/PlatformInstrumentation.cpp \
    [all...]
blink_platform.target.darwin-mips.mk 72 third_party/WebKit/Source/platform/PlatformInstrumentation.cpp \
    [all...]
blink_platform.target.darwin-mips64.mk 72 third_party/WebKit/Source/platform/PlatformInstrumentation.cpp \
    [all...]
blink_platform.target.darwin-x86.mk 72 third_party/WebKit/Source/platform/PlatformInstrumentation.cpp \
    [all...]
blink_platform.target.darwin-x86_64.mk 72 third_party/WebKit/Source/platform/PlatformInstrumentation.cpp \
    [all...]
blink_platform.target.linux-arm.mk 73 third_party/WebKit/Source/platform/PlatformInstrumentation.cpp \
    [all...]
blink_platform.target.linux-arm64.mk 72 third_party/WebKit/Source/platform/PlatformInstrumentation.cpp \
    [all...]
blink_platform.target.linux-mips.mk 72 third_party/WebKit/Source/platform/PlatformInstrumentation.cpp \
    [all...]
blink_platform.target.linux-mips64.mk 72 third_party/WebKit/Source/platform/PlatformInstrumentation.cpp \
    [all...]
blink_platform.target.linux-x86.mk 72 third_party/WebKit/Source/platform/PlatformInstrumentation.cpp \
    [all...]
blink_platform.target.linux-x86_64.mk 72 third_party/WebKit/Source/platform/PlatformInstrumentation.cpp \
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
DecodingImageGenerator.cpp 31 #include "platform/PlatformInstrumentation.h"
81 PlatformInstrumentation::willDecodeLazyPixelRef(m_generationId);
83 PlatformInstrumentation::didDecodeLazyPixelRef();
96 PlatformInstrumentation::willDecodeLazyPixelRef(m_generationId);
98 PlatformInstrumentation::didDecodeLazyPixelRef();
  /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/platform/graphics/skia/
NativeImageSkia.cpp 34 #include "platform/PlatformInstrumentation.h"
140 PlatformInstrumentation::willResizeImage(shouldCache);
143 PlatformInstrumentation::didResizeImage();
177 PlatformInstrumentation::didDrawLazyPixelRef(bitmap().getGenerationID());
303 PlatformInstrumentation::didDrawLazyPixelRef(bitmap().getGenerationID());
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorTimelineAgent.cpp 411 dispatcher->addListener(PlatformInstrumentation::ImageDecodeEvent, TRACE_EVENT_PHASE_BEGIN, InspectorTimelineAgentTraceEventListener::create(this, &InspectorTimelineAgent::onImageDecodeBegin), m_client);
412 dispatcher->addListener(PlatformInstrumentation::ImageDecodeEvent, TRACE_EVENT_PHASE_END, InspectorTimelineAgentTraceEventListener::create(this, &InspectorTimelineAgent::onImageDecodeEnd), m_client);
413 dispatcher->addListener(PlatformInstrumentation::DrawLazyPixelRefEvent, TRACE_EVENT_PHASE_INSTANT, InspectorTimelineAgentTraceEventListener::create(this, &InspectorTimelineAgent::onDrawLazyPixelRef), m_client);
414 dispatcher->addListener(PlatformInstrumentation::DecodeLazyPixelRefEvent, TRACE_EVENT_PHASE_BEGIN, InspectorTimelineAgentTraceEventListener::create(this, &InspectorTimelineAgent::onDecodeLazyPixelRefBegin), m_client);
415 dispatcher->addListener(PlatformInstrumentation::DecodeLazyPixelRefEvent, TRACE_EVENT_PHASE_END, InspectorTimelineAgentTraceEventListener::create(this, &InspectorTimelineAgent::onDecodeLazyPixelRefEnd), m_client);
416 dispatcher->addListener(PlatformInstrumentation::LazyPixelRef, TRACE_EVENT_PHASE_DELETE_OBJECT, InspectorTimelineAgentTraceEventListener::create(this, &InspectorTimelineAgent::onLazyPixelRefDeleted), m_client);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageDecoder.cpp 30 #include "platform/PlatformInstrumentation.h"
115 PlatformInstrumentation::willDecodeImage("GIF");
117 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"
253 PlatformInstrumentation::willDecodeImage("PNG");
255 PlatformInstrumentation::didDecodeImage();
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
JPEGImageDecoder.cpp 43 #include "platform/PlatformInstrumentation.h"
755 PlatformInstrumentation::willDecodeImage("JPEG");
757 PlatformInstrumentation::didDecodeImage();
773 PlatformInstrumentation::willDecodeImage("JPEG");
775 PlatformInstrumentation::didDecodeImage();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
WEBPImageDecoder.cpp 32 #include "platform/PlatformInstrumentation.h"
213 PlatformInstrumentation::willDecodeImage("WEBP");
215 PlatformInstrumentation::didDecodeImage();

Completed in 1424 milliseconds