HomeSort by relevance Sort by last modified time
    Searched defs:lap (Results 1 - 14 of 14) sorted by null

  /frameworks/base/services/net/java/android/net/util/
Stopwatch.java 63 public long lap() { method in class:Stopwatch
  /system/core/libutils/
StopWatch.cpp 57 nsecs_t StopWatch::lap() function in class:android::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
  /packages/apps/Dialer/java/com/android/contacts/common/util/
StopWatch.java 32 lap("");
45 /** Record a lap. */
46 public void lap(String lapLabel) { method in class:StopWatch
54 lap("");
91 public void lap(String lapLabel) { method in class:StopWatch.NullStopWatch
  /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...]
  /packages/apps/DeskClock/src/com/android/deskclock/data/
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);
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...]
  /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)];
antlr.h 226 int lap; member in struct:_zzantlr_state
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
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)];
antlr.h 214 int lap; member in struct:_zzantlr_state
  /system/bt/stack/btm/
btm_inq.cc 59 static const LAP general_inq_lap = {0x9e, 0x8b, 0x33};
60 static const LAP limited_inq_lap = {0x9e, 0x8b, 0x00};
152 LAP temp_lap[2];
201 btsnd_hcic_write_cur_iac_lap(2, (LAP * const)temp_lap);
203 btsnd_hcic_write_cur_iac_lap(1, (LAP * const) & general_inq_lap);
1637 const LAP* lap; local
    [all...]
  /external/valgrind/include/vki/
vki-linux.h 3130 __vki_u8 lap[3]; member in struct:vki_hci_inquiry_req
    [all...]

Completed in 1091 milliseconds