HomeSort by relevance Sort by last modified time
    Searched refs:Profiler (Results 26 - 50 of 90) sorted by null

12 3 4

  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
profiler_finder.py 8 from telemetry.internal.platform import profiler namespace
15 profiler.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."""
android_screen_recorder_profiler.py 11 from telemetry.internal.platform import profiler namespace
18 class AndroidScreenRecordingProfiler(profiler.Profiler):
netlog_profiler.py 8 from telemetry.internal.platform import profiler namespace
11 class NetLogProfiler(profiler.Profiler):
v8_profiler.py 9 from telemetry.internal.platform import profiler namespace
12 class V8Profiler(profiler.Profiler):
win_pgo_profiler.py 10 from telemetry.internal.platform import profiler namespace
15 class WinPGOProfiler(profiler.Profiler):
16 """A profiler that run the Visual Studio PGO utility 'pgosweep.exe' before
76 # This profiler only make sense when doing a Windows build with Visual
android_systrace_profiler.py 12 from telemetry.internal.platform import profiler namespace
24 class AndroidSystraceProfiler(profiler.Profiler):
oomkiller_profiler.py 9 from telemetry.internal.platform import profiler namespace
24 class OOMKillerProfiler(profiler.Profiler):
trace_profiler.py 9 from telemetry.internal.platform import profiler namespace
14 class TraceProfiler(profiler.Profiler):
android_traceview_profiler.py 10 from telemetry.internal.platform import profiler namespace
18 class AndroidTraceviewProfiler(profiler.Profiler):
iprofiler_profiler.py 11 from telemetry.internal.platform import profiler namespace
65 class IprofilerProfiler(profiler.Profiler):
monsoon_profiler.py 5 """Profiler using data collected from a Monsoon power meter.
16 from telemetry.internal.platform import profiler namespace
17 from telemetry.internal.platform.profiler import monsoon
67 class MonsoonProfiler(profiler.Profiler):
sample_profiler.py 12 from telemetry.internal.platform import profiler namespace
58 class SampleProfiler(profiler.Profiler):
  /external/vogar/src/vogar/target/
MainRunner.java 45 public boolean run(Profiler profiler) {
48 if (profiler != null) {
49 profiler.start();
57 if (profiler != null) {
58 profiler.stop();
CaliperRunner.java 43 public boolean run(Profiler profiler) {
64 // as otherwise the profiler just profiles the main Caliper process rather than the
71 if (profiler != null) {
72 profiler.start();
80 if (profiler != null) {
81 profiler.stop();
TestRunner.java 210 Profiler profiler = null; local
213 profiler = Profiler.getInstance();
218 if (profiler != null) {
219 profiler.setup(profileThreadGroup, profileDepth, profileInterval);
241 boolean completedNormally = runner.run(profiler);
246 if (profiler != null) {
247 profiler.shutdown(profileFile);
  /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/vogar/src/vogar/target/junit/
JUnitRunner.java 30 import vogar.target.Profiler;
60 public boolean run(Profiler profiler) {
70 runWithTimeout(profiler, test);
86 private void runWithTimeout(final Profiler profiler, final VogarTest test) {
96 if (profiler != null) {
97 profiler.start();
104 if (profiler != null) {
105 profiler.stop()
    [all...]
  /external/vogar/src/vogar/android/
AndroidProfiler.java 24 import vogar.target.Profiler;
26 public class AndroidProfiler extends Profiler {
38 String packageName = "dalvik.system.profiler";
55 private Object profiler; field in class:AndroidProfiler
68 this.profiler = newThreadSet.newInstance(depth, threadSet);
82 start.invoke(profiler, interval);
90 stop.invoke(profiler);
98 shutdown.invoke(profiler);
101 write.invoke(null, getHprofData.invoke(profiler), out);
  /external/slf4j/slf4j-ext/src/test/java/org/slf4j/profiler/
SortAndPruneComposites.java 25 package org.slf4j.profiler;
44 // retrieve previously registered profiler named "SORT_AND_PRUNE"
46 Profiler sortProfiler = profilerRegistry.get(NESTED_PROFILER_NAME);
  /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/boringssl/linux-arm/crypto/sha/
sha256-armv4.S 25 @ Profiler-assisted and platform-specific optimization resulted in 16%
    [all...]
sha512-armv4.S 25 @ Profiler-assisted and platform-specific optimization resulted in 7%
    [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)
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
ProfileTreeGrammar.cs 61 : this( input, new Profiler(null), new RecognizerSharedState() )
67 Profiler p = (Profiler)dbg;
74 Profiler p = (Profiler)dbg;
79 ((Profiler)dbg).ExamineRuleMemoization(input, ruleIndex, ProfileTreeGrammar.ruleNames[ruleIndex]);
85 ((Profiler)dbg).Memoize(input, ruleIndex, ruleStartIndex, ProfileTreeGrammar.ruleNames[ruleIndex]);

Completed in 551 milliseconds

12 3 4