Searched refs:endIndex (Results 1 - 25 of 40) sorted by relevance

12

/frameworks/base/tools/split-select/
H A DSplitDescription.cpp89 ssize_t endIndex = index; local
90 if (parts[endIndex] == "arm64") {
91 endIndex++;
92 if (endIndex < N) {
93 if (parts[endIndex] == "v8a") {
94 endIndex++;
98 } else if (parts[endIndex] == "armeabi") {
99 endIndex++;
101 if (endIndex < N) {
102 if (parts[endIndex]
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DFreePathInterpolator.java100 int endIndex = mX.length - 1;
106 return mY[endIndex];
110 while (endIndex - startIndex > 1) {
111 int midIndex = (startIndex + endIndex) / 2;
113 endIndex = midIndex;
119 float xRange = mX[endIndex] - mX[startIndex];
128 float endY = mY[endIndex];
139 int endIndex = mY.length - 1;
143 return mX[endIndex];
149 while (endIndex
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DKernelWakelockReader.java118 int endIndex;
123 startIndex = endIndex = i + 1;
127 while (endIndex < len) {
128 for (endIndex=startIndex;
129 endIndex < len && wlBuffer[endIndex] != '\n' && wlBuffer[endIndex] != '\0';
130 endIndex++);
132 // write to wlBuffer[endIndex]
133 if (endIndex > (le
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DComprehensionTlv.java91 int endIndex = data.length;
92 while (startIndex < endIndex) {
117 int endIndex = data.length;
130 " endIndex=" + endIndex);
162 " endIndex=" + endIndex);
173 " endIndex=" + endIndex);
185 " endIndex
[all...]
H A DBerTlv.java80 int endIndex = data.length;
98 " curIndex=" + curIndex + " endIndex=" + endIndex);
107 " endIndex=" + endIndex);
118 " curIndex=" + curIndex + " endIndex=" + endIndex);
124 if (endIndex - curIndex < length) {
126 "Command had extra data endIndex=" + endIndex
[all...]
/frameworks/support/v4/donut/android/support/v4/view/animation/
H A DPathInterpolatorDonut.java74 int endIndex = mX.length - 1;
75 while (endIndex - startIndex > 1) {
76 int midIndex = (startIndex + endIndex) / 2;
78 endIndex = midIndex;
84 final float xRange = mX[endIndex] - mX[startIndex];
93 final float endY = mY[endIndex];
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DPathInterpolatorBuilder.java128 int endIndex = mX.length - 1;
130 while (endIndex - startIndex > 1) {
131 int midIndex = (startIndex + endIndex) / 2;
133 endIndex = midIndex;
139 float xRange = mX[endIndex] - mX[startIndex];
148 float endY = mY[endIndex];
/frameworks/base/core/tests/coretests/src/android/widget/espresso/
H A DTextViewActions.java163 * Returns an action that long presses then drags on text from startIndex to endIndex on the
172 * @param endIndex The index of the TextView's text to end the drag at
174 public static ViewAction longPressAndDragOnText(int startIndex, int endIndex) { argument
179 new TextCoordinates(endIndex),
185 * Returns an action that double taps then drags on text from startIndex to endIndex on the
194 * @param endIndex The index of the TextView's text to end the drag at
196 public static ViewAction doubleTapAndDragOnText(int startIndex, int endIndex) { argument
201 new TextCoordinates(endIndex),
207 * Returns an action that click then drags by mouse on text from startIndex to endIndex on the
216 * @param endIndex Th
218 mouseDragOnText(int startIndex, int endIndex) argument
240 mouseDoubleClickAndDragOnText(int startIndex, int endIndex) argument
262 mouseLongClickAndDragOnText(int startIndex, int endIndex) argument
284 mouseTripleClickAndDragOnText(int startIndex, int endIndex) argument
313 dragHandle(TextView textView, Handle handleType, int endIndex) argument
332 dragHandle(TextView textView, Handle handleType, int endIndex, boolean primary) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DRecentTasks.java394 int endIndex = topIndex;
396 while (endIndex < recentsCount) {
397 TaskRecord cur = get(endIndex);
399 + endIndex + " " + cur);
403 Slog.wtf(TAG, "Bad chain @" + endIndex
412 Slog.wtf(TAG, "Bad chain @" + endIndex
413 + ": middle task " + cur + " @" + endIndex
424 Slog.wtf(TAG, "Bad chain @" + endIndex
429 if (DEBUG_RECENTS) Slog.d(TAG_RECENTS, "addRecent: end of chain @" + endIndex);
434 Slog.wtf(TAG, "Bad chain @" + endIndex
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIntRangeManager.java275 for (int endIndex = startIndex+1; endIndex < len; endIndex++) {
276 IntRange endRange = mRanges.get(endIndex);
285 // coalesce range with following ranges up to endIndex-1
291 for (int i = joinIndex; i < endIndex; i++) {
310 // coalesce range with following ranges up to endIndex
316 for (int i = joinIndex; i <= endIndex; i++) {
362 int endIndex = startIndex;
368 endIndex
[all...]
H A DWspTypeDecoder.java607 * @param endIndex Valid seek area end point
612 public boolean seekXWapApplicationId(int startIndex, int endIndex) { argument
616 for (index = startIndex; index <= endIndex; ) {
632 if (index > endIndex) return false;
649 if (index + 1 >= endIndex) return false;
/frameworks/base/core/java/android/view/animation/
H A DPathInterpolator.java209 int endIndex = mX.length - 1;
211 while (endIndex - startIndex > 1) {
212 int midIndex = (startIndex + endIndex) / 2;
214 endIndex = midIndex;
220 float xRange = mX[endIndex] - mX[startIndex];
229 float endY = mY[endIndex];
/frameworks/base/core/java/com/android/internal/util/
H A DCallbackRegistry.java176 final int endIndex = Math.min(mCallbacks.size(), startIndex + Long.SIZE);
178 notifyCallbacksLocked(sender, arg, arg2, startIndex, endIndex, bits);
183 * Notify callbacks from startIndex to endIndex, using bits as the bit status
186 * endIndex should be notified.
195 * @param endIndex One past the last index into mCallbacks to notify.
200 final int endIndex, final long bits) {
202 for (int i = startIndex; i < endIndex; i++) {
259 final int endIndex = startIndex + Long.SIZE;
262 for (int i = endIndex - 1; i >= startIndex; i--) {
199 notifyCallbacksLocked(T sender, int arg, A arg2, final int startIndex, final int endIndex, final long bits) argument
/frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
H A DCallbackRegistry.java173 final int endIndex = Math.min(mCallbacks.size(), startIndex + Long.SIZE);
175 notifyCallbacks(sender, arg, arg2, startIndex, endIndex, bits);
180 * Notify callbacks from startIndex to endIndex, using bits as the bit status
183 * endIndex should be notified.
192 * @param endIndex One past the last index into mCallbacks to notify.
197 final int endIndex, final long bits) {
199 for (int i = startIndex; i < endIndex; i++) {
257 final int endIndex = startIndex + Long.SIZE;
260 for (int i = endIndex - 1; i >= startIndex; i--) {
196 notifyCallbacks(T sender, int arg, A arg2, final int startIndex, final int endIndex, final long bits) argument
/frameworks/base/core/java/android/database/
H A DMatrixCursor.java87 final int endIndex = rowCount * columnCount;
88 ensureCapacity(endIndex);
197 private final int endIndex; field in class:MatrixCursor.RowBuilder
204 this.endIndex = index + columnCount;
215 if (index == endIndex) {
/frameworks/data-binding/internal-prebuilts/com/android/databinding/baseLibrary/1.0-rc3/
H A DbaseLibrary-1.0-rc3.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-baseLibrary.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/base/core/java/android/animation/
H A DPathKeyframes.java99 private PointF interpolateInRange(float fraction, int startIndex, int endIndex) { argument
101 int endBase = (endIndex * NUM_COMPONENTS);
H A DAnimatorInflater.java892 int endIndex = i;
897 endIndex = j;
899 float gap = keyframeArray[endIndex + 1].getFraction() -
901 distributeKeyframes(keyframeArray, gap, startIndex, endIndex);
933 * - endIndex must be >= startIndex.
938 * @param endIndex The index of the last keyframe whose fraction must be set
941 int startIndex, int endIndex) {
942 int count = endIndex - startIndex + 2;
944 for (int i = startIndex; i <= endIndex; ++i) {
940 distributeKeyframes(Keyframe[] keyframes, float gap, int startIndex, int endIndex) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DKeyboardShortcutKeysLayout.java161 private void layoutChildrenOnRow(int startIndex, int endIndex, int fullRowWidth, int xPos, argument
167 for (int j = startIndex; j < endIndex; ++j) {
183 int nextChildWidth = j < endIndex - 1
/frameworks/base/core/java/android/hardware/
H A DCamera.java4174 int endIndex, fromIndex = 1;
4177 endIndex = str.indexOf("),(", fromIndex);
4178 if (endIndex == -1) endIndex = str.length() - 1;
4179 splitInt(str.substring(fromIndex, endIndex), range);
4181 fromIndex = endIndex + 3;
4182 } while (endIndex != str.length() - 1);
4199 int endIndex, fromIndex = 1;
4202 endIndex = str.indexOf("),(", fromIndex);
4203 if (endIndex
[all...]
/frameworks/base/services/usage/java/com/android/server/usage/
H A DUsageStatsDatabase.java410 int endIndex = intervalStats.closestIndexOnOrBefore(endTime);
411 if (endIndex < 0) {
419 if (intervalStats.keyAt(endIndex) == endTime) {
421 endIndex--;
422 if (endIndex < 0) {
433 for (int i = startIndex; i <= endIndex; i++) {
/frameworks/base/core/jni/
H A Dandroid_util_Process.cpp842 char* buffer, jint startIndex, jint endIndex, jintArray format,
889 if (i >= endIndex) {
899 while (i < endIndex && buffer[i] != ')') {
905 while (buffer[i] != '"' && i < endIndex) {
911 while (i < endIndex && buffer[i] != term) {
918 if (i < endIndex) {
921 while (i < endIndex && buffer[i] == term) {
966 jbyteArray buffer, jint startIndex, jint endIndex, jintArray format,
972 (char*) bufferArray, startIndex, endIndex, format, outStrings,
841 android_os_Process_parseProcLineArray(JNIEnv* env, jobject clazz, char* buffer, jint startIndex, jint endIndex, jintArray format, jobjectArray outStrings, jlongArray outLongs, jfloatArray outFloats) argument
965 android_os_Process_parseProcLine(JNIEnv* env, jobject clazz, jbyteArray buffer, jint startIndex, jint endIndex, jintArray format, jobjectArray outStrings, jlongArray outLongs, jfloatArray outFloats) argument
/frameworks/base/libs/hwui/
H A DRenderNode.cpp931 size_t drawIndex, shadowIndex, endIndex; local
934 endIndex = nonNegativeIndex;
935 shadowIndex = endIndex; // draw no shadows
938 endIndex = size;
943 endIndex - drawIndex, mode == kNegativeZChildren ? "negative" : "positive");
946 while (shadowIndex < endIndex || drawIndex < endIndex) {
947 if (shadowIndex < endIndex) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIccUtils.java535 int endIndex = offset + (number * 3); // 1 color use 3 bytes
544 } while (valueIndex < endIndex);

Completed in 8351 milliseconds

12