HomeSort by relevance Sort by last modified time
    Searched defs:Profiler (Results 1 - 18 of 18) sorted by null

  /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/tools/telemetry/telemetry/core/platform/profiler/
__init__.py 9 class Profiler(object):
10 """A sampling profiler provided by the platform.
12 A profiler is started on its constructor, and should
28 """User-friendly name of this profiler."""
33 """True iff this profiler is currently supported by the platform."""
67 """Collect the profile from the profiler."""
  /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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
profiler.py 43 profiler_class = next(itertools.ifilter(lambda profiler: profiler.name == profiler_name, profilers), None)
60 # by default, but a profiler can be selected with --profiler=PROFILER explicitly.
65 class Profiler(object):
66 # Used by ProfilerFactory to lookup a profiler from the --profiler=NAME option.
86 class SingleFileOutputProfiler(Profiler):
208 # It seems like a nicer user experiance to wait on the profiler to exit to preven
    [all...]
  /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/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)
  /external/chromium_org/third_party/webrtc/base/
profiler.h 11 // A simple wall-clock profiler for instrumented code.
59 rtc::Profiler::Instance()->ReportAllToLog(__FILE__, __LINE__, sev)
64 rtc::Profiler::Instance()->ReportToLog(__FILE__, __LINE__, sev, prefix)
67 #define PROFILE_START(msg) rtc::Profiler::Instance()->StartEvent(msg)
68 #define PROFILE_STOP(msg) rtc::Profiler::Instance()->StopEvent(msg)
88 // Tracks information for one profiler event.
115 // macros, defined above, rather than directly calling Profiler methods.
116 class Profiler {
128 static Profiler* Instance();
130 Profiler() {}
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/layers/
LayersPanel.js 70 this._tabbedPane.appendTab(WebInspector.LayersPanel.DetailsViewTabs.Profiler, WebInspector.UIString("Profiler"), this._paintProfilerView);
75 Profiler: "profiler"
185 this._tabbedPane.selectTab(WebInspector.LayersPanel.DetailsViewTabs.Profiler);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
Profiler.cs 51 public class Profiler : BlankDebugEventListener {
92 public Profiler() {
95 public Profiler(DebugParser parser) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
Profiler.cs 50 public class Profiler : BlankDebugEventListener
92 public Profiler()
96 public Profiler(DebugParser parser)
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
Profiler.java 38 public class Profiler extends BlankDebugEventListener {
148 public Profiler() {
151 public Profiler(DebugParser parser) {
  /external/llvm/lib/Transforms/Scalar/
SampleProfile.cpp 11 // reads a profile file generated by a sampling profiler (e.g. Linux Perf -
227 /// instructions to the line numbers collected by the profiler.
270 /// The format of this file is defined by each profiler
271 /// independently. If possible, the profiler should have a text
292 : FunctionPass(ID), Profiler(), Filename(Name), ProfileIsValid(false) {
298 void dump() { Profiler->dump(); }
313 std::unique_ptr<SampleModuleProfile> Profiler;
423 /// the profiler at this source location.
475 // name for the function, so the profiler will emit the function's
    [all...]
  /external/chromium_org/v8/src/
log.cc 13 #include "src/cpu-profiler.h"
20 #include "src/runtime-profiler.h"
592 // The Profiler samples pc and sp values for the main thread.
597 class Profiler: public base::Thread {
599 explicit Profiler(Isolate* isolate);
648 // Tells whether profiler is engaged, that is, processing thread is stated.
660 // Ticker used to provide ticks to the profiler and the sliding state
675 void SetProfiler(Profiler* profiler) {
677 profiler_ = profiler;
    [all...]
  /external/clang/lib/AST/
StmtProfile.cpp 181 // FIXME: Implement MS style inline asm statement profiler.
260 StmtProfiler *Profiler;
265 OMPClauseProfiler(StmtProfiler *P) : Profiler(P) { }
273 Profiler->VisitStmt(C->getCondition());
278 Profiler->VisitStmt(C->getNumThreads());
283 Profiler->VisitStmt(C->getSafelen());
288 Profiler->VisitStmt(C->getNumForLoops());
297 Profiler->VisitStmt(C->getChunkSize());
307 Profiler->VisitStmt(I);
326 Profiler->VisitNestedNameSpecifier
    [all...]
  /frameworks/base/core/java/android/app/
ActivityThread.java 195 Profiler mProfiler;
452 /** Initial values for {@link Profiler}. */
460 static final class Profiler {
    [all...]
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /external/robolectric/lib/main/
h2-1.2.147.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 

Completed in 831 milliseconds