HomeSort by relevance Sort by last modified time
    Searched refs:endIndex (Results 176 - 200 of 723) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/
RobolectricTestRunner.java 512 int endIndex = annotationString.indexOf( ')' );
514 if( startIndex < 0 || endIndex < 0 ){ return; }
516 locale = annotationString.substring( startIndex + 1, endIndex );
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
LiveInterval.h 251 if (Pos >= endIndex())
263 /// 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/icu/icu4c/source/common/unicode/
normlzr.h 480 * This is equivalent to setIndexOnly(endIndex()) followed by previous().
493 * in the text. If this is possible, you can test getIndex()<endIndex()
494 * before calling next(), or (getIndex()<endIndex() || last()!=DONE)
574 int32_t endIndex(void) const;
  /external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
PhoneNumberMatcher.java 559 int endIndex = rfc3966Format.indexOf(';');
560 if (endIndex < 0) {
561 endIndex = rfc3966Format.length();
565 return rfc3966Format.substring(startIndex, endIndex).split("-");
    [all...]
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
ScreenResponseFragment.java 535 int endIndex = brightnessCurveString.indexOf("end");
536 if (endIndex == -1) endIndex = brightnessCurveString.length();
539 brightnessCurveString.substring(startIndex, endIndex).trim().split("\n");
  /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;
  /libcore/ojluni/src/main/java/java/lang/
AbstractStringBuilder.java 303 * index {@code endIndex - 1}. Thus the length (in
305 * {@code endIndex-beginIndex}. Unpaired surrogates within
310 * @param endIndex the index after the last {@code char} of
315 * {@code beginIndex} is negative, or {@code endIndex}
317 * {@code beginIndex} is larger than {@code endIndex}.
319 public int codePointCount(int beginIndex, int endIndex) {
320 if (beginIndex < 0 || endIndex > count || beginIndex > endIndex) {
323 return Character.codePointCountImpl(value, beginIndex, endIndex-beginIndex);
    [all...]
StringBuffer.java 226 public synchronized int codePointCount(int beginIndex, int endIndex) {
227 return super.codePointCount(beginIndex, endIndex);
Character.java     [all...]
  /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/icu/icu4c/source/test/intltest/
citrtest.cpp 213 if (test1d->endIndex() > testText.length())
214 errln("Construction failed: endIndex is greater than the text length");
215 if (test1d->getIndex() < test1d->startIndex() || test1d->endIndex() < test1d->getIndex())
310 if (test8b->endIndex() != u_strlen(testText))
311 errln("Construction failed: endIndex is different from the text length");
312 if (test8c->getIndex() < test8c->startIndex() || test8c->endIndex() < test8c->getIndex())
397 if (iter.startIndex() != 0 || iter.endIndex() != text.length())
398 errln("startIndex() or endIndex() failed");
493 if (iter.startIndex() != 5 || iter.endIndex() != 15)
595 if (iter.startIndex() != 0 || iter.endIndex() != text.length()
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdipluspath.h 547 INT CopyData(PointF *points, BYTE *types, INT startIndex, INT endIndex)
552 points, types, startIndex, endIndex));
590 INT NextMarker(INT *startIndex, INT *endIndex)
595 startIndex, endIndex));
606 INT NextPathType(BYTE *pathType, INT *startIndex, INT *endIndex)
611 pathType, startIndex, endIndex));
614 INT NextSubpath(INT *startIndex, INT *endIndex, BOOL *isClosed)
619 startIndex, endIndex, isClosed));
  /frameworks/base/services/usage/java/com/android/server/usage/
UsageStatsDatabase.java 415 int endIndex = intervalStats.closestIndexOnOrBefore(endTime);
416 if (endIndex < 0) {
424 if (intervalStats.keyAt(endIndex) == endTime) {
426 endIndex--;
427 if (endIndex < 0) {
438 for (int i = startIndex; i <= endIndex; i++) {
  /prebuilts/sdk/current/support/graphics/drawable/
android-support-animatedvectordrawable.jar 
  /frameworks/base/core/java/android/animation/
AnimatorInflater.java     [all...]
  /frameworks/base/libs/hwui/
FrameBuilder.cpp 363 size_t drawIndex, shadowIndex, endIndex;
366 endIndex = nonNegativeIndex;
367 shadowIndex = endIndex; // draw no shadows
370 endIndex = size;
375 while (shadowIndex < endIndex || drawIndex < endIndex) {
376 if (shadowIndex < endIndex) {
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedView.java 656 final int endIndex = isRtl ? -1 : childCount;
659 for (int i = startIndex; i != endIndex; i += delta) {
747 final int endIndex = isRtl ? index : index;
750 for (int i = startIndex; i != endIndex; i += delta) {
791 int endIndex = isRtl ? 0 : pageCount - 1;
794 while (leftScreen != endIndex &&
802 while (rightScreen != endIndex &&
    [all...]
  /external/icu/icu4c/source/i18n/
unum.cpp 211 pos->endIndex = fp.getEndIndex();
244 pos->endIndex = fp.getEndIndex();
287 pos->endIndex = fp.getEndIndex();
327 pos->endIndex = fp.getEndIndex();
872 pos->endIndex = fp.getEndIndex();
  /frameworks/support/fragment/java/android/support/v4/app/
FragmentTransition.java 94 * @param endIndex One past the last index into records and isRecordPop to execute
102 int startIndex, int endIndex, boolean isReordered) {
109 for (int i = startIndex; i < endIndex; i++) {
125 records, isRecordPop, startIndex, endIndex);
151 * @param endIndex One past the last index into records and isRecordPop to execute
158 int startIndex, int endIndex) {
160 for (int recordNum = endIndex - 1; recordNum >= startIndex; recordNum--) {
    [all...]
  /development/tools/bugreport/src/com/android/bugreport/inspector/
Inspector.java 844 int endIndex = lines.size() - 1;
850 endIndex = i;
868 mBugreport.logcat.lines = new ArrayList<LogLine>(lines.subList(startIndex, endIndex));
  /prebuilts/tools/common/m2/repository/com/squareup/okio/okio/1.6.0/
okio-1.6.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okio/okio/1.8.0/
okio-1.8.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okio/okio/1.9.0/
okio-1.9.0.jar 
  /tools/apksig/src/main/java/com/android/apksig/internal/asn1/
Asn1BerParser.java 329 int endIndex = type.indexOf('>', startIndex);
331 if (endIndex == -1) {
334 String elementClassName = type.substring(startIndex, endIndex);

Completed in 1018 milliseconds

1 2 3 4 5 6 78 91011>>