Searched refs:mTimes (Results 1 – 5 of 5) sorted by relevance
30 private final ResizableIntArray mTimes; field in InputPointers37 mTimes = new ResizableIntArray(defaultCapacity); in InputPointers()44 mTimes.add(index, time); in addPointer()52 mTimes.add(time); in addPointer()59 mTimes.set(ip.mTimes); in set()66 mTimes.copy(ip.mTimes); in copy()83 mTimes.append(src.mTimes, startPos, length); in append()104 mTimes.append(times, startPos, length); in append()112 mTimes.reset(defaultCapacity); in reset()137 return mTimes.getPrimitiveArray(); in getTimes()[all …]
32 private final ArrayList<Long> mTimes = Lists.newArrayList(); field in StopWatch51 mTimes.add(System.currentTimeMillis()); in lap()62 final long start = mTimes.get(0); in stopAndLog()63 final long stop = mTimes.get(mTimes.size() - 1); in stopAndLog()75 for (int i = 1; i < mTimes.size(); i++) { in stopAndLog()76 final long current = mTimes.get(i); in stopAndLog()
26 private final ArrayList<Time> mTimes; field in TimeListImpl32 mTimes = times; in TimeListImpl()40 return mTimes.size(); in getLength()46 time = mTimes.get(index); in item()
80 final long origStartTime = replayData.mTimes.get(0); in replay()104 final long origTime = replayData.mTimes.get(index); in replay()132 final long msgTime = replayData.mTimes.get(i) + timeAdjustment; in replay()139 final long presentDoneTime = replayData.mTimes.get(numActions - 1) + timeAdjustment in replay()
74 final ArrayList<Long> mTimes = new ArrayList<Long>(); field in MotionEventReader.ReplayData332 replayData.mTimes.add(time); in addMotionEventData()