HomeSort by relevance Sort by last modified time
    Searched refs:TimeBase (Results 1 - 6 of 6) sorted by null

  /sdk/traceview/src/com/android/traceview/
TimeBase.java 19 interface TimeBase {
20 public static final TimeBase CPU_TIME = new CpuTimeBase();
21 public static final TimeBase REAL_TIME = new RealTimeBase();
28 public static final class CpuTimeBase implements TimeBase {
50 public static final class RealTimeBase implements TimeBase {
TraceReader.java 72 public TimeBase getPreferredTimeBase() {
73 return TimeBase.CPU_TIME;
DmTraceReader.java 536 final TimeBase timeBase = getPreferredTimeBase();
544 if (timeBase.getTime(td2) > timeBase.getTime(td1))
546 if (timeBase.getTime(td2) < timeBase.getTime(td1))
559 if (timeBase.getElapsedInclusiveTime(md2) > timeBase.getElapsedInclusiveTime(md1))
561 if (timeBase.getElapsedInclusiveTime(md2) < timeBase.getElapsedInclusiveTime(md1)
    [all...]
MethodData.java 171 public void analyzeData(TimeBase timeBase) {
178 sortedParents = sortProfileData(mParents, timeBase);
179 sortedChildren = sortProfileData(mChildren, timeBase);
180 sortedRecursiveParents = sortProfileData(mRecursiveParents, timeBase);
181 sortedRecursiveChildren = sortProfileData(mRecursiveChildren, timeBase);
215 final TimeBase timeBase) {
227 if (timeBase.getElapsedInclusiveTime(pd2) > timeBase.getElapsedInclusiveTime(pd1)
    [all...]
  /external/sonivox/jet_tools/JetCreator/
JetUtils.py 35 from midifile import TimeBase, trackGrid
347 return TimeBase().ConvertStrTimeToTicks(mbt1)
353 return TimeBase().ConvertTicksToMBT(ticks)
357 return TimeBase().ConvertTicksToStr(ticks, '%02d:%02d:%02d')
361 return TimeBase().MbtDifference(mbt1, mbt2)
668 tb = TimeBase(ppqn, bpm)
midifile.py 214 # TimeBase
216 class TimeBase (object):
388 def TimeEventStr (self, timebase):
389 return '[%s]: %s' % (timebase.ConvertTicksToStr(self.ticks), self.__str__())
955 def DumpEvents (self, output, timebase):
958 output.write('%s\n' % event.TimeEventStr(timebase))
961 midi_file_logger.debug(event.TimeEventStr(timebase))
983 tick_warning_level = stream.timebase.ppqn * LARGE_TICK_WARNING
    [all...]

Completed in 91 milliseconds