Searched refs:startIndex (Results 1 - 25 of 57) sorted by relevance

123

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DFreePathInterpolator.java99 int startIndex = 0;
104 return mY[startIndex];
110 while (endIndex - startIndex > 1) {
111 int midIndex = (startIndex + endIndex) / 2;
115 startIndex = midIndex;
119 float xRange = mX[endIndex] - mX[startIndex];
121 return mY[startIndex];
124 float tInRange = t - mX[startIndex];
127 float startY = mY[startIndex];
138 int startIndex
[all...]
/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/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/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...]
H A DIntRangeManager.java206 for (int startIndex = 0; startIndex < len; startIndex++) {
207 IntRange range = mRanges.get(startIndex);
220 if ((startIndex + 1) < len) {
221 nextRange = mRanges.get(startIndex + 1);
258 mRanges.add(startIndex, new IntRange(startId, endId, client));
275 for (int endIndex = startIndex+1; endIndex < len; endIndex++) {
287 // of the next range to join is always startIndex+1.
290 int joinIndex = startIndex
[all...]
/frameworks/support/v4/donut/android/support/v4/view/animation/
H A DPathInterpolatorDonut.java73 int startIndex = 0;
75 while (endIndex - startIndex > 1) {
76 int midIndex = (startIndex + endIndex) / 2;
80 startIndex = midIndex;
84 final float xRange = mX[endIndex] - mX[startIndex];
86 return mY[startIndex];
89 final float tInRange = t - mX[startIndex];
92 final float startY = mY[startIndex];
/frameworks/base/core/java/com/android/internal/os/
H A DKernelWakelockReader.java117 int startIndex;
123 startIndex = endIndex = i + 1;
128 for (endIndex=startIndex;
142 for (int j = startIndex; j < endIndex; j++) {
145 boolean parsed = Process.parseProcLine(wlBuffer, startIndex, endIndex,
179 new String(wlBuffer, startIndex, endIndex - startIndex));
184 startIndex = endIndex + 1;
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DPathInterpolatorBuilder.java127 int startIndex = 0;
130 while (endIndex - startIndex > 1) {
131 int midIndex = (startIndex + endIndex) / 2;
135 startIndex = midIndex;
139 float xRange = mX[endIndex] - mX[startIndex];
141 return mY[startIndex];
144 float tInRange = t - mX[startIndex];
147 float startY = mY[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/base/core/java/android/view/animation/
H A DPathInterpolator.java208 int startIndex = 0;
211 while (endIndex - startIndex > 1) {
212 int midIndex = (startIndex + endIndex) / 2;
216 startIndex = midIndex;
220 float xRange = mX[endIndex] - mX[startIndex];
222 return mY[startIndex];
225 float tInRange = t - mX[startIndex];
228 float startY = mY[startIndex];
/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/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++) {
248 * Removes callbacks from startIndex to startIndex
255 removeRemovedCallbacks(int startIndex, long removed) argument
[all...]
/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/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
171 * @param startIndex The index of the TextView's text to start a drag from
174 public static ViewAction longPressAndDragOnText(int startIndex, int endIndex) { argument
178 new TextCoordinates(startIndex),
185 * Returns an action that double taps then drags on text from startIndex to endIndex on the
193 * @param startIndex The index of the TextView's text to start a drag from
196 public static ViewAction doubleTapAndDragOnText(int startIndex, int endIndex) { argument
200 new TextCoordinates(startIndex),
207 * Returns an action that click then drags by mouse on text from startIndex to endIndex on the
215 * @param startIndex 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
[all...]
/frameworks/av/include/media/
H A DIMediaCodecList.h41 const char *type, bool encoder, size_t startIndex = 0) const = 0;
/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/services/core/java/com/android/server/location/
H A DGpsXtraDownloader.java84 int startIndex = mNextServerIndex;
100 if (mNextServerIndex == startIndex) break;
/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);
/frameworks/base/services/usage/java/com/android/server/usage/
H A DUsageStatsDatabase.java97 final int startIndex = files.closestIndexOnOrAfter(currentTimeMillis);
98 if (startIndex < 0) {
103 for (int i = startIndex; i < fileCount; i++) {
109 for (int i = startIndex; i < fileCount; i++) {
403 int startIndex = intervalStats.closestIndexOnOrBefore(beginTime);
404 if (startIndex < 0) {
407 startIndex = 0;
433 for (int i = startIndex; i <= endIndex; i++) {
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DGrid.java169 * @param startIndex the index of the first item
171 public void setStart(int startIndex) { argument
172 mStartIndex = 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/av/include/media/stagefright/
H A DMediaCodecList.h43 const char *type, bool encoder, size_t startIndex = 0) const;
/frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
H A DProcessMethodAdapters.java107 final int startIndex = 1 + (takesComponent ? 1 : 0);
109 final int numAdditionalArgs = parameters.size() - startIndex;
114 for (int i = startIndex; i < numAttributes + startIndex; i++) {
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DICalendar.java546 int startIndex = -1;
571 startIndex = state.index;
575 if ((parameter == null) || (startIndex == -1)) {
579 parameter.name = text.substring(startIndex + 1, equalIndex);

Completed in 851 milliseconds

123