Searched refs:mTimes (Results 1 – 5 of 5) sorted by relevance
/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/ |
D | InputPointers.java | 31 private final ResizableIntArray mTimes; field in InputPointers 38 mTimes = new ResizableIntArray(defaultCapacity); in InputPointers() 42 final int fromIndex = mTimes.getLength(); in fillWithLastTimeUntil() 52 final int lastTime = mTimes.get(fromIndex - 1); in fillWithLastTimeUntil() 53 mTimes.fill(lastTime, fromIndex, fillLength); in fillWithLastTimeUntil() 64 mTimes.addAt(index, time); in addPointerAt() 72 mTimes.add(time); in addPointer() 79 mTimes.set(ip.mTimes); in set() 86 mTimes.copy(ip.mTimes); in copy() 108 mTimes.append(times, startPos, length); in append() [all …]
|
/packages/apps/Dialer/java/com/android/contacts/common/util/ |
D | StopWatch.java | 27 private final ArrayList<Long> mTimes = new ArrayList<>(); field in StopWatch 42 mTimes.add(System.currentTimeMillis()); in lap() 51 final long start = mTimes.get(0); in stopAndLog() 52 final long stop = mTimes.get(mTimes.size() - 1); in stopAndLog() 66 for (int i = 1; i < mTimes.size(); i++) { in stopAndLog() 67 final long current = mTimes.get(i); in stopAndLog()
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
D | StopWatch.java | 32 private final ArrayList<Long> mTimes = Lists.newArrayList(); field in StopWatch 51 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()
|
/packages/inputmethods/LatinIME/native/jni/src/utils/ |
D | profiler.h | 32 : mClockId(clockId), mStartTime(getTimeInMicroSec()), mStartTimes(), mTimes(), in Profiler() 39 for (const auto &time : mTimes) { in ~Profiler() 50 mTimes[id] += static_cast<float>(getTimeInMicroSec() - mStartTimes[id]) / 1000.0f; in endTimer() 62 std::unordered_map<int, float> mTimes; variable
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/ |
D | BatteryInfoTest.java | 271 private final long[] mTimes = {1000, 1500, 2000}; in mockBatteryStatsHistory() 276 if (mCount == mTimes.length) { in mockBatteryStatsHistory() 281 record.time = mTimes[mCount]; in mockBatteryStatsHistory()
|