OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:totalSeconds
(Results
1 - 4
of
4
) sorted by null
/packages/apps/Gallery2/src/com/android/gallery3d/app/
TimeBar.java
251
int
totalSeconds
= (int) millis / 1000;
252
int seconds =
totalSeconds
% 60;
253
int minutes = (
totalSeconds
/ 60) % 60;
254
int hours =
totalSeconds
/ 3600;
/external/replicaisland/src/com/replica/replicaisland/
GameOverActivity.java
101
int
totalSeconds
= (int)(seconds - (totalMinuteSeconds + totalHourSeconds));
103
value = totalHours + ":" + totalMinutes + ":" +
totalSeconds
;
/development/samples/Support4Demos/src/com/example/android/supportv4/media/
MediaController.java
205
int
totalSeconds
= timeMs / 1000;
207
int seconds =
totalSeconds
% 60;
208
int minutes = (
totalSeconds
/ 60) % 60;
209
int hours =
totalSeconds
/ 3600;
/frameworks/base/core/java/android/widget/
MediaController.java
405
int
totalSeconds
= timeMs / 1000;
407
int seconds =
totalSeconds
% 60;
408
int minutes = (
totalSeconds
/ 60) % 60;
409
int hours =
totalSeconds
/ 3600;
Completed in 205 milliseconds