/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/String/ |
split-002.js | 189 e = z.endIndex; // 14 229 return { endIndex : reResult.index + reResult[0].length, captures : cap }; 242 return { endIndex : q + r, captures : cap }; // 7
|
/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...] |
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/ |
ArraysTest.java | 785 int endIndex = 3 * arraySize / 4; 792 Arrays.sort(reversedArray, startIndex, endIndex); 796 for (int counter = startIndex; counter < endIndex - 1; counter++) 799 for (int counter = endIndex; counter < arraySize; counter++) 851 int endIndex = 3 * arraySize / 4; 858 Arrays.sort(reversedArray, startIndex, endIndex); 862 for (int counter = startIndex; counter < endIndex - 1; counter++) 865 for (int counter = endIndex; counter < arraySize; counter++) [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/voice/ |
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);
|
/frameworks/base/core/jni/ |
android_util_Process.cpp | 663 char* buffer, jint startIndex, jint endIndex, jintArray format, 704 if (i >= endIndex) { 711 while (buffer[i] != ')' && i < endIndex) { 717 while (buffer[i] != term && i < endIndex) { 724 if (i < endIndex) { 727 while (buffer[i] == term && i < endIndex) { 767 jbyteArray buffer, jint startIndex, jint endIndex, jintArray format, 773 (char*) bufferArray, startIndex, endIndex, format, outStrings,
|
/libcore/luni/src/main/java/java/lang/ |
StringBuffer.java | 360 public synchronized int codePointCount(int beginIndex, int endIndex) { 361 return super.codePointCount(beginIndex, endIndex);
|
Character.java | [all...] |
AbstractStringBuilder.java | 865 * and {@code endIndex}. 869 * @param endIndex 874 * {@code endIndex} or {@code endIndex} is greater than 880 public int codePointCount(int beginIndex, int endIndex) { 881 if (beginIndex < 0 || endIndex > count || beginIndex > endIndex) { 884 return Character.codePointCount(value, beginIndex, endIndex
|
/frameworks/base/core/java/android/hardware/ |
Camera.java | [all...] |
/external/icu4c/common/unicode/ |
normlzr.h | 471 * This is equivalent to setIndexOnly(endIndex()) followed by previous(). 484 * in the text. If this is possible, you can test getIndex()<endIndex() 485 * before calling next(), or (getIndex()<endIndex() || last()!=DONE) 565 int32_t endIndex(void) const;
|
/external/webkit/WebCore/rendering/ |
RenderListBox.cpp | 471 int endIndex = scrollToward(pos); 472 if (endIndex >= 0) { 477 select->setActiveSelectionAnchorIndex(endIndex); 479 select->setActiveSelectionEndIndex(endIndex);
|
/external/chromium/third_party/icu/source/test/intltest/ |
citrtest.cpp | 209 if (test1d->endIndex() > testText.length()) 210 errln("Construction failed: endIndex is greater than the text length"); 211 if (test1d->getIndex() < test1d->startIndex() || test1d->endIndex() < test1d->getIndex()) 306 if (test8b->endIndex() != u_strlen(testText)) 307 errln("Construction failed: endIndex is different from the text length"); 308 if (test8c->getIndex() < test8c->startIndex() || test8c->endIndex() < test8c->getIndex()) 393 if (iter.startIndex() != 0 || iter.endIndex() != text.length()) 394 errln("startIndex() or endIndex() failed"); 489 if (iter.startIndex() != 5 || iter.endIndex() != 15) 591 if (iter.startIndex() != 0 || iter.endIndex() != text.length() [all...] |
/external/icu4c/test/intltest/ |
citrtest.cpp | 209 if (test1d->endIndex() > testText.length()) 210 errln("Construction failed: endIndex is greater than the text length"); 211 if (test1d->getIndex() < test1d->startIndex() || test1d->endIndex() < test1d->getIndex()) 306 if (test8b->endIndex() != u_strlen(testText)) 307 errln("Construction failed: endIndex is different from the text length"); 308 if (test8c->getIndex() < test8c->startIndex() || test8c->endIndex() < test8c->getIndex()) 393 if (iter.startIndex() != 0 || iter.endIndex() != text.length()) 394 errln("startIndex() or endIndex() failed"); 489 if (iter.startIndex() != 5 || iter.endIndex() != 15) 591 if (iter.startIndex() != 0 || iter.endIndex() != text.length() [all...] |
/external/webkit/WebCore/editing/ |
IndentOutdentCommand.cpp | 302 int endIndex = indexForVisiblePosition(endOfSelection); 315 RefPtr<Range> endRange = TextIterator::rangeFromLocationAndLength(document()->documentElement(), endIndex, 0, true);
|
/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);
|
/libcore/luni/src/main/java/org/apache/xpath/objects/ |
XString.java | 881 * extends to the character at index <code>endIndex - 1</code>. 882 * Thus the length of the substring is <code>endIndex-beginIndex</code>. 885 * @param endIndex the ending index, exclusive. 889 * <code>endIndex</code> is larger than the length of 892 * <code>endIndex</code>. 894 public XMLString substring(int beginIndex, int endIndex) 896 return new XString(str().substring(beginIndex, endIndex)); [all...] |
XStringForFSB.java | 770 * extends to the character at index <code>endIndex - 1</code>. 771 * Thus the length of the substring is <code>endIndex-beginIndex</code>. 774 * @param endIndex the ending index, exclusive. 778 * <code>endIndex</code> is larger than the length of 781 * <code>endIndex</code>. 783 public XMLString substring(int beginIndex, int endIndex) 786 int len = endIndex - beginIndex;
|
/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/com/google/android/mms/pdu/ |
PduParser.java | 397 int endIndex = str.indexOf("/"); 398 if (endIndex > 0) { 399 str = str.substring(0, endIndex); 475 int endIndex = str.indexOf("/"); 476 if (endIndex > 0) { 477 str = str.substring(0, endIndex); [all...] |
/external/chromium/third_party/icu/source/i18n/ |
unum.cpp | 218 pos->endIndex = fp.getEndIndex(); 251 pos->endIndex = fp.getEndIndex(); 289 pos->endIndex = fp.getEndIndex();
|
/external/icu4c/i18n/ |
unum.cpp | 221 pos->endIndex = fp.getEndIndex(); 254 pos->endIndex = fp.getEndIndex(); 292 pos->endIndex = fp.getEndIndex();
|
/external/chromium/third_party/icu/source/test/cintltst/ |
cnumtst.c | 228 if(pos1.beginIndex == 1 && pos1.endIndex == 12) 232 pos1.beginIndex, pos1.endIndex); 260 if(pos2.beginIndex == 9 && pos2.endIndex == 11) 264 pos1.beginIndex, pos1.endIndex); 314 if (pos2.beginIndex == 1 && pos2.endIndex == 6) { 318 pos1.beginIndex, pos1.endIndex); [all...] |
/external/icu4c/common/ |
normlzr.cpp | 355 int32_t Normalizer::endIndex() const { 356 return text->endIndex();
|
/external/icu4c/test/cintltst/ |
cnumtst.c | 228 if(pos1.beginIndex == 1 && pos1.endIndex == 12) 232 pos1.beginIndex, pos1.endIndex); 260 if(pos2.beginIndex == 9 && pos2.endIndex == 11) 264 pos1.beginIndex, pos1.endIndex); 314 if (pos2.beginIndex == 1 && pos2.endIndex == 6) { 318 pos1.beginIndex, pos1.endIndex); [all...] |