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

  /packages/apps/Dialer/java/com/android/dialer/calllogutils/
CallLogDates.java 185 public static int getDayDifference(long firstTimestamp, long secondTimestamp) {
186 // Ensure secondTimestamp is no less than firstTimestamp
187 if (secondTimestamp < firstTimestamp) {
188 long t = firstTimestamp;
189 firstTimestamp = secondTimestamp;
207 other.setTimeInMillis(firstTimestamp);
232 private static boolean isWithinOneYear(long firstTimestamp, long secondTimestamp) {
233 // Ensure secondTimestamp is no less than firstTimestamp
234 if (secondTimestamp < firstTimestamp) {
235 long t = firstTimestamp;
    [all...]
  /cts/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/
AdminActionBookkeepingTest.java 81 final long firstTimestamp = mDevicePolicyManager.getLastSecurityLogRetrievalTime();
82 assertTrue(firstTimestamp > previousTimestamp);
83 assertTrue(firstTimestamp >= timeBefore);
84 assertTrue(firstTimestamp <= timeAfter);
96 assertTrue(secondTimestamp > firstTimestamp);
102 assertEquals(firstTimestamp, secondTimestamp);

Completed in 210 milliseconds