OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ageMillis
(Results
1 - 2
of
2
) sorted by null
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
CacheStrategy.java
196
long
ageMillis
= cacheResponseAge();
214
if (!responseCaching.noCache() &&
ageMillis
+ minFreshMillis < freshMillis + maxStaleMillis) {
216
if (
ageMillis
+ minFreshMillis >= freshMillis) {
220
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 73 milliseconds