HomeSort by relevance Sort by last modified time
    Searched full:regionstart (Results 1 - 25 of 30) sorted by null

1 2

  /libcore/luni/src/test/java/libcore/java/lang/
StringIndexOutOfBoundsExceptionTest.java 43 assertEquals("length=11; regionStart=9; regionLength=5",
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlCharacterMatcher.java 154 int regionStart = region.getStartOffset();
158 int subRegionStart = regionStart + subRegion.getStart();
205 int regionStart = region.getStartOffset();
209 int subRegionStart = regionStart + subRegion.getStart();
210 int subRegionEnd = regionStart + subRegion.getEnd();
AndroidXmlAutoEditStrategy.java 199 int regionStart = region.getStartOffset();
200 int delta = offset - regionStart;
410 int regionStart = region.getStartOffset();
414 int subRegionStart = regionStart + subRegion.getStart();
415 int subRegionEnd = regionStart + subRegion.getEnd();
Hyperlinks.java     [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
TextHtmlFunction.java 118 int regionStart = 0;
127 htmlCharEscaper.filter(in.subSequence(regionStart, matchStart).toString(), out);
142 regionStart = matchEnd;
146 htmlCharEscaper.filter(in.substring(regionStart, end), out);
  /libcore/luni/src/main/java/java/lang/
ArrayIndexOutOfBoundsException.java 72 super("length=" + sourceLength + "; regionStart=" + offset
StringIndexOutOfBoundsException.java 88 super("length=" + sourceLength + "; regionStart=" + offset
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
VisualRefactoring.java 372 int regionStart = region.getStart();
387 int subRegionStart = regionStart + subRegion.getStart();
571 int regionStart = r.getStartOffset();
574 regionStart -= start;
576 sb.append(xml.substring(nextStart, regionStart));
578 nextStart = regionStart + r.getLength();
    [all...]
  /libcore/luni/src/main/java/java/util/regex/
Matcher.java 45 private int regionStart;
206 this.regionStart = start;
252 setInputImpl(address, input, regionStart, regionEnd);
614 public int regionStart() {
615 return regionStart;
665 " region=" + regionStart() + "," + regionEnd() +
  /external/icu4c/i18n/unicode/
uregex.h     [all...]
regex.h     [all...]
  /libcore/luni/src/test/java/libcore/java/util/regex/
OldMatcherTest.java 430 assertEquals("Region sould start from 0 position", 0, mat.regionStart());
432 assertEquals("Region sould start from 1 position after setting new region", 1, mat.regionStart());
434 assertEquals("Region sould start from 0 position after reset", 0, mat.regionStart());
  /external/chromium_org/third_party/icu/source/i18n/unicode/
uregex.h 703 * @param regionStart The (native) index to begin searches at.
710 int32_t regionStart,
720 int64_t regionStart,
731 int64_t regionStart,
738 * to the region bounded by regionStart (inclusive) and regionEnd (exclusive).
759 * Any matches found are limited to to the region bounded by regionStart (inclusive)
    [all...]
regex.h     [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
regextst.cpp     [all...]
  /external/icu4c/test/intltest/
regextst.cpp     [all...]
  /external/chromium_org/third_party/icu/source/i18n/
uregex.cpp 815 int32_t regionStart,
818 uregex_setRegion64( regexp2, (int64_t)regionStart, (int64_t)regionLimit, status);
823 int64_t regionStart,
830 regexp->fMatcher->region(regionStart, regionLimit, *status);
841 int64_t regionStart,
849 regexp->fMatcher->region(regionStart, regionLimit, startIndex, *status);
870 return regexp->fMatcher->regionStart();
    [all...]
rematch.cpp     [all...]
  /external/icu4c/i18n/
uregex.cpp 833 int32_t regionStart,
836 uregex_setRegion64( regexp2, (int64_t)regionStart, (int64_t)regionLimit, status);
841 int64_t regionStart,
848 regexp->fMatcher->region(regionStart, regionLimit, *status);
859 int64_t regionStart,
867 regexp->fMatcher->region(regionStart, regionLimit, startIndex, *status);
888 return regexp->fMatcher->regionStart();
    [all...]
  /art/test/201-built-in-exception-detail-messages/src/
Main.java 459 assertEquals("length=11; regionStart=9; regionLength=5", ex.getMessage());
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 630 while (pos < matcher.regionStart()) {
641 if (matcher.regionStart() == matcher.regionEnd()) {
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 464 while (pos < matcher.regionStart()) {
475 if (matcher.regionStart() == matcher.regionEnd()) {
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 66 if (Function *RegionStart = M->getFunction("llvm.dbg.region.start")) {
67 while (!RegionStart->use_empty())
68 cast<CallInst>(RegionStart->use_back())->eraseFromParent();
69 RegionStart->eraseFromParent();
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
MatcherTest.java 50 assertEquals(1, m.regionStart());
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 308 if (Function *RegionStart = M->getFunction("llvm.dbg.region.start")) {
309 while (!RegionStart->use_empty())
310 cast<CallInst>(RegionStart->use_back())->eraseFromParent();
311 RegionStart->eraseFromParent();
    [all...]

Completed in 911 milliseconds

1 2