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

  /external/chromium_org/third_party/WebKit/Source/core/page/
PagePopupController.idl 43 void histogramEnumeration(DOMString name, long sample, long boundaryValue);
PagePopupController.h 55 void histogramEnumeration(const String& name, int sample, int boundaryValue);
PagePopupController.cpp 110 void PagePopupController::histogramEnumeration(const String& name, int sample, int boundaryValue)
112 blink::Platform::current()->histogramEnumeration(name.utf8().data(), sample, boundaryValue);
  /external/chromium_org/third_party/WebKit/Source/core/css/
LocalFontFaceSource.cpp 33 blink::Platform::current()->histogramEnumeration("WebFont.LocalFontUsed", loadSuccess ? 1 : 0, 2);
RemoteFontFaceSource.cpp 172 blink::Platform::current()->histogramEnumeration("WebFont.CacheHit", histogramValue, CacheHitEnumMax);
176 blink::Platform::current()->histogramEnumeration("WebFont.CORSSuccess", corsValue, CORSEnumMax);
FontFaceSet.cpp 556 blink::Platform::current()->histogramEnumeration("WebFont.HadBlankText", m_status == HadBlankText ? 1 : 0, 2);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ViewportDescription.cpp 226 Platform::current()->histogramEnumeration("Viewport.MetaTagType", XhtmlMobileProfile, TypeCount);
228 Platform::current()->histogramEnumeration("Viewport.MetaTagType", NoViewportTag, TypeCount);
235 Platform::current()->histogramEnumeration("Viewport.MetaTagType", ConstantWidth, TypeCount);
249 Platform::current()->histogramEnumeration("Viewport.MetaTagType", DeviceWidth, TypeCount);
252 Platform::current()->histogramEnumeration("Viewport.MetaTagType", MetaWidthOther, TypeCount);
255 Platform::current()->histogramEnumeration("Viewport.MetaTagType", MetaHandheldFriendly, TypeCount);
257 Platform::current()->histogramEnumeration("Viewport.MetaTagType", MobileOptimizedMeta, TypeCount);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptStreamer.cpp 224 blink::Platform::current()->histogramEnumeration(startedStreamingHistogramName(scriptType), 0, 2);
284 blink::Platform::current()->histogramEnumeration(histogramName, 0, 2);
295 blink::Platform::current()->histogramEnumeration(histogramName, 0, 2);
306 blink::Platform::current()->histogramEnumeration(histogramName, 1, 2);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8InspectorFrontendHostCustom.cpp 162 static void histogramEnumeration(const char* name, const v8::FunctionCallbackInfo<v8::Value>& info, int boundaryValue)
169 blink::Platform::current()->histogramEnumeration(name, sample, boundaryValue);
174 histogramEnumeration("DevTools.ActionTaken", info, 100);
179 histogramEnumeration("DevTools.PanelShown", info, 20);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBFactory.cpp 106 Platform::current()->histogramEnumeration("WebCore.IndexedDB.FrontEndAPICalls", IDBOpenCall, IDBMethodsMax);
141 Platform::current()->histogramEnumeration("WebCore.IndexedDB.FrontEndAPICalls", IDBDeleteDatabaseCall, IDBMethodsMax);
IDBDatabase.cpp 219 Platform::current()->histogramEnumeration("WebCore.IndexedDB.FrontEndAPICalls", IDBCreateObjectStoreCall, IDBMethodsMax);
268 Platform::current()->histogramEnumeration("WebCore.IndexedDB.FrontEndAPICalls", IDBDeleteObjectStoreCall, IDBMethodsMax);
301 Platform::current()->histogramEnumeration("WebCore.IndexedDB.FrontEndAPICalls", IDBTransactionCall, IDBMethodsMax);
  /external/chromium_org/third_party/WebKit/Source/core/frame/
UseCounter.cpp 545 blink::Platform::current()->histogramEnumeration("WebCore.FeatureObserver", PageDestruction, NumberOfFeatures);
552 blink::Platform::current()->histogramEnumeration("WebCore.FeatureObserver", PageVisits, NumberOfFeatures);
557 blink::Platform::current()->histogramEnumeration("WebCore.FeatureObserver", i, NumberOfFeatures);
570 blink::Platform::current()->histogramEnumeration("WebCore.FeatureObserver.CSSProperties", cssSampleId, maximumCSSSampleId());
576 blink::Platform::current()->histogramEnumeration("WebCore.FeatureObserver.CSSProperties", totalPagesMeasuredCSSSampleId(), maximumCSSSampleId());
    [all...]
  /external/chromium_org/content/child/
blink_platform_impl.h 97 virtual void histogramEnumeration(
blink_platform_impl.cc 535 void BlinkPlatformImpl::histogramEnumeration(
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
FontResource.cpp 74 blink::Platform::current()->histogramEnumeration("WebFont.PackageFormat", format, PackageFormatEnumMax);
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
DOMWebSocket.cpp 388 Platform::current()->histogramEnumeration("WebCore.WebSocket.SendType", WebSocketSendTypeString, WebSocketSendTypeMax);
406 Platform::current()->histogramEnumeration("WebCore.WebSocket.SendType", WebSocketSendTypeArrayBuffer, WebSocketSendTypeMax);
424 Platform::current()->histogramEnumeration("WebCore.WebSocket.SendType", WebSocketSendTypeArrayBufferView, WebSocketSendTypeMax);
443 Platform::current()->histogramEnumeration("WebCore.WebSocket.SendType", WebSocketSendTypeBlob, WebSocketSendTypeMax);
WebSocketPerMessageDeflate.cpp 140 Platform::current()->histogramEnumeration("WebCore.WebSocket.PerMessageDeflateContextTakeOverMode", mode, WebSocketDeflater::ContextTakeOverModeMax);
WebSocketHandshake.cpp 136 Platform::current()->histogramEnumeration("WebCore.WebSocket.HandshakeResult", m_mode, WebSocketHandshake::ModeMax);
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLScriptRunner.cpp 256 blink::Platform::current()->histogramEnumeration("WebCore.Scripts.ParsingBlocking.AlreadyLoaded", m_parserBlockingScriptAlreadyLoaded ? 1 : 0, 2);
  /external/chromium_org/third_party/WebKit/public/platform/
Platform.h 550 virtual void histogramEnumeration(const char* name, int sample, int boundaryValue) { }
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLCanvasElement.cpp 169 blink::Platform::current()->histogramEnumeration("Canvas.ContextType", Context2d, ContextTypeCount);
180 blink::Platform::current()->histogramEnumeration("Canvas.ContextType", contextType, ContextTypeCount);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
RenderLayerCompositor.cpp 549 Platform::current()->histogramEnumeration("Renderer.AcceleratedFixedRootBackground",
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
ChromeClientImpl.cpp 770 Platform::current()->histogramEnumeration("Renderer.ModalDialogsDuringPageDismissal", dismissal * arraysize(kDialogs) + dialog, arraysize(kDialogs) * arraysize(kDismissals));
WebViewImpl.cpp     [all...]

Completed in 1439 milliseconds