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

1 2 3

  /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 {
  /frameworks/base/core/java/android/net/http/
CharArrayBuffers.java 67 int endIndex = buffer.length();
70 for (int i = beginIndex; i < endIndex; i++) {
  /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/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/impl/client/
AbstractAuthenticationHandler.java 98 int endIndex = pos;
99 String s = buffer.substring(beginIndex, endIndex);
  /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;
  /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;
RecognitionView.java 261 int endIndex;
263 endIndex = numSamples;
265 endIndex = Math.min(endPosition, numSamples);
275 final int count = (endIndex - startIndex) / numSamplePerWave;
  /cts/tools/host/src/com/android/cts/
ReferenceAppTestPackage.java 124 int endIndex = line.indexOf(' ', 4);
125 numberOfTestsRan = line.substring(4, endIndex);
  /external/chromium/third_party/icu/source/common/
normlzr.cpp 422 int32_t Normalizer::endIndex() const {
  /external/icu4c/common/
normlzr.cpp 355 int32_t Normalizer::endIndex() const {
356 return text->endIndex();
  /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/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) {
  /external/webkit/WebCore/editing/
IndentOutdentCommand.cpp 302 int endIndex = indexForVisiblePosition(endOfSelection);
315 RefPtr<Range> endRange = TextIterator::rangeFromLocationAndLength(document()->documentElement(), endIndex, 0, true);
  /external/webkit/WebCore/inspector/front-end/
TimelinePanel.js 364 var endIndex = Math.min(recordsInWindow.length, Math.ceil(visibleBottom / rowHeight));
365 while (endIndex < recordsInWindow.length - 1 && recordsInWindow[endIndex].parent)
366 endIndex++;
373 this._bottomGapElement.style.height = (recordsInWindow.length - endIndex) * rowHeight + "px";
381 for (var i = startIndex; i < endIndex; ++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;
  /frameworks/base/telephony/java/com/android/internal/telephony/
IccUtils.java 478 int endIndex = offset + (number * 3); // 1 color use 3 bytes
487 } while (valueIndex < endIndex);
IntRangeManager.java 214 for (int endIndex = startIndex+1; endIndex < len; endIndex++) {
215 IntRange endRange = mRanges.get(endIndex);
223 // coalesce range with following ranges up to endIndex-1
229 for (int i = joinIndex; i < endIndex; i++) {
246 // coalesce range with following ranges up to endIndex
252 for (int i = joinIndex; i <= endIndex; i++) {
293 int endIndex = startIndex;
299 endIndex = testIndex
    [all...]
  /libcore/luni/src/main/java/java/util/
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++) {
  /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/webkit/WebCore/dom/
SelectElement.cpp 739 int endIndex = 0;
743 endIndex = nextSelectableListIndex(data, element, lastSelectedListIndex(data, element));
745 endIndex = previousSelectableListIndex(data, element, optionToListIndex(data, element, selectedIndex(data, element)));
749 endIndex = nextSelectableListIndex(data, element, data.activeSelectionEndIndex());
751 endIndex = previousSelectableListIndex(data, element, data.activeSelectionEndIndex());
758 ASSERT(endIndex >= 0 && (unsigned) endIndex < listItems.size());
759 setActiveSelectionEndIndex(data, endIndex);
770 toRenderListBox(element->renderer())->scrollToRevealElementAtListIndex(endIndex);
    [all...]

Completed in 1568 milliseconds

1 2 3