HomeSort by relevance Sort by last modified time
    Searched full:totalseconds (Results 1 - 6 of 6) 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/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
TestFastLexer.cs 61 Console.WriteLine( "Elapsed time (norm): {0} seconds.", time.TotalSeconds );
62 Console.WriteLine( "Elapsed time (fast): {0} seconds.", timeFast.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;
  /external/replicaisland/src/com/replica/replicaisland/
GameOverActivity.java 101 int totalSeconds = (int)(seconds - (totalMinuteSeconds + totalHourSeconds));
103 value = totalHours + ":" + totalMinutes + ":" + totalSeconds;
  /frameworks/base/core/java/android/widget/
MediaController.java 427 int totalSeconds = timeMs / 1000;
429 int seconds = totalSeconds % 60;
430 int minutes = (totalSeconds / 60) % 60;
431 int hours = totalSeconds / 3600;
  /external/llvm/unittests/Support/
YAMLIOTest.cpp 883 LLVM_YAML_STRONG_TYPEDEF(uint32_t, TotalSeconds)
885 typedef std::vector<TotalSeconds> SecondsSequence;
887 LLVM_YAML_IS_SEQUENCE_VECTOR(TotalSeconds)
893 struct MappingTraits<TotalSeconds> {
900 NormalizedSeconds(IO &, TotalSeconds &secs)
905 TotalSeconds denormalize(IO &) {
906 return TotalSeconds(hours*3600 + minutes*60 + seconds);
914 static void mapping(IO &io, TotalSeconds &secs) {
915 MappingNormalization<NormalizedSeconds, TotalSeconds> keys(io, secs);
    [all...]

Completed in 1098 milliseconds