HomeSort by relevance Sort by last modified time
    Searched full:endindex (Results 26 - 50 of 117) sorted by null

12 3 4 5

  /libcore/luni/src/test/java/tests/api/java/util/
ArraysTest.java     [all...]
  /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/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
  /external/webkit/Source/WebCore/html/parser/
HTMLSourceTracker.cpp 59 int length = token.endIndex() - token.startIndex() - m_sourceFromPreviousSegments.length();
  /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-http/src/org/apache/http/impl/auth/
AuthSchemeBase.java 105 int endIndex = pos;
106 String s = buffer.substring(beginIndex, 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/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,
  /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;
  /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/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/icu4c/common/unicode/
uchriter.h 232 * endIndex()), and returns that code unit. If there are no more
242 * (toward endIndex()). If there are
251 * endIndex()), and returns that code point. If there are no more
264 * (toward endIndex()). If there are
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 {
  /libcore/luni/src/test/java/libcore/java/text/
OldAttributedStringTest.java 62 * Try to consruct AttributedString using incorrect endIndex.
82 // case 3: Try to consruct AttributedString using incorrect endIndex.
111 * consruct AttributedString using incorrect endIndex. Case 4: Try to
132 // case 3: Try to consruct AttributedString using incorrect endIndex.
  /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));
  /external/libxml2/
xpointer.c 327 * @endindex: the ending index
335 xmlNodePtr end, int endindex) {
344 if (endindex < 0)
357 ret->index2 = endindex;
2762 int i, startindex, endindex = 0, fendindex; local
    [all...]
  /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/apache-xml/src/main/java/org/apache/xpath/objects/
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/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();
  /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;
  /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/i18n/
unum.cpp 226 pos->endIndex = fp.getEndIndex();
259 pos->endIndex = fp.getEndIndex();
302 pos->endIndex = fp.getEndIndex();
342 pos->endIndex = fp.getEndIndex();
  /external/v8/src/
string.js 576 var endIndex = matchInfo[CAPTURE1];
579 if (startIndex === endIndex && endIndex === currentIndex) {
608 startIndex = currentIndex = endIndex;

Completed in 765 milliseconds

12 3 4 5