/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 | 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."""
|
/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/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...] |
/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/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/clang/lib/AST/ |
StmtProfile.cpp | 182 // FIXME: Implement MS style inline asm statement profiler. 257 StmtProfiler *Profiler; 259 OMPClauseProfiler(StmtProfiler *P) : Profiler(P) { } 270 Profiler->VisitStmt(*I); [all...] |
/external/v8/src/ |
log.cc | 39 #include "runtime-profiler.h" 78 // The Profiler samples pc and sp values for the main thread. 83 class Profiler: public Thread { 85 explicit Profiler(Isolate* isolate); 134 // Tells whether profiler is engaged, that is, processing thread is stated. 185 // Ticker used to provide ticks to the profiler and the sliding state 212 void SetProfiler(Profiler* profiler) { 214 profiler_ = profiler; 232 Profiler* profiler_ [all...] |
/external/chromium_org/v8/src/ |
log.cc | 34 #include "cpu-profiler.h" 41 #include "runtime-profiler.h" 763 // The Profiler samples pc and sp values for the main thread. 768 class Profiler: public Thread { 770 explicit Profiler(Isolate* isolate); 819 // Tells whether profiler is engaged, that is, processing thread is stated. 831 // Ticker used to provide ticks to the profiler and the sliding state 846 void SetProfiler(Profiler* profiler) { 848 profiler_ = profiler; [all...] |
/frameworks/base/core/java/android/app/ |
ActivityThread.java | 172 Profiler mProfiler; 421 /** Initial values for {@link Profiler}. */ 431 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 | |