OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:laps
(Results
1 - 3
of
3
) sorted by null
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
Stopwatches.java
72
* @param
laps
array of times
75
public static String buildShareResults(Context context, String time, long[]
laps
) {
79
int lapsNum =
laps
== null? 0 :
laps
.length;
87
b.append(getTimeText(context,
laps
[lapsNum-i], i));
97
* @param
laps
array of times
100
public static String buildShareResults(Context context, long time, long[]
laps
) {
101
return buildShareResults(context, getTimeText(context, time, NO_LAP_NUMBER),
laps
);
StopwatchFragment.java
217
long []
laps
= new long[size];
local
219
laps
[i] = mLaps.get(i).mTotalTime;
221
return
laps
;
225
public void setLapTimes(long []
laps
) {
226
if (
laps
== null ||
laps
.length == 0) {
230
int size =
laps
.length;
232
for (long lap :
laps
) {
237
totalTime +=
laps
[i];
372
// Listener to invoke extra animation within the
laps
-lis
908
long []
laps
= mLapsAdapter.getLapTimes();
local
942
long[]
laps
= new long[numLaps];
local
[
all
...]
StopwatchService.java
195
// Show the
laps
if applicable.
321
long[]
laps
= new long[numLaps];
local
329
laps
[numLaps - lap_i - 1] = lap - prevLapElapsedTime;
332
return
laps
;
398
long
laps
[] = readLapsFromPrefs();
local
399
int numLaps =
laps
.length;
400
long lapTime =
laps
[1];
Completed in 43 milliseconds