OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:totalSeconds
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Gallery2/src/com/android/gallery3d/app/
TimeBar.java
271
int
totalSeconds
= (int) millis / 1000;
272
int seconds =
totalSeconds
% 60;
273
int minutes = (
totalSeconds
/ 60) % 60;
274
int hours =
totalSeconds
/ 3600;
/frameworks/base/core/java/android/widget/
MediaController.java
395
int
totalSeconds
= timeMs / 1000;
397
int seconds =
totalSeconds
% 60;
398
int minutes = (
totalSeconds
/ 60) % 60;
399
int hours =
totalSeconds
/ 3600;
Completed in 1448 milliseconds