Searched refs:midIndex (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DFreePathInterpolator.java111 int midIndex = (startIndex + endIndex) / 2;
112 if (t < mX[midIndex]) {
113 endIndex = midIndex;
115 startIndex = midIndex;
150 int midIndex = (startIndex + endIndex) / 2;
151 if (y < mY[midIndex]) {
152 startIndex = midIndex;
154 endIndex = midIndex;
/frameworks/support/compat/ics/android/support/v4/view/animation/
H A DPathInterpolatorApi14.java76 int midIndex = (startIndex + endIndex) / 2;
77 if (t < mX[midIndex]) {
78 endIndex = midIndex;
80 startIndex = midIndex;
/frameworks/base/libs/hwui/
H A DInterpolator.cpp103 int midIndex = (startIndex + endIndex) / 2; local
104 if (t < mX[midIndex]) {
105 endIndex = midIndex;
107 startIndex = midIndex;
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DPathInterpolatorBuilder.java131 int midIndex = (startIndex + endIndex) / 2;
132 if (t < mX[midIndex]) {
133 endIndex = midIndex;
135 startIndex = midIndex;
/frameworks/base/core/java/android/view/animation/
H A DPathInterpolator.java216 int midIndex = (startIndex + endIndex) / 2;
217 if (t < mX[midIndex]) {
218 endIndex = midIndex;
220 startIndex = midIndex;
/frameworks/support/graphics/drawable/animated/src/android/support/graphics/drawable/
H A DPathInterpolatorCompat.java204 int midIndex = (startIndex + endIndex) / 2;
205 if (t < mX[midIndex]) {
206 endIndex = midIndex;
208 startIndex = midIndex;

Completed in 2279 milliseconds