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

12 3 4

  /external/webkit/Source/WebCore/dom/
SelectElement.cpp 787 int endIndex = 0;
794 endIndex = nextSelectableListIndex(data, element, startIndex);
796 endIndex = nextSelectableListIndexPageAway(data, element, startIndex, SkipForwards);
801 endIndex = previousSelectableListIndex(data, element, startIndex);
    [all...]
  /external/apache-http/src/org/apache/http/impl/client/
AbstractAuthenticationHandler.java 98 int endIndex = pos;
99 String s = buffer.substring(beginIndex, endIndex);
  /external/apache-xml/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/webkit/Source/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
  /frameworks/base/core/java/android/hardware/
Camera.java     [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/deprecated/voice/
RecognitionView.java 309 int endIndex;
311 endIndex = numSamples;
313 endIndex = Math.min(endPosition, numSamples);
323 final int count = (endIndex - startIndex) / numSamplePerWave;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ArraysTest.java 869 int endIndex = 3 * arraySize / 4;
876 Arrays.sort(reversedArray, startIndex, endIndex);
880 for (int counter = startIndex; counter < endIndex - 1; counter++)
883 for (int counter = endIndex; counter < arraySize; counter++)
    [all...]
  /cts/tools/host/src/com/android/cts/
ReferenceAppTestPackage.java 124 int endIndex = line.indexOf(' ', 4);
125 numberOfTestsRan = line.substring(4, endIndex);
  /external/llvm/lib/CodeGen/
Spiller.cpp 145 SlotIndex endIndex = loadIndex.getNextIndex();
148 newLI->addRange(LiveRange(loadIndex, endIndex, loadVNI));
  /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,
  /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...]
  /external/llvm/include/llvm/CodeGen/
LiveInterval.h 250 if (Pos >= endIndex())
262 /// If Pos is beyond endIndex, end() is returned.
366 SlotIndex endIndex() const {
367 assert(!empty() && "Call to endIndex() on empty interval.");
372 return index >= endIndex();
  /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;
  /frameworks/base/telephony/java/com/android/internal/telephony/
WspTypeDecoder.java 611 * @param endIndex Valid seek area end point
616 public boolean seekXWapApplicationId(int startIndex, int endIndex) {
620 for (index = startIndex; index <= endIndex; ) {
636 if (index > endIndex) return false;
653 if (index + 1 >= endIndex) return false;
IccUtils.java 518 int endIndex = offset + (number * 3); // 1 color use 3 bytes
527 } while (valueIndex < endIndex);
  /external/apache-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 211 if (test1d->endIndex() > testText.length())
212 errln("Construction failed: endIndex is greater than the text length");
213 if (test1d->getIndex() < test1d->startIndex() || test1d->endIndex() < test1d->getIndex())
308 if (test8b->endIndex() != u_strlen(testText))
309 errln("Construction failed: endIndex is different from the text length");
310 if (test8c->getIndex() < test8c->startIndex() || test8c->endIndex() < test8c->getIndex())
395 if (iter.startIndex() != 0 || iter.endIndex() != text.length())
396 errln("startIndex() or endIndex() failed");
491 if (iter.startIndex() != 5 || iter.endIndex() != 15)
593 if (iter.startIndex() != 0 || iter.endIndex() != text.length()
    [all...]
  /external/webkit/Source/WebCore/editing/
ApplyBlockElementCommand.cpp 83 int endIndex = indexForVisiblePosition(endOfSelection);
90 RefPtr<Range> endRange = TextIterator::rangeFromLocationAndLength(document()->documentElement(), endIndex, 0, true);
  /external/icu4c/test/cintltst/
cnumtst.c 277 if(pos1.beginIndex == 1 && pos1.endIndex == 12)
281 pos1.beginIndex, pos1.endIndex);
309 if(pos2.beginIndex == 9 && pos2.endIndex == 11)
313 pos1.beginIndex, pos1.endIndex);
363 if (pos2.beginIndex == 1 && pos2.endIndex == 6) {
367 pos1.beginIndex, pos1.endIndex);
    [all...]
  /frameworks/base/core/java/com/google/android/mms/pdu/
PduParser.java 405 int endIndex = str.indexOf("/");
406 if (endIndex > 0) {
407 str = str.substring(0, endIndex);
483 int endIndex = str.indexOf("/");
484 if (endIndex > 0) {
485 str = str.substring(0, endIndex);
    [all...]
  /external/icu4c/common/
normlzr.cpp 355 int32_t Normalizer::endIndex() const {
356 return text->endIndex();
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarAlarmManager.java 380 final int endIndex = cursor.getColumnIndex(Instances.END);
404 final long endTime = cursor.getLong(endIndex);

Completed in 1190 milliseconds

12 3 4