Home | History | Annotate | Download | only in input

Lines Matching refs:ageMillis

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) {
681 return 0.5f + (100 - ageMillis) * 0.01f;