/external/vogar/src/vogar/target/ |
Runner.java | 30 boolean run(Profiler profiler);
|
Profiler.java | 22 public abstract class Profiler { 23 public static Profiler getInstance() throws Exception {
|
/packages/apps/Camera2/src/com/android/camera/stats/profiler/ |
Profiler.java | 17 package com.android.camera.stats.profiler; 23 public interface Profiler {
|
LoggingProfiler.java | 17 package com.android.camera.stats.profiler; 19 * A logging profiler creates profiles that will write all 22 public class LoggingProfiler implements Profiler {
|
GuardingProfiler.java | 17 package com.android.camera.stats.profiler; 20 * A guarding profiler creates new guarded profiles that 24 public class GuardingProfiler implements Profiler {
|
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/profiler/ |
ProfilerRegistry.java | 25 package org.slf4j.profiler; 39 Map<String, Profiler> profilerMap = new HashMap<String, Profiler>(); 41 public void put(Profiler profiler) { 42 put(profiler.getName(), profiler); local 45 public void put(String name, Profiler profiler) { 46 profilerMap.put(name, profiler); [all...] |
Profiler.java | 25 package org.slf4j.profiler; 34 // + Profiler [BAS] 37 // |--+ Profiler Y 45 * A poor man's profiler to measure the time elapsed performing some lengthy 50 public class Profiler implements TimeInstrument { 52 final static String PROFILER_MARKER_NAME = "PROFILER"; 67 public Profiler(String name) { 106 public Profiler startNested(String name) { 108 Profiler nestedProfiler = new Profiler(name) 239 Profiler profiler = (Profiler) child; local [all...] |
/external/webrtc/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 { 118 ~Profiler(); 129 static Profiler* Instance() [all...] |
profiler_unittest.cc | 12 #include "webrtc/base/profiler.h" 32 ASSERT_TRUE(Profiler::Instance()->Clear()); 36 const ProfilerEvent* event = Profiler::Instance()->GetEvent(function_name); 58 ASSERT_TRUE(Profiler::Instance()->Clear()); 61 event1 = Profiler::Instance()->GetEvent(kEvent1Name); 74 event2 = Profiler::Instance()->GetEvent(kEvent2Name); 104 ASSERT_TRUE(Profiler::Instance()->Clear()); 106 EXPECT_FALSE(Profiler::Instance()->Clear()); 107 EXPECT_TRUE(Profiler::Instance()->GetEvent("event") != NULL); 109 EXPECT_TRUE(Profiler::Instance()->Clear()) [all...] |
profiler.cc | 11 #include "webrtc/base/profiler.h" 89 Profiler::~Profiler() = default; 91 Profiler* Profiler::Instance() { 92 RTC_DEFINE_STATIC_LOCAL(Profiler, instance, ()); 96 Profiler::Profiler() { 99 void Profiler::StartEvent(const std::string& event_name) { 115 void Profiler::StopEvent(const std::string& event_name) [all...] |
/external/slf4j/slf4j-ext/src/test/java/org/slf4j/profiler/ |
BasicProfilerDemo.java | 25 package org.slf4j.profiler; 44 + Profiler [BASIC] 56 // create a profiler called "BASIC" 57 Profiler profiler = new Profiler("BASIC"); local 58 profiler.start("A"); 61 profiler.start("B"); 64 profiler.start("OTHER"); 66 profiler.stop().print() [all...] |
NestedProfilerDemo.java | 25 package org.slf4j.profiler; 43 + Profiler [DEMO] 45 |---+ Profiler [SORT_AND_PRUNE] 58 // create a profiler called "DEMO" 59 Profiler profiler = new Profiler("DEMO"); local 61 // register this profiler in the thread context's profiler registry 63 profiler.registerWith(profilerRegistry) [all...] |
ProfilerTest.java | 25 package org.slf4j.profiler; 41 Profiler profiler = new Profiler("SMOKE"); local 42 profiler.stop(); 43 StopWatch gSW = profiler.globalStopWatch; 46 profiler.sanityCheck(); 48 assertEquals(0, profiler.childTimeInstrumentList.size()); 49 assertNull(profiler.getLastTimeInstrument()); 53 Profiler profiler = new Profiler("BAS") local 85 Profiler profiler = new Profiler("BAS"); local [all...] |
NestedProfilerDemo2.java | 25 package org.slf4j.profiler; 44 Profiler profiler = new Profiler("DEMO"); local 45 // associate a logger with the profiler 46 profiler.setLogger(logger); 49 profiler.registerWith(profilerRegistry); 51 profiler.start("RANDOM"); 56 profiler.startNested(SortAndPruneComposites.NESTED_PROFILER_NAME); 62 profiler.stop().log() [all...] |
/packages/inputmethods/LatinIME/native/jni/src/utils/ |
profiler.h | 29 class Profiler final { 31 Profiler(const clockid_t clockId) 35 ~Profiler() { 57 DISALLOW_IMPLICIT_CONSTRUCTORS(Profiler); 74 #define PROF_INIT Profiler __LATINIME__PROFILER__(CLOCK_THREAD_CPUTIME_ID)
|
/prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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;
|
/packages/apps/Camera2/src/com/android/camera/app/ |
FirstRunDetector.java | 23 import com.android.camera.stats.profiler.Profile; 24 import com.android.camera.stats.profiler.Profiler; 25 import com.android.camera.stats.profiler.Profilers; 46 private FirstRunDetector(Profiler profiler) { 47 mProfile = profiler.create("FirstRunDetector getTimeOfFirstRun");
|
/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/clang/lib/AST/ |
StmtProfile.cpp | 182 // FIXME: Implement MS style inline asm statement profiler. 261 StmtProfiler *Profiler; 267 OMPClauseProfiler(StmtProfiler *P) : Profiler(P) { } 275 Profiler->VisitStmt(C->getCondition()); 280 Profiler->VisitStmt(C->getCondition()); 285 Profiler->VisitStmt(C->getNumThreads()); 290 Profiler->VisitStmt(C->getSafelen()); 295 Profiler->VisitStmt(C->getSimdlen()); 300 Profiler->VisitStmt(C->getNumForLoops()); 309 Profiler->VisitStmt(C->getChunkSize()) [all...] |