Home
last modified time | relevance | path

Searched refs:getTimes (Results 1 – 7 of 7) sorted by relevance

/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/common/
DInputPointersTests.java46 assertNotNull("new instance times", src.getTimes()); in testNewInstance()
62 assertNotSame("times after reset", times, src.getTimes()); in testReset()
85 assertEquals("times at " + i, time, src.getTimes()[i]); in testAdd()
109 assertEquals("times at " + i, time, src.getTimes()[i]); in testAddAt()
130 assertSame("times after set", dst.getTimes(), src.getTimes()); in testSet()
150 assertNotSame("times after copy", dst.getTimes(), src.getTimes()); in testCopy()
159 dst.getTimes(), 0, src.getTimes(), 0, size); in testCopy()
204 dstCopy.getTimes(), startPos, dst.getTimes(), startPos, dstLength); in testAppend()
218 dstCopy.getTimes(), startPos, dst.getTimes(), startPos, dstLength); in testAppend()
229 srcTimes.getPrimitiveArray(), startPos, dst.getTimes(), dstLength, srcLength); in testAppend()
[all …]
/packages/apps/Car/Launcher/app/src/com/android/car/carlauncher/homescreen/audio/media/
DMediaCardFragment.java335 if (seekBarViewModel.getTimes() == null || seekBarViewModel.getTimes().length() == 0) { in updateSeekBarAndTimes()
336 getTimes().setVisibility(View.GONE); in updateSeekBarAndTimes()
338 getTimes().setText(seekBarViewModel.getTimes()); in updateSeekBarAndTimes()
339 getTimes().setVisibility(View.VISIBLE); in updateSeekBarAndTimes()
365 && getTimes() != null; in isSeekbarWithTimesAvailable()
383 private TextView getTimes() { in getTimes() method in MediaCardFragment
/packages/modules/HealthFitness/tests/integrationtests/TestApp/src/android/healthconnect/test/app/
DTestAppReceiver.java349 List<Instant> startTimes = getTimes(intent, EXTRA_TIMES); in createStepsRecords()
350 List<Instant> endTimes = getTimes(intent, EXTRA_END_TIMES); in createStepsRecords()
370 List<Instant> times = getTimes(intent, EXTRA_TIMES); in createWeightRecords()
386 getTimes(intent, EXTRA_TIMES).get(0), in createExerciseRecord()
387 getTimes(intent, EXTRA_END_TIMES).get(0), in createExerciseRecord()
399 getTimes(intent, EXTRA_TIMES).get(0), in createPlannedExerciseRecord()
400 getTimes(intent, EXTRA_END_TIMES).get(0)) in createPlannedExerciseRecord()
413 private static List<Instant> getTimes(Intent intent, String key) { in getTimes() method in TestAppReceiver
/packages/apps/Car/Launcher/app/src/com/android/car/carlauncher/homescreen/ui/
DSeekBarViewModel.java43 public CharSequence getTimes() { in getTimes() method in SeekBarViewModel
/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
DInputPointers.java157 public int[] getTimes() { in getTimes() method in InputPointers
/packages/apps/Car/Launcher/app/tests/src/com/android/car/carlauncher/homescreen/audio/
DMediaViewModelTest.java223 assertEquals(seekBarViewModel.getTimes().toString(), CURRENT_TIME + "/" + MAX_TIME); in changeTimeOnly_updateModel()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DBinaryDictionary.java308 inputPointers.getYCoordinates(), inputPointers.getTimes(), in getSuggestions()