Home
last modified time | relevance | path

Searched refs:parseTime (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/tests/servicestests/src/com/android/server/
DNetworkPolicyManagerServiceTest.java857 final long currentTime = parseTime("2007-11-14T00:00:00.000Z"); in testLastCycleBoundaryThisMonth()
858 final long expectedCycle = parseTime("2007-11-05T00:00:00.000Z"); in testLastCycleBoundaryThisMonth()
869 final long currentTime = parseTime("2007-11-14T00:00:00.000Z"); in testLastCycleBoundaryLastMonth()
870 final long expectedCycle = parseTime("2007-10-20T00:00:00.000Z"); in testLastCycleBoundaryLastMonth()
881 final long currentTime = parseTime("2007-02-14T00:00:00.000Z"); in testLastCycleBoundaryThisMonthFebruary()
882 final long expectedCycle = parseTime("2007-01-30T00:00:00.000Z"); in testLastCycleBoundaryThisMonthFebruary()
893 final long currentTime = parseTime("2007-03-14T00:00:00.000Z"); in testLastCycleBoundaryLastMonthFebruary()
894 final long expectedCycle = parseTime("2007-02-28T23:59:59.999Z"); in testLastCycleBoundaryLastMonthFebruary()
907 assertTimeEquals(parseTime("2012-01-29T00:00:00.000Z"), in testCycleBoundaryLeapYear()
908 computeNextCycleBoundary(parseTime("2012-01-14T00:00:00.000Z"), policy)); in testCycleBoundaryLeapYear()
[all …]
/frameworks/base/core/java/android/content/pm/
DPackageParser.java1010 long parseTime = LOG_PARSE_TIMINGS ? SystemClock.uptimeMillis() : 0; in parsePackage() local
1020 parseTime = cacheTime - parseTime; in parsePackage()
1022 if (parseTime + cacheTime > LOG_PARSE_TIMINGS_THRESHOLD_MS) { in parsePackage()
1023 Slog.i(TAG, "Parse times for '" + packageFile + "': parse=" + parseTime in parsePackage()