/frameworks/base/tools/split-select/ |
D | SplitDescription.cpp | 89 ssize_t endIndex = index; in parseAbi() local 90 if (parts[endIndex] == "arm64") { in parseAbi() 91 endIndex++; in parseAbi() 92 if (endIndex < N) { in parseAbi() 93 if (parts[endIndex] == "v8a") { in parseAbi() 94 endIndex++; in parseAbi() 98 } else if (parts[endIndex] == "armeabi") { in parseAbi() 99 endIndex++; in parseAbi() 101 if (endIndex < N) { in parseAbi() 102 if (parts[endIndex] == "v7a") { in parseAbi() [all …]
|
/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/misc/ |
D | FreePathInterpolator.java | 100 int endIndex = mX.length - 1; in getInterpolation() local 106 return mY[endIndex]; in getInterpolation() 110 while (endIndex - startIndex > 1) { in getInterpolation() 111 int midIndex = (startIndex + endIndex) / 2; in getInterpolation() 113 endIndex = midIndex; in getInterpolation() 119 float xRange = mX[endIndex] - mX[startIndex]; in getInterpolation() 128 float endY = mY[endIndex]; in getInterpolation() 139 int endIndex = mY.length - 1; in getX() local 143 return mX[endIndex]; in getX() 149 while (endIndex - startIndex > 1) { in getX() [all …]
|
/frameworks/base/core/java/com/android/internal/os/ |
D | KernelWakelockReader.java | 133 int endIndex; in parseProcWakelocks() local 138 startIndex = endIndex = i + 1; in parseProcWakelocks() 142 while (endIndex < len) { in parseProcWakelocks() 143 for (endIndex=startIndex; in parseProcWakelocks() 144 endIndex < len && wlBuffer[endIndex] != '\n' && wlBuffer[endIndex] != '\0'; in parseProcWakelocks() 145 endIndex++); in parseProcWakelocks() 148 if (endIndex > (len - 1) ) { in parseProcWakelocks() 157 for (int j = startIndex; j < endIndex; j++) { in parseProcWakelocks() 160 boolean parsed = Process.parseProcLine(wlBuffer, startIndex, endIndex, in parseProcWakelocks() 194 new String(wlBuffer, startIndex, endIndex - startIndex)); in parseProcWakelocks() [all …]
|
D | ProcStatsUtil.java | 66 final int endIndex = contents.indexOf("\0\0"); in readNullSeparatedFile() local 67 if (endIndex != -1) { in readNullSeparatedFile() 68 contents = contents.substring(0, endIndex); in readNullSeparatedFile()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
D | ComprehensionTlv.java | 96 int endIndex = data.length; in decodeMany() local 97 while (startIndex < endIndex) { in decodeMany() 122 int endIndex = data.length; in decode() local 135 " endIndex=" + endIndex); in decode() 167 " endIndex=" + endIndex); in decode() 178 " endIndex=" + endIndex); in decode() 190 " endIndex=" + endIndex); in decode() 196 " endIndex=" + endIndex); in decode() 205 " curIndex=" + curIndex + " endIndex=" + endIndex); in decode()
|
D | BerTlv.java | 80 int endIndex = data.length; in decode() local 98 " curIndex=" + curIndex + " endIndex=" + endIndex); in decode() 107 " endIndex=" + endIndex); in decode() 118 " curIndex=" + curIndex + " endIndex=" + endIndex); in decode() 124 if (endIndex - curIndex < length) { in decode() 126 "Command had extra data endIndex=" + endIndex + " curIndex=" + curIndex + in decode()
|
/frameworks/base/core/tests/coretests/src/android/widget/espresso/ |
D | TextViewActions.java | 191 public static ViewAction longPressAndDragOnText(int startIndex, int endIndex) { in longPressAndDragOnText() argument 196 new TextCoordinates(endIndex), in longPressAndDragOnText() 213 public static ViewAction doubleTapAndDragOnText(int startIndex, int endIndex) { in doubleTapAndDragOnText() argument 218 new TextCoordinates(endIndex), in doubleTapAndDragOnText() 235 public static ViewAction mouseDragOnText(int startIndex, int endIndex) { in mouseDragOnText() argument 240 new TextCoordinates(endIndex), in mouseDragOnText() 257 public static ViewAction mouseDoubleClickAndDragOnText(int startIndex, int endIndex) { in mouseDoubleClickAndDragOnText() argument 262 new TextCoordinates(endIndex), in mouseDoubleClickAndDragOnText() 279 public static ViewAction mouseLongClickAndDragOnText(int startIndex, int endIndex) { in mouseLongClickAndDragOnText() argument 284 new TextCoordinates(endIndex), in mouseLongClickAndDragOnText() [all …]
|
/frameworks/base/core/tests/coretests/src/android/util/ |
D | SparseLongArrayTest.java | 60 private void assertRemoved(int startIndex, int endIndex) { in assertRemoved() argument 62 if (i >= startIndex && i <= endIndex) { in assertRemoved() 148 final int endIndex = 200; in testRemoveAtRange_compareRemoveAt() local 149 mSparseLongArray.removeAtRange(startIndex, endIndex - startIndex + 1); in testRemoveAtRange_compareRemoveAt() 150 for (int i = endIndex; i >= startIndex; i--) { in testRemoveAtRange_compareRemoveAt() 153 assertEquals(TEST_SIZE - (endIndex - startIndex + 1), mSparseLongArray.size()); in testRemoveAtRange_compareRemoveAt() 154 assertRemoved(startIndex, endIndex); in testRemoveAtRange_compareRemoveAt()
|
/frameworks/base/core/java/android/view/textclassifier/ |
D | TextSelection.java | 52 int startIndex, int endIndex, Map<String, Float> entityConfidence, String id, in TextSelection() argument 55 mEndIndex = endIndex; in TextSelection() 150 public Builder(@IntRange(from = 0) int startIndex, @IntRange(from = 0) int endIndex) { in Builder() 152 Preconditions.checkArgument(endIndex > startIndex); in Builder() 154 mEndIndex = endIndex; in Builder() 222 int endIndex, in Request() argument 228 mEndIndex = endIndex; in Request() 348 @IntRange(from = 0) int endIndex) { in Builder() 349 Utils.checkArgument(text, startIndex, endIndex); in Builder() 352 mEndIndex = endIndex; in Builder() [all …]
|
D | TextClassification.java | 562 int endIndex, 568 mEndIndex = endIndex; 687 @IntRange(from = 0) int endIndex) { 688 Utils.checkArgument(text, startIndex, endIndex); 691 mEndIndex = endIndex; 762 final int endIndex = in.readInt(); 771 final Request request = new Request(text, startIndex, endIndex,
|
/frameworks/base/libs/hwui/ |
D | Interpolator.cpp | 106 size_t endIndex = mX.size() - 1; in interpolate() local 108 while (endIndex > startIndex + 1) { in interpolate() 109 int midIndex = (startIndex + endIndex) / 2; in interpolate() 111 endIndex = midIndex; in interpolate() 117 float xRange = mX[endIndex] - mX[startIndex]; in interpolate() 126 float endY = mY[endIndex]; in interpolate()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
D | PathInterpolatorBuilder.java | 128 int endIndex = mX.length - 1; in getInterpolation() local 130 while (endIndex - startIndex > 1) { in getInterpolation() 131 int midIndex = (startIndex + endIndex) / 2; in getInterpolation() 133 endIndex = midIndex; in getInterpolation() 139 float xRange = mX[endIndex] - mX[startIndex]; in getInterpolation() 148 float endY = mY[endIndex]; in getInterpolation()
|
/frameworks/base/libs/hwui/pipeline/skia/ |
D | ReorderBarrierDrawables.cpp | 50 const size_t endIndex = mChildren.size(); in onDraw() local 51 while (drawIndex < endIndex) { in onDraw() 87 const size_t endIndex = zChildren.size(); in onDraw() local 88 while (drawIndex < endIndex // draw only children with positive Z in onDraw() 94 while (shadowIndex < endIndex || drawIndex < endIndex) { in onDraw() 95 if (shadowIndex < endIndex) { in onDraw()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/main/java/com/google/protobuf/ |
D | NioByteString.java | 95 public ByteString substring(int beginIndex, int endIndex) { in substring() argument 97 ByteBuffer slice = slice(beginIndex, endIndex); in substring() 279 private ByteBuffer slice(int beginIndex, int endIndex) { in slice() argument 280 if (beginIndex < buffer.position() || endIndex > buffer.limit() || beginIndex > endIndex) { in slice() 282 String.format("Invalid indices [%d, %d]", beginIndex, endIndex)); in slice() 287 slice.limit(endIndex - buffer.position()); in slice()
|
D | ByteString.java | 258 public abstract ByteString substring(int beginIndex, int endIndex); in substring() argument 1208 static int checkRange(int startIndex, int endIndex, int size) { in checkRange() argument 1209 final int length = endIndex - startIndex; in checkRange() 1210 if ((startIndex | endIndex | length | (size - endIndex)) < 0) { in checkRange() 1214 if (endIndex < startIndex) { in checkRange() 1216 "Beginning index larger than ending index: " + startIndex + ", " + endIndex); in checkRange() 1219 throw new IndexOutOfBoundsException("End index: " + endIndex + " >= " + size); in checkRange() 1273 public final ByteString substring(int beginIndex, int endIndex) { in substring() argument 1274 final int length = checkRange(beginIndex, endIndex, size()); in substring()
|
/frameworks/base/core/tests/coretests/src/android/view/textclassifier/ |
D | TextClassifierTest.java | 86 int endIndex = startIndex + selected.length(); in testSuggestSelection() local 90 text, startIndex, endIndex) in testSuggestSelection() 107 int endIndex = startIndex + selected.length(); in testSuggestSelection_url() local 111 text, startIndex, endIndex) in testSuggestSelection_url() 127 int endIndex = startIndex + selected.length(); in testSmartSelection_withEmoji() local 129 text, startIndex, endIndex) in testSmartSelection_withEmoji() 135 isTextSelection(startIndex, endIndex, NO_TYPE)); in testSmartSelection_withEmoji() 145 int endIndex = startIndex + classifiedText.length(); in testClassifyText() local 147 text, startIndex, endIndex) in testClassifyText() 162 int endIndex = startIndex + classifiedText.length(); in testClassifyText_url() local [all …]
|
D | TextSelectionTest.java | 46 final int endIndex = 37; in testParcel() local 48 final TextSelection reference = new TextSelection.Builder(startIndex, endIndex) in testParcel() 63 assertEquals(endIndex, result.getSelectionEndIndex()); in testParcel()
|
/frameworks/base/core/java/android/view/animation/ |
D | PathInterpolator.java | 213 int endIndex = mX.length - 1; in getInterpolation() local 215 while (endIndex - startIndex > 1) { in getInterpolation() 216 int midIndex = (startIndex + endIndex) / 2; in getInterpolation() 218 endIndex = midIndex; in getInterpolation() 224 float xRange = mX[endIndex] - mX[startIndex]; in getInterpolation() 233 float endY = mY[endIndex]; in getInterpolation()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | IntRangeManager.java | 277 for (int endIndex = startIndex+1; endIndex < len; endIndex++) { in enableRange() 278 IntRange endRange = mRanges.get(endIndex); in enableRange() 293 for (int i = joinIndex; i < endIndex; i++) { in enableRange() 318 for (int i = joinIndex; i <= endIndex; i++) { in enableRange() 364 int endIndex = startIndex; in enableRange() local 370 endIndex = testIndex; in enableRange() 374 if (endIndex == startIndex) { in enableRange() 387 IntRange endRange = mRanges.get(endIndex); in enableRange() 406 for (int i = joinIndex; i <= endIndex; i++) { in enableRange()
|
/frameworks/base/core/java/com/android/internal/util/ |
D | CallbackRegistry.java | 176 final int endIndex = Math.min(mCallbacks.size(), startIndex + Long.SIZE); in notifyRemainderLocked() local 178 notifyCallbacksLocked(sender, arg, arg2, startIndex, endIndex, bits); in notifyRemainderLocked() 200 final int endIndex, final long bits) { in notifyCallbacksLocked() argument 202 for (int i = startIndex; i < endIndex; i++) { in notifyCallbacksLocked() 259 final int endIndex = startIndex + Long.SIZE; in removeRemovedCallbacks() local 262 for (int i = endIndex - 1; i >= startIndex; i--) { in removeRemovedCallbacks()
|
/frameworks/base/core/java/android/database/ |
D | MatrixCursor.java | 93 final int endIndex = rowCount * columnCount; in newRow() local 94 ensureCapacity(endIndex); in newRow() 203 private final int endIndex; field in MatrixCursor.RowBuilder 210 this.endIndex = index + columnCount; in RowBuilder() 221 if (index == endIndex) { in add()
|
/frameworks/base/tools/powermodel/src/com/android/powermodel/ |
D | RawBatteryStats.java | 538 int startIndex, int endIndex) throws ParseException; in setArray() argument 576 int startIndex, int endIndex) throws ParseException { in setArray() argument 578 final int[] array = new int[endIndex-startIndex]; in setArray() 579 for (int i=startIndex; i<endIndex; i++) { in setArray() 616 int startIndex, int endIndex) throws ParseException { in setArray() argument 618 final long[] array = new long[endIndex-startIndex]; in setArray() 619 for (int i=0; i<(endIndex-startIndex); i++) { in setArray() 654 int startIndex, int endIndex) throws ParseException { in setArray() argument 656 final String[] array = new String[endIndex-startIndex]; in setArray() 657 for (int i=0; i<(endIndex-startIndex); i++) { in setArray() [all …]
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | RecentTasks.java | 1562 int endIndex = topIndex; in moveAffiliatedTasksToFront() local 1564 while (endIndex < recentsCount) { in moveAffiliatedTasksToFront() 1565 TaskRecord cur = mTasks.get(endIndex); in moveAffiliatedTasksToFront() 1567 + endIndex + " " + cur); in moveAffiliatedTasksToFront() 1571 Slog.wtf(TAG, "Bad chain @" + endIndex in moveAffiliatedTasksToFront() 1580 Slog.wtf(TAG, "Bad chain @" + endIndex in moveAffiliatedTasksToFront() 1581 + ": middle task " + cur + " @" + endIndex in moveAffiliatedTasksToFront() 1592 Slog.wtf(TAG, "Bad chain @" + endIndex in moveAffiliatedTasksToFront() 1597 if (DEBUG_RECENTS) Slog.d(TAG_RECENTS, "addRecent: end of chain @" + endIndex); in moveAffiliatedTasksToFront() 1602 Slog.wtf(TAG, "Bad chain @" + endIndex in moveAffiliatedTasksToFront() [all …]
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | ProcessList.java | 2580 final int bottomI, int endIndex) { in updateClientActivitiesOrdering() argument 2591 for (int i = endIndex; i >= bottomI; i--) { in updateClientActivitiesOrdering() 2595 if (i == endIndex && subProc.connectionImportance >= endImportance) { in updateClientActivitiesOrdering() 2604 endIndex--; in updateClientActivitiesOrdering() 2614 for (int pos = topI; pos > endIndex; pos--) { in updateClientActivitiesOrdering() 2625 endIndex--; in updateClientActivitiesOrdering() 2632 mLruProcesses.add(endIndex - 1, subProc); in updateClientActivitiesOrdering() 2636 + endIndex); in updateClientActivitiesOrdering() 2637 endIndex--; in updateClientActivitiesOrdering() 2647 int i = endIndex; in updateClientActivitiesOrdering() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | KeyboardShortcutKeysLayout.java | 161 private void layoutChildrenOnRow(int startIndex, int endIndex, int fullRowWidth, int xPos, in layoutChildrenOnRow() argument 167 for (int j = startIndex; j < endIndex; ++j) { in layoutChildrenOnRow() 183 int nextChildWidth = j < endIndex - 1 in layoutChildrenOnRow()
|