HomeSort by relevance Sort by last modified time
    Searched refs:secondsSince (Results 1 - 4 of 4) sorted by null

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/
DateHelper.java 27 * @param secondsSince seconds since 1/1/1904
30 static public Date convert(long secondsSince) {
31 return new Date((secondsSince - 2082844800L) * 1000L);
  /developers/build/prebuilts/gradle/BluetoothAdvertisements/Application/src/main/java/com/example/android/bluetoothadvertisements/
ScanResultAdapter.java 136 long secondsSince = TimeUnit.SECONDS.convert(timeSince, TimeUnit.NANOSECONDS);
138 if (secondsSince < 5) {
140 } else if (secondsSince < 60) {
141 lastSeenText += secondsSince + " " + context.getResources()
144 long minutesSince = TimeUnit.MINUTES.convert(secondsSince, TimeUnit.SECONDS);
  /developers/samples/android/connectivity/bluetooth/BluetoothAdvertisements/Application/src/main/java/com/example/android/bluetoothadvertisements/
ScanResultAdapter.java 136 long secondsSince = TimeUnit.SECONDS.convert(timeSince, TimeUnit.NANOSECONDS);
138 if (secondsSince < 5) {
140 } else if (secondsSince < 60) {
141 lastSeenText += secondsSince + " " + context.getResources()
144 long minutesSince = TimeUnit.MINUTES.convert(secondsSince, TimeUnit.SECONDS);
  /development/samples/browseable/BluetoothAdvertisements/src/com.example.android.bluetoothadvertisements/
ScanResultAdapter.java 136 long secondsSince = TimeUnit.SECONDS.convert(timeSince, TimeUnit.NANOSECONDS);
138 if (secondsSince < 5) {
140 } else if (secondsSince < 60) {
141 lastSeenText += secondsSince + " " + context.getResources()
144 long minutesSince = TimeUnit.MINUTES.convert(secondsSince, TimeUnit.SECONDS);

Completed in 112 milliseconds