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

  /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 109 milliseconds