Home
last modified time | relevance | path

Searched refs:mTimes (Results 1 – 11 of 11) sorted by relevance

/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
DInputPointers.java31 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/modules/AdServices/shared/libraries/device-side/java/com/android/adservices/shared/testing/
DAbstractLogVerifier.java150 .map(call -> new MutableLogCall(call, call.mTimes)) in createMutableLogCalls()
173 if (c1.mTimes >= c2.mTimes) { in removeAll()
174 c1.mTimes -= c2.mTimes; in removeAll()
175 c2.mTimes = 0; in removeAll()
177 c2.mTimes -= c1.mTimes; in removeAll()
178 c1.mTimes = 0; in removeAll()
183 if (c1.mTimes == 0) { in removeAll()
188 if (c2.mTimes == 0) { in removeAll()
205 .forEach(actualLogCall -> actualLogCall.mTimes = mActualCalls.get(actualLogCall)); in getActualCalls()
231 private int mTimes; field in AbstractLogVerifier.MutableLogCall
[all …]
DLogCall.java22 public int mTimes; field in LogCall
29 mTimes = times; in LogCall()
34 return logInvocationToString() + ", times = " + mTimes; in toString()
/packages/apps/Dialer/java/com/android/contacts/common/util/
DStopWatch.java27 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/
DStopWatch.java32 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/
Dprofiler.h32 : 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/Car/Launcher/app/src/com/android/car/carlauncher/homescreen/ui/
DSeekBarViewModel.java28 private CharSequence mTimes; field in SeekBarViewModel
36 mTimes = times; in SeekBarViewModel()
44 return mTimes; in getTimes()
/packages/modules/AdServices/adservices/tests/unittest/adservices-test-utility/src/com/android/adservices/common/logging/
DErrorLogUtilCallTest.java50 expect.that(actual.mTimes).isEqualTo(3); in testCreateWithNoException()
61 expect.that(actual.mTimes).isEqualTo(2); in testCreateFrom_withNoExceptionAnnotationNullDefault_createsObject()
74 expect.that(actual.mTimes).isEqualTo(3); in testCreateFrom_withNoExceptionAnnotationDerivesFromDefaults_createsObject()
115 expect.that(actual.mTimes).isEqualTo(2); in testCreateFrom_withExceptionAnnotationNullDefault_createsObject()
129 expect.that(actual.mTimes).isEqualTo(1); in testCreateFrom_withExceptionAnnotationDerivesFromDefaults_createsObject()
/packages/apps/Car/Launcher/app/src/com/android/car/carlauncher/homescreen/audio/media/
DMediaCardFragment.java85 private TextView mTimes; field in MediaCardFragment
384 if (mTimes == null) { in getTimes()
385 mTimes = getRootView().findViewById(R.id.optional_times); in getTimes()
387 return mTimes; in getTimes()
/packages/apps/Car/Launcher/app/src/com/android/car/carlauncher/homescreen/audio/
DMediaViewModel.java73 private CharSequence mTimes; field in MediaViewModel
229 mTimes, in getCardContent()
304 mTimes = playbackProgress.hasTime() ? new StringBuilder( in updateProgress()
/packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/batteryusage/
DDataProcessManagerTest.java248 private int mTimes = 0; in start_loadExpectedAppUsageData()
252 mTimes++; in start_loadExpectedAppUsageData()
253 return mTimes <= 2 ? null : cursor; in start_loadExpectedAppUsageData()