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

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
CacheStrategy.java 209 long ageMillis = cacheResponseAge();
227 if (!responseCaching.noCache() && ageMillis + minFreshMillis < freshMillis + maxStaleMillis) {
230 if (ageMillis + minFreshMillis >= freshMillis) {
234 if (ageMillis > oneDayMillis && isFreshnessLifetimeHeuristic()) {
  /frameworks/native/libs/input/
VelocityTracker.cpp 653 float ageMillis = (mMovements[mIndex].eventTime - mMovements[index].eventTime)
655 if (ageMillis < 0) {
658 if (ageMillis < 10) {
659 return 0.5f + ageMillis * 0.05;
661 if (ageMillis < 50) {
664 if (ageMillis < 60) {
665 return 0.5f + (60 - ageMillis) * 0.05;
675 float ageMillis = (mMovements[mIndex].eventTime - mMovements[index].eventTime)
677 if (ageMillis < 50) {
680 if (ageMillis < 100)
    [all...]

Completed in 226 milliseconds