Searched defs:RAMP_DOWN_BEGIN_MS (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Dialer/java/com/android/incallui/answer/impl/answermethod/
H A DFlingUpDownMethod.java1145 private static final long RAMP_DOWN_BEGIN_MS = 1_583; field in class:FlingUpDownMethod.VibrateInterpolator
1147 private static final long RAMP_DOWN_END_MS = RAMP_DOWN_BEGIN_MS + RAMP_DOWN_DURATION_MS;
1169 } else if ((time >= RAMP_UP_END_MS) && time <= RAMP_DOWN_BEGIN_MS) {
1172 } else if (time > RAMP_DOWN_BEGIN_MS && time < RAMP_DOWN_END_MS) {
1177 (time - RAMP_DOWN_BEGIN_MS) / (float) RAMP_DOWN_DURATION_MS);

Completed in 43 milliseconds