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

12 3 4 5 6 7

  /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/llvm/lib/CodeGen/
Spiller.cpp 141 SlotIndex endIndex = loadIndex.getNextIndex();
144 newLI->addRange(LiveRange(loadIndex, endIndex, loadVNI));
  /external/arduino/hardware/arduino/cores/arduino/
WString.h 75 String substring( unsigned int beginIndex, unsigned int endIndex ) const;
  /external/icu4c/i18n/
udateintervalformat.cpp 99 position->endIndex = fp.getEndIndex();
unum.cpp 194 pos->endIndex = fp.getEndIndex();
227 pos->endIndex = fp.getEndIndex();
270 pos->endIndex = fp.getEndIndex();
310 pos->endIndex = fp.getEndIndex();
  /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
  /cts/tests/tests/text/src/android/text/cts/
StaticLayoutLineBreakingTest.java 217 int endIndex = text.indexOf('>');
218 if (endIndex < 0) throw new IllegalArgumentException("Unbalanced span markers");
220 text = text.substring(0, startIndex) + text.substring(startIndex + 1, endIndex) +
221 text.substring(endIndex + 1);
224 spanEnds[spanCount] = endIndex - 2;
  /frameworks/base/core/java/android/hardware/
Camera.java     [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3string.c 82 static pANTLR3_STRING subString8 (pANTLR3_STRING string, ANTLR3_UINT32 startIndex, ANTLR3_UINT32 endIndex);
83 static pANTLR3_STRING subStringUTF16 (pANTLR3_STRING string, ANTLR3_UINT32 startIndex, ANTLR3_UINT32 endIndex);
    [all...]
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3string.h 179 (*subString) (struct ANTLR3_STRING_struct * string, ANTLR3_UINT32 startIndex, ANTLR3_UINT32 endIndex);
  /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...]
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
PhoneNumberMatcher.java 532 int endIndex = rfc3966Format.indexOf(';');
533 if (endIndex < 0) {
534 endIndex = rfc3966Format.length();
538 return rfc3966Format.substring(startIndex, endIndex).split("-");
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
IndicatorControlWheel.java 209 int endIndex;
214 endIndex = mSecondLevelStartIndex - 1;
216 endIndex = getChildCount() - 1;
221 (delta <= (mChildRadians[endIndex] + halfTouchSectorRadians))) {
  /frameworks/base/core/jni/
android_util_Process.cpp 682 char* buffer, jint startIndex, jint endIndex, jintArray format,
723 if (i >= endIndex) {
730 while (buffer[i] != ')' && i < endIndex) {
736 while (buffer[i] != term && i < endIndex) {
743 if (i < endIndex) {
746 while (buffer[i] == term && i < endIndex) {
786 jbyteArray buffer, jint startIndex, jint endIndex, jintArray format,
792 (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);
  /external/llvm/include/llvm/CodeGen/
LiveInterval.h 184 if (Pos >= endIndex())
196 /// If Pos is beyond endIndex, end() is returned.
287 SlotIndex endIndex() const {
288 assert(!empty() && "Call to endIndex() on empty interval.");
293 return index >= endIndex();
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/
RobolectricTestRunner.java 463 int endIndex = annotationString.indexOf( ')' );
465 if( startIndex < 0 || endIndex < 0 ){ return; }
467 locale = annotationString.substring( startIndex + 1, 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/opt/telephony/src/java/com/android/internal/telephony/
WspTypeDecoder.java 607 * @param endIndex Valid seek area end point
612 public boolean seekXWapApplicationId(int startIndex, int endIndex) {
616 for (index = startIndex; index <= endIndex; ) {
632 if (index > endIndex) return false;
649 if (index + 1 >= endIndex) return false;
  /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 212 if (test1d->endIndex() > testText.length())
213 errln("Construction failed: endIndex is greater than the text length");
214 if (test1d->getIndex() < test1d->startIndex() || test1d->endIndex() < test1d->getIndex())
309 if (test8b->endIndex() != u_strlen(testText))
310 errln("Construction failed: endIndex is different from the text length");
311 if (test8c->getIndex() < test8c->startIndex() || test8c->endIndex() < test8c->getIndex())
396 if (iter.startIndex() != 0 || iter.endIndex() != text.length())
397 errln("startIndex() or endIndex() failed");
492 if (iter.startIndex() != 5 || iter.endIndex() != 15)
594 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);

Completed in 1102 milliseconds

12 3 4 5 6 7