OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CPUProfileType
(Results
1 - 2
of
2
) sorted by null
/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;
/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
) {
Completed in 778 milliseconds