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

  /external/webkit/Source/WebCore/inspector/
InspectorProfilerAgent.cpp 63 static const char* const CPUProfileType = "CPU";
106 String message = makeString("Profile \"webkit-profile://", CPUProfileType, '/', encodeWithURLEscapeSequences(title), '#', String::number(profile->uid()), "\" finished.");
114 String message = makeString("Profile \"webkit-profile://", CPUProfileType, '/', encodeWithURLEscapeSequences(title), "#0\" started.");
128 header->setString("typeId", String(CPUProfileType));
211 if (type == CPUProfileType) {
232 if (type == CPUProfileType) {
  /external/webkit/Source/WebCore/inspector/front-end/
ProfileView.js 574 WebInspector.CPUProfileType = function()
576 WebInspector.ProfileType.call(this, WebInspector.CPUProfileType.TypeId, WebInspector.UIString("CPU PROFILES"));
580 WebInspector.CPUProfileType.TypeId = "CPU";
582 WebInspector.CPUProfileType.prototype = {
624 WebInspector.CPUProfileType.prototype.__proto__ = WebInspector.ProfileType.prototype;
ProfilesPanel.js 128 this._registerProfileType(new WebInspector.CPUProfileType());
288 if (profile.typeId === WebInspector.CPUProfileType.TypeId)
694 this.getProfileType(WebInspector.CPUProfileType.TypeId).setRecordingProfile(isProfiling);
695 if (this.hasTemporaryProfile(WebInspector.CPUProfileType.TypeId) !== isProfiling) {
698 typeId: WebInspector.CPUProfileType.TypeId,

Completed in 88 milliseconds