HomeSort by relevance Sort by last modified time
    Searched full:endindex (Results 26 - 50 of 397) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/test/intltest/
sfwdchit.h 41 * (toward endIndex()). If there are
49 * (toward endIndex()). If there are
  /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/chromium-trace/catapult/dashboard/dashboard/elements/
chart-slider.html 151 var endIndex = null;
159 endIndex = this.revisionToIndexMap[this.endrev];
161 endIndex = this.getPreviousIndexForRev(this.endrev);
165 if (startIndex == endIndex) {
166 if (endIndex == 0) {
167 endIndex = 1;
172 this.chart.setSelection({xaxis: {from: startIndex, to: endIndex}},
293 var endIndex = Math.min(
305 this.endrev = this.data[endIndex][0];
  /external/icu/icu4c/source/samples/citer/
citer.cpp 76 if (iter.startIndex() != 0 || iter.endIndex() != u_strlen(testText)) {
77 u_fprintf(out, "startIndex() or endIndex() failed\n");
135 int32_t i = iter.endIndex();
140 if (iter.startIndex() != 0 || iter.endIndex() != u_strlen(testText)) {
141 u_fprintf(out, "startIndex() or endIndex() failed\n");
  /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/icu/icu4c/source/i18n/unicode/
ufieldpositer.h 97 * @param endIndex
104 * values pointed to by beginIndex and endIndex are undefined.
116 int32_t *beginIndex, int32_t *endIndex);
  /frameworks/base/core/java/android/view/animation/
PathInterpolator.java 209 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];
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
FieldPositionTest.java 96 assertTrue("Objects with a different endIndex were still equal!", !fpos
202 assertEquals("EndIndex should have been set to 3", 3, fpos
206 assertEquals("endIndex should have been set to Integer.MAX_VALUE",
210 assertEquals("endIndex should have been set to -1",
224 "java.text.FieldPosition[field=1,attribute=null,beginIndex=2,endIndex=3]",
232 + ",beginIndex=4,endIndex=5]", fpos2.toString());
  /libcore/ojluni/src/main/java/java/text/
FieldPosition.java 85 int endIndex = 0;
177 return endIndex;
193 endIndex = ei;
224 && endIndex == other.endIndex
233 return (field << 24) | (beginIndex << 16) | endIndex;
244 ",endIndex=" + endIndex + ']';
  /libcore/ojluni/src/main/java/sun/security/x509/
DNSName.java 83 //endIndex is the index of the last character of a component plus 1
84 for (int endIndex,startIndex=0; startIndex < name.length(); startIndex = endIndex+1) {
85 endIndex = name.indexOf('.', startIndex);
86 if (endIndex < 0) {
87 endIndex = name.length();
89 if ((endIndex-startIndex) < 1)
96 for (int nonStartIndex=startIndex+1; nonStartIndex < endIndex; nonStartIndex++) {
  /frameworks/base/services/core/java/com/android/server/am/
RecentTasks.java 394 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...]
  /external/icu/icu4c/source/i18n/
scientificnumberformatter.cpp 39 int32_t endIndex,
45 for (int32_t i = beginIndex; i < endIndex;) {
151 int32_t endIndex = fp.getEndIndex();
169 copyFromOffset = endIndex;
udateintervalformat.cpp 99 position->endIndex = fp.getEndIndex();
  /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)
RealBufferedSink.java 61 @Override public BufferedSink writeUtf8(String string, int beginIndex, int endIndex)
64 buffer.writeUtf8(string, beginIndex, endIndex);
80 @Override public BufferedSink writeString(String string, int beginIndex, int endIndex,
83 buffer.writeString(string, beginIndex, endIndex, charset);
ByteString.java 253 * {@code beginIndex} and ends at the specified {@code endIndex}. Returns this byte string if
254 * {@code beginIndex} is 0 and {@code endIndex} is the length of this byte string.
256 public ByteString substring(int beginIndex, int endIndex) {
258 if (endIndex > data.length) {
259 throw new IllegalArgumentException("endIndex > length(" + data.length + ")");
262 int subLen = endIndex - beginIndex;
263 if (subLen < 0) throw new IllegalArgumentException("endIndex < beginIndex");
265 if ((beginIndex == 0) && (endIndex == data.length)) {
  /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) {
  /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++) {
257 final int endIndex = startIndex + Long.SIZE;
260 for (int i = endIndex - 1; i >= startIndex; i--) {
  /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...]
  /prebuilts/go/darwin-x86/src/encoding/pem/
pem.go 122 var endIndex int
126 endIndex = 0
128 endIndex = bytes.Index(rest, pemEnd)
131 if endIndex < 0 {
135 base64Data := removeWhitespace(rest[:endIndex])
145 _, rest = getLine(rest[endIndex+len(pemEnd)-1:])
  /prebuilts/go/linux-x86/src/encoding/pem/
pem.go 122 var endIndex int
126 endIndex = 0
128 endIndex = bytes.Index(rest, pemEnd)
131 if endIndex < 0 {
135 base64Data := removeWhitespace(rest[:endIndex])
145 _, rest = getLine(rest[endIndex+len(pemEnd)-1:])
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
ArraysTest.java     [all...]
  /external/skia/src/pathops/
SkPathOpsQuad.h 61 void align(int endIndex, SkDPoint* dstPt) const;
75 bool isLinear(int startIndex, int endIndex) const;
  /external/libxml2/include/libxml/
xpointer.h 57 int endindex);

Completed in 1503 milliseconds

12 3 4 5 6 7 8 91011>>