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

12 3

  /external/webkit/WebCore/dom/
SelectElement.cpp 734 int endIndex = 0;
738 endIndex = nextSelectableListIndex(data, element, lastSelectedListIndex(data, element));
740 endIndex = previousSelectableListIndex(data, element, optionToListIndex(data, element, selectedIndex(data, element)));
744 endIndex = nextSelectableListIndex(data, element, data.activeSelectionEndIndex());
746 endIndex = previousSelectableListIndex(data, element, data.activeSelectionEndIndex());
753 ASSERT(endIndex >= 0 && (unsigned) endIndex < listItems.size());
754 setActiveSelectionEndIndex(data, endIndex);
765 toRenderListBox(element->renderer())->scrollToRevealElementAtListIndex(endIndex);
    [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 122 int endIndex = line.indexOf(' ', 4);
123 numberOfTestsRan = line.substring(4, endIndex);
  /dalvik/libcore/luni/src/main/java/java/lang/
StringBuffer.java 356 public synchronized int codePointCount(int beginIndex, int endIndex) {
357 return super.codePointCount(beginIndex, endIndex);
AbstractStringBuilder.java 874 * and {@code endIndex}.
878 * @param endIndex
883 * {@code endIndex} or {@code endIndex} is greater than
889 public int codePointCount(int beginIndex, int endIndex) {
890 if (beginIndex < 0 || endIndex > count || beginIndex > endIndex) {
893 return Character.codePointCount(value, beginIndex, endIndex
String.java     [all...]
  /frameworks/base/awt/org/apache/harmony/awt/im/
InputMethodContext.java 511 int endIndex,
513 return getIMRequests().getCommittedText(beginIndex, endIndex,
  /frameworks/base/core/jni/
android_util_Process.cpp 626 char* buffer, jint startIndex, jint endIndex, jintArray format,
667 if (i >= endIndex) {
674 while (buffer[i] != ')' && i < endIndex) {
680 while (buffer[i] != term && i < endIndex) {
687 if (i < endIndex) {
690 while (buffer[i] == term && i < endIndex) {
730 jbyteArray buffer, jint startIndex, jint endIndex, jintArray format,
736 (char*) bufferArray, startIndex, endIndex, format, outStrings,
  /external/webkit/WebCore/rendering/
RenderListBox.cpp 471 int endIndex = scrollToward(pos);
472 if (endIndex >= 0) {
477 select->setActiveSelectionAnchorIndex(endIndex);
479 select->setActiveSelectionEndIndex(endIndex);
  /dalvik/libcore/xml/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/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);
  /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) {
ElementsPanel.js 874 var endIndex = crumbs.childNodes.length - 1;
875 while (startIndex != significantIndex || endIndex != significantIndex) {
    [all...]
  /frameworks/base/core/java/com/google/android/mms/pdu/
PduParser.java 384 int endIndex = str.indexOf("/");
385 if (endIndex > 0) {
386 str = str.substring(0, endIndex);
462 int endIndex = str.indexOf("/");
463 if (endIndex > 0) {
464 str = str.substring(0, endIndex);
    [all...]
  /external/icu4c/i18n/
unum.cpp 224 pos->endIndex = fp.getEndIndex();
257 pos->endIndex = fp.getEndIndex();
295 pos->endIndex = fp.getEndIndex();
  /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...]
  /external/icu4c/common/unicode/
normlzr.h 464 * This is equivalent to setIndexOnly(endIndex()) followed by previous().
477 * in the text. If this is possible, you can test getIndex()<endIndex()
478 * before calling next(), or (getIndex()<endIndex() || last()!=DONE)
558 int32_t endIndex(void) const;
  /frameworks/base/core/java/android/os/
Process.java 803 int endIndex, int[] format, String[] outStrings, long[] outLongs, float[] outFloats);
  /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/dom3/
DOM3TreeWalker.java     [all...]
  /external/webkit/JavaScriptCore/yarr/
RegexInterpreter.cpp     [all...]
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsImpl.java 878 int startIndex, endIndex;
884 startIndex = endIndex = i + 1;
890 while (endIndex < len) {
891 for (endIndex=startIndex;
892 endIndex < len && wlBuffer[endIndex] != '\n' && wlBuffer[endIndex] != '\0';
893 endIndex++);
895 if (endIndex < len) {
896 endIndex++; // endIndex is an exclusive upper bound
    [all...]
  /external/webkit/WebCore/css/
CSSStyleSelector.h 178 void applyDeclarations(bool firstPass, bool important, int startIndex, int endIndex);

Completed in 577 milliseconds

12 3