HomeSort by relevance Sort by last modified time
    Searched refs:lap (Results 1 - 25 of 31) sorted by null

1 2

  /packages/apps/DeskClock/src/com/android/deskclock/data/
StopwatchListener.java 31 * @param lap the lap that was added
33 void lapAdded(Lap lap);
StopwatchModel.java 62 private List<Lap> mLaps;
131 List<Lap> getLaps() {
136 * @return a newly recorded lap completed now; {@code null} if no more laps can be added
138 Lap addLap() {
144 final List<Lap> laps = getMutableLaps();
152 final Lap lap = new Lap(lapNumber, lapTime, totalTime); local
153 laps.add(0, lap);
160 // Notify listeners of the new lap
    [all...]
StopwatchNotificationBuilder.java 82 // Right button: Add Lap
84 final Intent lap = new Intent(context, StopwatchService.class) local
90 final PendingIntent intent2 = Utils.pendingServiceIntent(context, lap);
94 // Show the current lap number if any laps have been recorded.
98 final String lap = res.getString(R.string.sw_notification_lap_number, lapNumber); local
99 content.setTextViewText(R.id.state, lap);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/Path/PathUtilityClasses/
Waypoint.java 26 private final Manager.Lap mLap;
33 * @param lap the phase of the test the waypoint is in
35 public Waypoint(float[] coordinates, boolean userGenerated, Manager.Lap lap) {
38 this.mLap = lap;
58 public Manager.Lap getLap() {
  /frameworks/base/services/net/java/android/net/util/
Stopwatch.java 63 public long lap() { method in class:Stopwatch
  /packages/apps/Contacts/src/com/android/contacts/util/
StopWatch.java 37 lap("");
48 * Record a lap.
50 public void lap(String lapLabel) { method in class:StopWatch
60 lap("");
101 public void lap(String lapLabel) { method in class:StopWatch.NullStopWatch
  /system/core/libutils/include/utils/
StopWatch.h 38 nsecs_t lap();
  /packages/apps/Dialer/java/com/android/contacts/common/util/
StopWatch.java 32 lap("");
40 /** Record a lap. */
41 public void lap(String lapLabel) { method in class:StopWatch
49 lap("");
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
LapsAdapter.java 30 import com.android.deskclock.data.Lap;
38 * Displays a list of lap times in reverse order. That is, the newest lap is at the top, the oldest
39 * lap is at the bottom.
57 /** Used to determine when the time format for the lap time column has changed length. */
70 * After recording the first lap, there is always a "current lap" in progress.
72 * @return 0 if no laps are yet recorded; lap count + 1 if any laps exist
93 // Lap will be null for the current lap
94 final Lap lap = position == 0 ? null : getLaps().get(position - 1); local
150 final Lap lap = DataModel.getDataModel().addLap(); local
201 final Lap lap = laps.get(i); local
    [all...]
StopwatchFragment.java 53 import com.android.deskclock.data.Lap;
83 /** Scheduled to update the stopwatch time and current lap time while stopwatch is running. */
98 /** Draws the reference lap while the stopwatch is running. */
104 /** Displays the recorded lap times. */
347 * Send stopwatch time and lap times to an external sharing application.
372 LogUtils.e("Cannot share lap data because no suitable receiving Activity exists");
378 * Record and add a new lap ending now.
383 // Record a new lap.
384 final Lap lap = mLapsAdapter.addLap() local
    [all...]
  /system/core/libutils/
StopWatch.cpp 57 nsecs_t StopWatch::lap() function in class:android::StopWatch
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
AParser.cpp 100 lap = 0;
173 lap = 0;
224 lap = (lap+1)&(LLk-1);
269 // lap = 0; // MR14 Sinan Karasu (sinan.karasu@boeing.com)
271 labase=lap; // MR14
798 lap = (lap+1)&(LLk-1);
AParser.h 55 #define NLA (token_type[lap&(LLk-1)])/* --> next LA */
178 int lap; member in class:ANTLRParser
237 //// token_type[(lap+(i)-1)&(LLk-1)];
244 return token_type[(lap+(i)-1)&(LLk-1)];
err.h 302 buf->lap = zzlap;
362 zzlap = buf->lap;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Fragments/
DataFragment.java 131 * @param lap the lap of the test to get the markers from
134 public ArrayList<Waypoint> getUserGeneratedWaypoints(Manager.Lap lap) {
135 switch (lap) {
145 throw new AssertionError("Unrecognised Lap!", null);
183 public Manager.Lap getLap() {
BaseUiFragment.java 123 protected String getObjectiveText(Manager.Lap lap, int waypointCount) {
125 int lapIndex = lap.ordinal();
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
AParser.h 55 #define NLA (token_type[lap&(LLk-1)])/* --> next LA */
178 int lap; member in class:ANTLRParser
238 //// token_type[(lap+(i)-1)&(LLk-1)];
245 return token_type[(lap+(i)-1)&(LLk-1)];
AParser.cpp 100 lap = 0;
182 lap = 0;
233 lap = (lap+1)&(LLk-1);
278 // lap = 0; // MR14 Sinan Karasu (sinan.karasu@boeing.com)
280 labase=lap; // MR14
829 lap = (lap+1)&(LLk-1);
err.h 302 buf->lap = zzlap;
362 zzlap = buf->lap;
  /packages/apps/Dialer/java/com/android/dialer/database/
DialerDatabaseHelper.java 619 stopWatch.lap("Queried the Contacts database");
627 stopWatch.lap("Finished deleting deleted entries");
661 stopWatch.lap("Finished deleting entries belonging to updated contacts");
689 stopWatch.lap("Finished building the smart dial table");
715 stopWatch.lap("Queried the smart dial table for contact names");
721 stopWatch.lap("Finished building the name prefix table");
779 stopWatch.lap(TAG + "Finished recreating index");
867 stopWatch.lap("Prefix query completed");
879 stopWatch.lap("Found column IDs");
885 stopWatch.lap("Moved cursor to start")
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/app/dialpad/
DialpadFragment.java 650 stopWatch.lap("qloc");
658 stopWatch.lap("dtwd");
660 stopWatch.lap("hptc");
666 stopWatch.lap("fdin");
673 stopWatch.lap("hnt");
677 stopWatch.lap("bes");
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Activities/
TestActivity.java 35 import com.android.cts.verifier.sensors.sixdof.Utils.Manager.Lap;
273 public ArrayList<Waypoint> getUserGeneratedWaypoints(Lap lap) {
274 return mDataFragment.getUserGeneratedWaypoints(lap);
277 public Lap getLap() {
  /packages/apps/DeskClock/src/com/android/deskclock/controller/
ShortcutController.java 38 import com.android.deskclock.data.Lap;
179 public void lapAdded(Lap lap) {
  /hardware/qcom/msm8998/kernel-headers/sound/
compress_params.h 291 __u32 lap; member in struct:snd_dec_aptx
  /hardware/qcom/msm8998/original-kernel-headers/sound/
compress_params.h 401 __u32 lap; member in struct:snd_dec_aptx

Completed in 9815 milliseconds

1 2