HomeSort by relevance Sort by last modified time
    Searched refs:Profiler (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/chromium_org/third_party/libjingle/source/talk/base/
profiler.h 28 // A simple wall-clock profiler for instrumented code.
74 talk_base::Profiler::Instance()->ReportAllToLog(__FILE__, __LINE__, sev)
79 talk_base::Profiler::Instance()->ReportToLog(__FILE__, __LINE__, sev, prefix)
82 #define PROFILE_START(msg) talk_base::Profiler::Instance()->StartEvent(msg)
83 #define PROFILE_STOP(msg) talk_base::Profiler::Instance()->StopEvent(msg)
103 // Tracks information for one profiler event.
130 // macros, defined above, rather than directly calling Profiler methods.
131 class Profiler {
143 static Profiler* Instance();
145 Profiler() {}
    [all...]
profiler_unittest.cc 29 #include "talk/base/profiler.h"
49 ASSERT_TRUE(Profiler::Instance()->Clear());
52 const ProfilerEvent* event = Profiler::Instance()->GetEvent(function_name);
73 ASSERT_TRUE(Profiler::Instance()->Clear());
76 event1 = Profiler::Instance()->GetEvent(kEvent1Name);
89 event2 = Profiler::Instance()->GetEvent(kEvent2Name);
117 ASSERT_TRUE(Profiler::Instance()->Clear());
119 EXPECT_FALSE(Profiler::Instance()->Clear());
120 EXPECT_TRUE(Profiler::Instance()->GetEvent("event") != NULL);
122 EXPECT_TRUE(Profiler::Instance()->Clear())
    [all...]
profiler.cc 28 #include "talk/base/profiler.h"
105 Profiler* Profiler::Instance() {
106 LIBJINGLE_DEFINE_STATIC_LOCAL(Profiler, instance, ());
110 void Profiler::StartEvent(const std::string& event_name) {
126 void Profiler::StopEvent(const std::string& event_name) {
136 void Profiler::ReportToLog(const char* file, int line,
164 void Profiler::ReportAllToLog(const char* file, int line,
169 const ProfilerEvent* Profiler::GetEvent(const std::string& event_name) const {
176 bool Profiler::Clear()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptProfile.cpp 35 #include <v8-profiler.h>
72 static PassRefPtr<TypeBuilder::Profiler::CPUProfileNode> buildInspectorObjectFor(const v8::CpuProfileNode* node)
76 RefPtr<TypeBuilder::Array<TypeBuilder::Profiler::CPUProfileNode> > children = TypeBuilder::Array<TypeBuilder::Profiler::CPUProfileNode>::create();
83 RefPtr<TypeBuilder::Profiler::CPUProfileNode> result = TypeBuilder::Profiler::CPUProfileNode::create()
97 PassRefPtr<TypeBuilder::Profiler::CPUProfileNode> ScriptProfile::buildInspectorObjectForHead() const
InspectorProfilerAgent.h 66 virtual void stop(ErrorString*, RefPtr<TypeBuilder::Profiler::CPUProfile>&);
81 void stop(ErrorString*, RefPtr<TypeBuilder::Profiler::CPUProfile>*);
84 InspectorFrontend::Profiler* m_frontend;
ScriptProfile.h 59 PassRefPtr<TypeBuilder::Profiler::CPUProfileNode> buildInspectorObjectForHead() const;
InspectorProfilerAgent.cpp 54 static PassRefPtr<TypeBuilder::Profiler::CPUProfile> createCPUProfile(const ScriptProfile& scriptProfile)
56 RefPtr<TypeBuilder::Profiler::CPUProfile> profile = TypeBuilder::Profiler::CPUProfile::create()
90 : InspectorBaseAgent<InspectorProfilerAgent>("Profiler", instrumentingAgents, inspectorState)
182 m_frontend = frontend->profiler();
222 void InspectorProfilerAgent::stop(ErrorString* errorString, RefPtr<TypeBuilder::Profiler::CPUProfile>& profile)
227 void InspectorProfilerAgent::stop(ErrorString* errorString, RefPtr<TypeBuilder::Profiler::CPUProfile>* profile)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cprofile.py 20 obj = _lsprof.Profiler(lambda: int)
22 obj = _lsprof.Profiler(1)
59 1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects}
87 {method 'disable' of '_lsprof.Profiler' objects} <-
119 {method 'disable' of '_lsprof.Profiler' objects} ->
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cprofile.py 20 obj = _lsprof.Profiler(lambda: int)
22 obj = _lsprof.Profiler(1)
59 1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects}
87 {method 'disable' of '_lsprof.Profiler' objects} <-
119 {method 'disable' of '_lsprof.Profiler' objects} ->
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
Dbg.stg 72 ((Profiler)dbg).ExamineRuleMemoization(input, ruleIndex, stopIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
77 ((Profiler)dbg).Memoize(input, ruleIndex, ruleStartIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
108 : this( input, new Profiler(null), new RecognizerSharedState() )
114 Profiler p = (Profiler)dbg;
140 Profiler p = (Profiler)dbg;
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
Dbg.stg 71 ((Profiler)dbg).ExamineRuleMemoization(input, ruleIndex, stopIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
76 ((Profiler)dbg).Memoize(input, ruleIndex, ruleStartIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
107 : this( input, new Profiler(null), new RecognizerSharedState() )
113 Profiler p = (Profiler)dbg;
139 Profiler p = (Profiler)dbg;
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
profiler_finder.py 9 from telemetry.core.platform import profiler namespace
15 profiler.Profiler).values()
trace_profiler.py 7 from telemetry.core.platform import profiler namespace
10 class TraceProfiler(profiler.Profiler):
__init__.py 7 class Profiler(object):
8 """A sampling profiler provided by the platform.
10 A profiler is started on its constructor, and should
26 """User-friendly name of this profiler."""
31 """True iff this profiler is currently supported by the platform."""
61 """Collect the profile from the profiler."""
android_memreport_profiler.py 10 from telemetry.core.platform import profiler namespace
12 class AndroidMemReportProfiler(profiler.Profiler):
android_screen_recorder_profiler.py 10 from telemetry.core.platform import profiler namespace
12 class AndroidScreenRecordingProfiler(profiler.Profiler):
netlog_profiler.py 7 from telemetry.core.platform import profiler namespace
9 class NetLogProfiler(profiler.Profiler):
v8_profiler.py 8 from telemetry.core.platform import profiler namespace
10 class V8Profiler(profiler.Profiler):
  /packages/services/Telephony/src/com/android/phone/
Profiler.java 28 public class Profiler {
35 // Profiler.PROFILE first, so the method calls will get optimized out
51 private Profiler() {
124 Log.d(LOG_TAG, "[Profiler] " + msg);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
Dbg.stg 67 ((Profiler)dbg).examineRuleMemoization(input, ruleIndex, stopIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
74 ((Profiler)dbg).memoize(input, ruleIndex, ruleStartIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
102 this(input, new Profiler(null), new RecognizerSharedState());
106 Profiler p = (Profiler)dbg;
130 Profiler p = (Profiler)dbg;
  /external/chromium_org/tools/deep_memory_profiler/visualizer/
services.py 15 class Profiler(ndb.Model):
16 """Profiler entity to store json data. Use run_id as its key.
22 """Template to breakdown profiler with multiple tags.
28 """Create Profiler entity in database of uploaded file. Return run_id."""
34 prof_key = ndb.Key('Profiler', run_id)
37 profiler = Profiler(id=run_id, blob_key=blob_info.key())
38 profiler.put()
44 """Get Profiler entity from database of given run_id."""
46 profiler = ndb.Key('Profiler', run_id).get(
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
Dbg.stg 103 ((Profiler)self._dbg).examineRuleMemoization(input, ruleIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
111 ((Profiler)self._dbg).memoize(input, ruleIndex, ruleStartIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
141 this(input, new Profiler(null), new RecognizerSharedState());
145 Profiler p = (Profiler)self.dbg;
172 Profiler p = (Profiler)dbg;
  /external/chromium_org/tools/deep_memory_profiler/visualizer/static/
profiler.js 6 * This class provides data access interface for dump file profiler.
9 var Profiler = function(jsonData, template) {
28 Profiler.prototype.addListener = function(event, callback) {
38 Profiler.prototype.emit = function(event) {
51 Profiler.prototype.removeListener = function(event, callback) {
59 Profiler.prototype.reparse = function() {
68 Profiler.prototype.getTemplate = function() {
73 * Get run_id of current profiler.
74 * @return {string} run_id of current profiler.
76 Profiler.prototype.getRunId = function()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
LayersPanel.js 77 this._tabbedPane.appendTab(WebInspector.LayersPanel.DetailsViewTabs.Profiler, WebInspector.UIString("Profiler"), this._paintProfilerView);
82 Profiler: "profiler"
131 this._tabbedPane.selectTab(WebInspector.LayersPanel.DetailsViewTabs.Profiler);
  /external/chromium_org/third_party/jstemplate/
jstemplate_example.js 63 if (profiling) Profiler.reset();
65 if (profiling) Profiler.dump();
79 if (profiling) Profiler.reset();
81 if (profiling) Profiler.dump();
91 if (profiling) Profiler.reset();
93 if (profiling) Profiler.dump();
109 if (profiling) Profiler.reset();
111 if (profiling) Profiler.dump();
207 Profiler.monitorAll(proto(JstProcessor), false);

Completed in 1058 milliseconds

1 2 3