Searched defs:startIndex (Results 1 - 25 of 50) sorted by relevance

12

/frameworks/base/core/java/com/android/internal/alsa/
H A DLineTokenizer.java32 int nextToken(String line, int startIndex) { argument
34 int offset = startIndex;
45 int nextDelimiter(String line, int startIndex) { argument
47 int offset = startIndex;
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DReparenting.java48 private void setupButtons(int startIndex, ViewGroup parent) { argument
49 for (int i = startIndex; i < (startIndex + 3); ++i) {
/frameworks/support/paging/common/src/main/java/android/arch/paging/
H A DBoundedDataSource.java60 public List<Value> loadAfter(int startIndex, int pageSize) { argument
61 return loadRange(startIndex, pageSize);
67 public List<Value> loadBefore(int startIndex, int pageSize) { argument
68 if (startIndex < 0) {
71 int loadSize = Math.min(pageSize, startIndex + 1);
72 startIndex = startIndex - loadSize + 1;
73 List<Value> result = loadRange(startIndex, loadSize);
H A DPositionalDataSource.java95 * @param startIndex Load items starting at this index.
102 public abstract List<Value> loadAfter(int startIndex, int pageSize); argument
110 * @param startIndex Load items, starting at this index.
117 public abstract List<Value> loadBefore(int startIndex, int pageSize); argument
/frameworks/base/core/java/android/view/textclassifier/
H A DTextClassifier.java72 CharSequence text, int startIndex, int endIndex, LocaleList defaultLocales) {
106 * by the sub sequence starting at startIndex and ending at endIndex)
107 * @param startIndex start index of the text to classify
114 * @throws IllegalArgumentException if text is null; startIndex is negative;
115 * endIndex is greater than text.length() or not greater than startIndex
121 @IntRange(from = 0) int startIndex,
119 classifyText( @onNull CharSequence text, @IntRange(from = 0) int startIndex, @IntRange(from = 0) int endIndex, @Nullable LocaleList defaultLocales) argument
H A DTextSelection.java41 int startIndex, int endIndex, @NonNull EntityConfidence<String> entityConfidence,
43 mStartIndex = startIndex;
134 * @param startIndex the start index of the text selection.
135 * @param endIndex the end index of the text selection. Must be greater than startIndex
137 public Builder(@IntRange(from = 0) int startIndex, @IntRange(from = 0) int endIndex) { argument
138 Preconditions.checkArgument(startIndex >= 0);
139 Preconditions.checkArgument(endIndex > startIndex);
140 mStartIndex = startIndex;
40 TextSelection( int startIndex, int endIndex, @NonNull EntityConfidence<String> entityConfidence, @NonNull String logSource, @NonNull String versionInfo) argument
H A DTextClassifierImpl.java147 @NonNull CharSequence text, int startIndex, int endIndex,
149 validateInput(text, startIndex, endIndex);
154 .classifyText(string, startIndex, endIndex,
155 getHintFlags(string, startIndex, endIndex));
159 results, string.subSequence(startIndex, endIndex));
169 text, startIndex, endIndex, defaultLocales);
450 * @throws IllegalArgumentException if text is null; startIndex is negative;
451 * endIndex is greater than text.length() or is not greater than startIndex
453 private static void validateInput(@NonNull CharSequence text, int startIndex, int endIndex) { argument
455 Preconditions.checkArgument(startIndex >
146 classifyText( @onNull CharSequence text, int startIndex, int endIndex, @Nullable LocaleList defaultLocales) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/util/
H A DSparseLongArrayTest.java59 private void assertRemoved(int startIndex, int endIndex) { argument
61 if (i >= startIndex && i <= endIndex) {
146 final int startIndex = 101;
148 mSparseLongArray.removeAtRange(startIndex, endIndex - startIndex + 1);
149 for (int i = endIndex; i >= startIndex; i--) {
152 assertEquals(TEST_SIZE - (endIndex - startIndex + 1), mSparseLongArray.size());
153 assertRemoved(startIndex, endIndex);
/frameworks/base/core/tests/coretests/src/android/view/textclassifier/
H A DTextClassificationManagerTest.java60 int startIndex = text.indexOf(selected);
61 int endIndex = startIndex + selected.length();
65 assertThat(mClassifier.suggestSelection(text, startIndex, endIndex, LOCALES),
76 int startIndex = text.indexOf(selected);
77 int endIndex = startIndex + selected.length();
82 assertThat(mClassifier.suggestSelection(text, startIndex, endIndex, nullLocales),
93 int startIndex = text.indexOf(selected);
94 int endIndex = startIndex + selected.length();
98 assertThat(mClassifier.suggestSelection(text, startIndex, endIndex, LOCALES),
108 int startIndex
187 isTextSelection( final int startIndex, final int endIndex, final String type) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DComprehensionTlv.java84 * @param startIndex Index in data at which to start parsing
88 public static List<ComprehensionTlv> decodeMany(byte[] data, int startIndex) argument
92 while (startIndex < endIndex) {
93 ComprehensionTlv ctlv = ComprehensionTlv.decode(data, startIndex);
96 startIndex = ctlv.mValueIndex + ctlv.mLength;
110 * @param startIndex Index in data at which to start parsing
114 public static ComprehensionTlv decode(byte[] data, int startIndex) argument
116 int curIndex = startIndex;
129 ", startIndex=" + startIndex
[all...]
/frameworks/av/media/libaaudio/src/fifo/
H A DFifoBuffer.cpp84 int32_t startIndex) {
89 uint8_t *source = &mStorage[convertFramesToBytes(startIndex)];
91 if ((startIndex + framesAvailable) > mFrameCapacity) {
93 wrappingBuffer->numFrames[0] = mFrameCapacity - startIndex;
95 wrappingBuffer->numFrames[1] = mFrameCapacity - startIndex;
110 fifo_frames_t startIndex = mFifo->getReadIndex(); local
111 fillWrappingBuffer(wrappingBuffer, framesAvailable, startIndex);
117 fifo_frames_t startIndex = mFifo->getWriteIndex(); local
118 fillWrappingBuffer(wrappingBuffer, framesAvailable, startIndex);
82 fillWrappingBuffer(WrappingBuffer *wrappingBuffer, int32_t framesAvailable, int32_t startIndex) argument
/frameworks/av/media/libmedia/
H A DIMediaCodecList.cpp82 const char *type, bool encoder, size_t startIndex = 0) const
84 if (startIndex > INT32_MAX) {
92 data.writeInt32(startIndex);
165 size_t startIndex = static_cast<size_t>(data.readInt32()); local
166 ssize_t index = findCodecByType(type, isEncoder, startIndex);
/frameworks/base/core/java/android/animation/
H A DPathKeyframes.java99 private PointF interpolateInRange(float fraction, int startIndex, int endIndex) { argument
100 int startBase = (startIndex * NUM_COMPONENTS);
H A DAnimatorInflater.java895 int startIndex = i;
897 for (int j = startIndex + 1; j < count - 1; ++j) {
904 keyframeArray[startIndex - 1].getFraction();
905 distributeKeyframes(keyframeArray, gap, startIndex, endIndex);
931 * keyframe before startIndex.
936 * - startIndex must be >0 (which follows from first assumption).
937 * - endIndex must be >= startIndex.
941 * @param startIndex The index of the first keyframe whose fraction must be set
945 int startIndex, int endIndex) {
946 int count = endIndex - startIndex
944 distributeKeyframes(Keyframe[] keyframes, float gap, int startIndex, int endIndex) argument
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DCallbackRegistry.java175 final int startIndex = (remainderIndex + 1) * Long.SIZE;
176 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
185 * mFirst64Removed. bits set to 0 indicates that all callbacks from startIndex to
194 * @param startIndex The index into the mCallbacks to start notifying.
199 private void notifyCallbacksLocked(T sender, int arg, A arg2, final int startIndex, argument
202 for (int i = startIndex; i < endIndex; i++) {
251 * Removes callbacks from startIndex to startIndex
257 removeRemovedCallbacks(int startIndex, long removed) argument
[all...]
/frameworks/base/libs/hwui/
H A DInterpolator.cpp99 size_t startIndex = 0; local
102 while (endIndex > startIndex + 1) {
103 int midIndex = (startIndex + endIndex) / 2;
107 startIndex = midIndex;
111 float xRange = mX[endIndex] - mX[startIndex];
113 return mY[startIndex];
116 float tInRange = t - mX[startIndex];
119 float startY = mY[startIndex];
H A DPathParser.cpp31 static size_t nextStart(const char* s, size_t length, size_t startIndex) { argument
32 size_t index = startIndex;
/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) {
171 if (isRTL() && j == startIndex) {
/frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
H A DCallbackRegistry.java172 final int startIndex = (remainderIndex + 1) * Long.SIZE;
173 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
182 * mFirst64Removed. bits set to 0 indicates that all callbacks from startIndex to
191 * @param startIndex The index into the mCallbacks to start notifying.
196 private void notifyCallbacks(T sender, int arg, A arg2, final int startIndex, argument
199 for (int i = startIndex; i < endIndex; i++) {
251 * Removes callbacks from startIndex to startIndex
258 removeRemovedCallbacks(int startIndex, long removed) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/widget/espresso/
H A DTextViewActions.java179 * Returns an action that long presses then drags on text from startIndex to endIndex on the
187 * @param startIndex The index of the TextView's text to start a drag from
190 public static ViewAction longPressAndDragOnText(int startIndex, int endIndex) { argument
194 new TextCoordinates(startIndex),
201 * Returns an action that double taps then drags on text from startIndex to endIndex on the
209 * @param startIndex The index of the TextView's text to start a drag from
212 public static ViewAction doubleTapAndDragOnText(int startIndex, int endIndex) { argument
216 new TextCoordinates(startIndex),
223 * Returns an action that click then drags by mouse on text from startIndex to endIndex on the
231 * @param startIndex Th
234 mouseDragOnText(int startIndex, int endIndex) argument
256 mouseDoubleClickAndDragOnText(int startIndex, int endIndex) argument
278 mouseLongClickAndDragOnText(int startIndex, int endIndex) argument
300 mouseTripleClickAndDragOnText(int startIndex, int endIndex) argument
[all...]
/frameworks/native/libs/binder/
H A DDebug.cpp224 const size_t startIndex = word+(alignment-(alignment?1:0)); local
234 const unsigned char val = *(pos+startIndex-index);
251 const unsigned char val = *(pos+startIndex-index);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DWspTypeDecoder.java213 * @param startIndex The starting position of the "Text-string" in this pdu
219 public boolean decodeTextString(int startIndex) { argument
220 int index = startIndex;
224 mDataLength = index - startIndex + 1;
225 if (mWspData[startIndex] == 127) {
226 mStringValue = new String(mWspData, startIndex + 1, mDataLength - 2);
228 mStringValue = new String(mWspData, startIndex, mDataLength - 1);
236 * @param startIndex The starting position of the "Token-text" in this pdu
242 public boolean decodeTokenText(int startIndex) { argument
243 int index = startIndex;
262 decodeShortInteger(int startIndex) argument
280 decodeLongInteger(int startIndex) argument
303 decodeIntegerValue(int startIndex) argument
319 decodeUintvarInteger(int startIndex) argument
344 decodeValueLength(int startIndex) argument
368 decodeExtensionMedia(int startIndex) argument
394 decodeConstrainedEncoding(int startIndex) argument
415 decodeContentType(int startIndex) argument
466 readContentParameters(int startIndex, int leftToRead, int accumulator) argument
536 decodeNoValue(int startIndex) argument
568 decodeContentLength(int startIndex) argument
581 decodeContentLocation(int startIndex) argument
595 decodeXWapApplicationId(int startIndex) argument
612 seekXWapApplicationId(int startIndex, int endIndex) argument
676 decodeXWapContentURI(int startIndex) argument
689 decodeXWapInitiatorURI(int startIndex) argument
[all...]
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
H A DTimeZoneFilterTypeAdapter.java344 * @param startIndex
347 public int parseNum(String str, int startIndex) { argument
348 int idx = startIndex;
/frameworks/support/paging/common/src/test/java/android/arch/paging/
H A DContiguousPagedListTest.java99 public List<Item> loadAfter(int startIndex, int pageSize) { argument
100 return getClampedRange(startIndex, startIndex + pageSize, false);
105 public List<Item> loadBefore(int startIndex, int pageSize) { argument
106 return getClampedRange(startIndex - pageSize + 1, startIndex + 1, true);
/frameworks/base/core/jni/android/graphics/
H A DGIFMovie.cpp365 int startIndex = fLastDrawIndex + 1; local
369 startIndex = 0;
379 } else if (startIndex > fCurrIndex) {
381 startIndex = 0;
400 for (int i = startIndex; i <= lastIndex; i++) {

Completed in 3232 milliseconds

12