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

1 2

  /external/chromium_org/third_party/libjingle/source/talk/base/
profiler.h 28 // A simple wall-clock profiler for instrumented code.
73 talk_base::Profiler::Instance()->ReportAllToLog(__FILE__, __LINE__, sev)
78 talk_base::Profiler::Instance()->ReportToLog(__FILE__, __LINE__, sev, prefix)
81 #define PROFILE_START(msg) talk_base::Profiler::Instance()->StartEvent(msg)
82 #define PROFILE_STOP(msg) talk_base::Profiler::Instance()->StopEvent(msg)
102 // Tracks information for one profiler event.
128 // macros, defined above, rather than directly calling Profiler methods.
129 class Profiler {
141 static Profiler* Instance();
143 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"
102 Profiler* Profiler::Instance() {
103 LIBJINGLE_DEFINE_STATIC_LOCAL(Profiler, instance, ());
107 void Profiler::StartEvent(const std::string& event_name) {
111 void Profiler::StopEvent(const std::string& event_name) {
115 void Profiler::ReportToLog(const char* file, int line,
145 void Profiler::ReportAllToLog(const char* file, int line,
150 const ProfilerEvent* Profiler::GetEvent(const std::string& event_name) const {
156 bool Profiler::Clear()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorProfilerAgent.h 66 virtual void stop(ErrorString*, RefPtr<TypeBuilder::Profiler::ProfileHeader>& header);
70 virtual void getProfileHeaders(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::Profiler::ProfileHeader> >&);
71 virtual void getCPUProfile(ErrorString*, int uid, RefPtr<TypeBuilder::Profiler::CPUProfile>&);
89 PassRefPtr<TypeBuilder::Profiler::ProfileHeader> stop(ErrorString* = 0);
91 PassRefPtr<TypeBuilder::Profiler::ProfileHeader> createProfileHeader(const ScriptProfile&);
95 InspectorFrontend::Profiler* m_frontend;
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()
95 PassRefPtr<TypeBuilder::Profiler::CPUProfileNode> ScriptProfile::buildInspectorObjectForHead() const
ScriptProfile.h 59 PassRefPtr<TypeBuilder::Profiler::CPUProfileNode> buildInspectorObjectForHead() const;
InspectorProfilerAgent.cpp 64 : InspectorBaseAgent<InspectorProfilerAgent>("Profiler", instrumentingAgents, inspectorState)
111 PassRefPtr<TypeBuilder::Profiler::ProfileHeader> InspectorProfilerAgent::createProfileHeader(const ScriptProfile& profile)
113 return TypeBuilder::Profiler::ProfileHeader::create()
145 void InspectorProfilerAgent::getProfileHeaders(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::Profiler::ProfileHeader> >& headers)
148 headers = TypeBuilder::Array<TypeBuilder::Profiler::ProfileHeader>::create();
155 void InspectorProfilerAgent::getCPUProfile(ErrorString* errorString, int rawUid, RefPtr<TypeBuilder::Profiler::CPUProfile>& profileObject)
163 profileObject = TypeBuilder::Profiler::CPUProfile::create()
202 m_frontend = frontend->profiler();
236 void InspectorProfilerAgent::stop(ErrorString* errorString, RefPtr<TypeBuilder::Profiler::ProfileHeader>& header)
241 PassRefPtr<TypeBuilder::Profiler::ProfileHeader> InspectorProfilerAgent::stop(ErrorString* errorString
    [all...]
  /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."""
17 """User-friendly name of this profiler."""
22 """True iff this profiler is currently supported by the platform."""
47 """Collect the profile from the profiler."""
iprofiler_profiler.py 11 from telemetry.core.platform import profiler namespace
68 class IprofilerProfiler(profiler.Profiler):
java_heap_profiler.py 11 from telemetry.core.platform import profiler namespace
13 class JavaHeapProfiler(profiler.Profiler):
sample_profiler.py 12 from telemetry.core.platform import profiler namespace
58 class SampleProfiler(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/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/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);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
Dbg.stg 81 [(Profiler)dbg examineRuleMemoization:input, ruleIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames objectAtIndex:ruleIndex];
86 [((Profiler)dbg) memoize:input RuleIndex:ruleIndex StartIndex:ruleStartIndex [<grammar.composite.rootGrammar.recognizerName> ruleNames[ruleIndex]];
208 // isCyclicDecision is only necessary for the Profiler. Which I didn't do, yet.
  /external/chromium/chrome/browser/ui/gtk/bookmarks/
bookmark_menu_controller_gtk.h 22 class Profiler;
  /external/v8/src/
log.h 71 // tick profiler requires code events, so --prof implies --log-code.
75 class Profiler;
296 // Profiler's sampling interval (in milliseconds).
315 // Emits the profiler's first message.
359 // Emits a profiler tick event. Used by the profiler thread.
371 // Returns whether profiler's sampler is active.
374 // The sampler used by the profiler and the sliding state window.
378 // points to a Profiler, that handles collection
380 Profiler* profiler_
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
profile.rb 57 options[ :debug_listener ] ||= Profiler.new( self )
186 =begin rdoc ANTLR3::Profile::Profiler
191 Profiler is an event-listener that performs all of the profiling accounting and
195 class Profiler
206 # (maxLookaheadInCurrentDecision in java Profiler)
210 # (lastTokenConsumed in java Profiler)

Completed in 273 milliseconds

1 2