HomeSort by relevance Sort by last modified time
    Searched refs:endIndex (Results 26 - 50 of 723) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/base/libs/hwui/
Interpolator.cpp 100 size_t endIndex = mX.size() - 1;
102 while (endIndex > startIndex + 1) {
103 int midIndex = (startIndex + endIndex) / 2;
105 endIndex = midIndex;
111 float xRange = mX[endIndex] - mX[startIndex];
120 float endY = mY[endIndex];
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
PathInterpolatorBuilder.java 128 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];
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
AllAllocationsRecorder.java 50 int endIndex = 2;
59 endIndex = i;
67 new Allocation(desc, size, asList(stackTrace).subList(startIndex, endIndex + 1)));
  /external/skia/src/pathops/
SkPathOpsConic.h 62 void align(int endIndex, SkDPoint* dstPt) const {
63 fPts.align(endIndex, dstPt);
79 bool isLinear(int startIndex, int endIndex) const {
80 return fPts.isLinear(startIndex, endIndex);
  /frameworks/base/core/tests/coretests/src/android/widget/espresso/
TextViewActions.java 179 * Returns an action that long presses then drags on text from startIndex to endIndex on the
188 * @param endIndex The index of the TextView's text to end the drag at
190 public static ViewAction longPressAndDragOnText(int startIndex, int endIndex) {
195 new TextCoordinates(endIndex),
201 * Returns an action that double taps then drags on text from startIndex to endIndex on the
210 * @param endIndex The index of the TextView's text to end the drag at
212 public static ViewAction doubleTapAndDragOnText(int startIndex, int endIndex) {
217 new TextCoordinates(endIndex),
223 * Returns an action that click then drags by mouse on text from startIndex to endIndex on the
232 * @param endIndex The index of the TextView's text to end the drag a
    [all...]
  /external/okhttp/okio/okio/src/main/java/okio/
BufferedSink.java 57 * Encodes the characters at {@code beginIndex} up to {@code endIndex} from {@code string} in
60 BufferedSink writeUtf8(String string, int beginIndex, int endIndex) throws IOException;
69 * Encodes the characters at {@code beginIndex} up to {@code endIndex} from {@code string} in
72 BufferedSink writeString(String string, int beginIndex, int endIndex, Charset charset)
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
AudioFileOutput.java 56 * endIndex <= startIndex: Writes [startIndex, data.length) then [0, endIndex)
57 * endIndex > startIndex : Writes [startIndex, endIndex)
60 public boolean writeRingBufferData(double[] data, int startIndex, int endIndex) {
70 int sampleCount = endIndex - startIndex;
76 if (endIndex > startIndex) {
77 writeDataBuffer(data, startIndex, endIndex);
80 writeDataBuffer(data, 0, endIndex);
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ClassTable.java 182 int endIndex;
184 for (endIndex = startIndex; endIndex < classTable.length; endIndex += 1) {
185 if (classTable[endIndex].getGlyphID() != nextID ||
186 classTable[endIndex].getClassID() != classID) {
200 startIndex = endIndex;
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
NioByteString.java 95 public ByteString substring(int beginIndex, int endIndex) {
97 ByteBuffer slice = slice(beginIndex, endIndex);
276 * @param endIndex the end index of the slice (exclusive).
279 private ByteBuffer slice(int beginIndex, int endIndex) {
280 if (beginIndex < buffer.position() || endIndex > buffer.limit() || beginIndex > endIndex) {
282 String.format("Invalid indices [%d, %d]", beginIndex, endIndex));
287 slice.limit(endIndex - buffer.position());
  /frameworks/base/libs/hwui/pipeline/skia/
ReorderBarrierDrawables.cpp 55 const size_t endIndex = mChildren.size();
56 while (drawIndex < endIndex) {
87 const size_t endIndex = zChildren.size();
88 while (drawIndex < endIndex //draw only children with positive Z
93 while (shadowIndex < endIndex || drawIndex < endIndex) {
94 if (shadowIndex < endIndex) {
  /external/guava/guava/src/com/google/common/escape/
UnicodeEscaper.java 224 int endIndex = destIndex + charsSkipped;
225 if (dest.length < endIndex) {
226 dest = growBuffer(dest, destIndex, endIndex);
229 destIndex = endIndex;
  /external/testng/src/main/java/org/testng/mustache/
Mustache.java 44 int endIndex = findClosingIndex(template, ti, conditionalVariable);
52 String subTemplate = template.substring(ti + variable.length() + 4, endIndex);
62 String subTemplate = template.substring(ti + variable.length() + 4, endIndex);
68 ti = endIndex + variable.length() + 4;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IntRangeManager.java 275 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 = testIndex
    [all...]
  /external/apache-http/src/org/apache/http/impl/auth/
AuthSchemeBase.java 110 int endIndex = pos;
111 String s = buffer.substring(beginIndex, endIndex);
  /external/icu/icu4c/source/common/unicode/
chariter.h 147 * (toward endIndex()). If there are
157 * (toward endIndex()). If there are
497 * (toward endIndex()), and returns that code unit. If there are
506 * (toward endIndex()), and returns that code point. If there are
566 inline int32_t endIndex(void) const;
709 CharacterIterator::endIndex(void) const {
  /frameworks/base/core/java/android/view/textclassifier/
TextClassifier.java 72 CharSequence text, int startIndex, int endIndex, LocaleList defaultLocales) {
106 * by the sub sequence starting at startIndex and ending at endIndex)
108 * @param endIndex end index of the text to classify
115 * endIndex is greater than text.length() or not greater than startIndex
122 @IntRange(from = 0) int endIndex,
  /external/icu/android_icu4j/src/main/java/android/icu/text/
SearchIterator.java 149 int endIndex() {
185 || position > search_.endIndex()) {
188 search_.beginIndex() + " and " + search_.endIndex());
391 int endIdx = search_.endIndex();
439 index = search_.endIndex(); // m_search_->textLength in ICU4C
561 int endIdx = search_.endIndex();
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
SearchIterator.java 152 int endIndex() {
190 || position > search_.endIndex()) {
193 search_.beginIndex() + " and " + search_.endIndex());
406 int endIdx = search_.endIndex();
455 index = search_.endIndex(); // m_search_->textLength in ICU4C
583 int endIdx = search_.endIndex();
  /frameworks/base/core/java/android/view/animation/
PathInterpolator.java 213 int endIndex = mX.length - 1;
215 while (endIndex - startIndex > 1) {
216 int midIndex = (startIndex + endIndex) / 2;
218 endIndex = midIndex;
224 float xRange = mX[endIndex] - mX[startIndex];
233 float endY = mY[endIndex];
  /frameworks/base/core/java/com/android/internal/util/
CallbackRegistry.java 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
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--) {
  /frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
CallbackRegistry.java 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
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++) {
260 final int endIndex = startIndex + Long.SIZE;
263 for (int i = endIndex - 1; i >= startIndex; i--) {
  /frameworks/support/graphics/drawable/animated/src/android/support/graphics/drawable/
PathInterpolatorCompat.java 201 int endIndex = mX.length - 1;
203 while (endIndex - startIndex > 1) {
204 int midIndex = (startIndex + endIndex) / 2;
206 endIndex = midIndex;
212 float xRange = mX[endIndex] - mX[startIndex];
221 float endY = mY[endIndex];
  /frameworks/base/core/java/android/database/
MatrixCursor.java 87 final int endIndex = rowCount * columnCount;
88 ensureCapacity(endIndex);
197 private final int endIndex;
204 this.endIndex = index + columnCount;
215 if (index == endIndex) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
EventLocationEventTestCase.java 100 long endIndex = replyPacket.getNextValueAsLong();
102 " and ends at " + endIndex);
109 for (long idx = startIndex; idx <= endIndex; ++idx) {
  /external/icu/icu4c/source/samples/citer/
citer.cpp 82 if (iter.startIndex() != 0 || iter.endIndex() != u_strlen(testText)) {
83 u_fprintf(out, "startIndex() or endIndex() failed\n");
141 int32_t i = iter.endIndex();
146 if (iter.startIndex() != 0 || iter.endIndex() != u_strlen(testText)) {
147 u_fprintf(out, "startIndex() or endIndex() failed\n");

Completed in 450 milliseconds

12 3 4 5 6 7 8 91011>>