HomeSort by relevance Sort by last modified time
    Searched refs:endIndex (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /external/chromium/third_party/icu/public/common/unicode/
umisc.h 47 int32_t endIndex;
chariter.h 145 * (toward endIndex()). If there are
155 * (toward endIndex()). If there are
489 * (toward endIndex()), and returns that code unit. If there are
498 * (toward endIndex()), and returns that code point. If there are
558 inline int32_t endIndex(void) const;
701 CharacterIterator::endIndex(void) const {
  /external/icu4c/common/unicode/
umisc.h 47 int32_t endIndex;
chariter.h 145 * (toward endIndex()). If there are
155 * (toward endIndex()). If there are
489 * (toward endIndex()), and returns that code unit. If there are
498 * (toward endIndex()), and returns that code point. If there are
558 inline int32_t endIndex(void) const;
701 CharacterIterator::endIndex(void) const {
  /libcore/luni/src/main/java/java/text/
FieldPosition.java 34 private int myField, beginIndex, endIndex;
75 beginIndex = endIndex = 0;
96 && beginIndex == pos.beginIndex && endIndex == pos.endIndex;
114 return endIndex;
138 return attributeHash + myField * 10 + beginIndex * 100 + endIndex;
158 endIndex = index;
169 + myField + ", beginIndex=" + beginIndex + ", endIndex="
170 + endIndex + "]";
  /external/apache-http/src/org/apache/http/util/
CharArrayBuffer.java 206 public int indexOf(int ch, int beginIndex, int endIndex) {
210 if (endIndex > this.len) {
211 endIndex = this.len;
213 if (beginIndex > endIndex) {
216 for (int i = beginIndex; i < endIndex; i++) {
228 public String substring(int beginIndex, int endIndex) {
232 if (endIndex > this.len) {
235 if (beginIndex > endIndex) {
238 return new String(this.buffer, beginIndex, endIndex - beginIndex);
241 public String substringTrimmed(int beginIndex, int endIndex) {
    [all...]
  /frameworks/base/core/java/android/database/
MatrixCursor.java 87 int endIndex = rowCount * columnCount;
88 ensureCapacity(endIndex);
89 int start = endIndex - columnCount;
90 return new RowBuilder(start, endIndex);
190 private final int endIndex;
192 RowBuilder(int index, int endIndex) {
194 this.endIndex = endIndex;
205 if (index == endIndex) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/voice/
WaveformImage.java 55 int endIndex = end / 2 + delay;
56 if (end == 0 || endIndex >= numSamples) {
57 endIndex = numSamples;
63 final int size = endIndex - index;
  /external/proguard/src/proguard/
WordReader.java 177 int endIndex;
184 endIndex = ++currentIndex;
206 endIndex = currentIndex++;
225 endIndex = currentIndex;
229 currentWord = currentLine.substring(startIndex, endIndex);
  /frameworks/base/core/java/android/net/http/
CharArrayBuffers.java 67 int endIndex = buffer.length();
70 for (int i = beginIndex; i < endIndex; i++) {
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
BerTlv.java 69 int endIndex = data.length;
104 if (endIndex - curIndex < length) {
ComprehensionTlv.java 88 int endIndex = data.length;
89 while (startIndex < endIndex) {
110 int endIndex = data.length;
  /external/webkit/WebKitTools/Scripts/
bisect-builds 131 my $endIndex = $revisions[1] ? findNearestNightlyIndex(@nightlies, $revisions[1], 'floor') : $#nightlies;
153 $nightlies[$endIndex]->{rev};
154 downloadNightly($nightlies[$endIndex]->{file}, $nightlyFilesURLBase, $nightlyDownloadDirectory);
155 mountAndRunNightly($nightlies[$endIndex]->{file}, $nightlyDownloadDirectory, $safariPath, $tempFile);
156 $didReproduceBug = promptForTest($nightlies[$endIndex]->{rev});
157 $endIndex++ if $didReproduceBug < 0;
165 printStatus($nightlies[$startIndex]->{rev}, $nightlies[$endIndex]->{rev}, $isProgression);
168 while (abs($endIndex - $startIndex) > 1) {
169 my $index = $startIndex + int(($endIndex - $startIndex) / 2);
174 my $buildsLeft = max(max(0, $endIndex - $index - 1), max(0, $index - $startIndex - 1))
    [all...]
  /external/apache-http/src/org/apache/http/impl/auth/
AuthSchemeBase.java 105 int endIndex = pos;
106 String s = buffer.substring(beginIndex, endIndex);
  /libcore/luni/src/main/java/java/util/
Arrays.java 194 * @param endIndex the exclusive start index.
198 * @throws IllegalArgumentException if {@code startIndex > endIndex}
199 * @throws ArrayIndexOutOfBoundsException if {@code startIndex < 0 || endIndex > array.length}
202 public static int binarySearch(byte[] array, int startIndex, int endIndex, byte value) {
203 checkBinarySearchBounds(startIndex, endIndex, array.length);
205 int hi = endIndex - 1;
244 * @param endIndex the exclusive start index.
248 * @throws IllegalArgumentException if {@code startIndex > endIndex}
249 * @throws ArrayIndexOutOfBoundsException if {@code startIndex < 0 || endIndex > array.length}
252 public static int binarySearch(char[] array, int startIndex, int endIndex, char value)
    [all...]
HugeEnumSet.java 336 int endIndex = endOrdinal / BIT_IN_LONG;
339 if (startIndex == endIndex) {
354 size -= Long.bitCount(bits[endIndex]);
355 bits[endIndex] |= range;
356 size += Long.bitCount(bits[endIndex]);
357 for (int i = (startIndex + 1); i <= (endIndex - 1); i++) {
  /frameworks/base/core/java/android/bluetooth/
AtParser.java 311 int endIndex = findChar(';', input, index);
318 if (i >= endIndex) {
323 if (i + 1 < endIndex) {
349 generateArgs(input.substring(i + 1, endIndex));
357 index = endIndex;
  /external/icu4c/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/icu4c/test/intltest/
tstnrapi.cpp 90 copy.endIndex()!=iter.endIndex()
115 if(copy.endIndex()!=s.length()-1) {
  /libcore/luni/src/test/java/tests/api/java/util/
ArraysTest.java     [all...]
  /external/proguard/src/proguard/retrace/
ReTrace.java 253 int endIndex = matcher.end(expressionTypeIndex + 1);
308 lineIndex = endIndex;
518 int endIndex = obfuscatedArguments.indexOf(',', startIndex);
519 if (endIndex < 0)
524 originalArguments.append(originalType(obfuscatedArguments.substring(startIndex, endIndex).trim())).append(',');
526 startIndex = endIndex + 1;
  /external/apache-http/src/org/apache/http/impl/client/
AbstractAuthenticationHandler.java 98 int endIndex = pos;
99 String s = buffer.substring(beginIndex, endIndex);
  /libcore/luni/src/main/java/org/apache/xml/utils/
XMLStringDefault.java 641 * extends to the character at index <code>endIndex - 1</code>.
642 * Thus the length of the substring is <code>endIndex-beginIndex</code>.
645 * @param endIndex the ending index, exclusive.
649 * <code>endIndex</code> is larger than the length of
652 * <code>endIndex</code>.
654 public XMLString substring(int beginIndex, int endIndex)
656 return new XMLStringDefault(m_str.substring(beginIndex, endIndex));
XMLString.java 548 * extends to the character at index <code>endIndex - 1</code>.
549 * Thus the length of the substring is <code>endIndex-beginIndex</code>.
552 * @param endIndex the ending index, exclusive.
556 * <code>endIndex</code> is larger than the length of
559 * <code>endIndex</code>.
561 public abstract XMLString substring(int beginIndex, int endIndex);
  /external/chromium/third_party/icu/source/test/intltest/
tstnrapi.cpp 91 copy.endIndex()!=iter.endIndex()
116 if(copy.endIndex()!=s.length()-1) {

Completed in 361 milliseconds

1 2 3 4