HomeSort by relevance Sort by last modified time
    Searched refs:endIndex (Results 76 - 100 of 220) sorted by null

1 2 34 5 6 7 8 9

  /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("-");
  /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();
408 endIndex() < End.getBoundaryIndex();
  /frameworks/base/core/jni/
android_util_Process.cpp 694 char* buffer, jint startIndex, jint endIndex, jintArray format,
741 if (i >= endIndex) {
748 while (buffer[i] != ')' && i < endIndex) {
754 while (buffer[i] != '"' && i < endIndex) {
760 while (buffer[i] != term && i < endIndex) {
767 if (i < endIndex) {
770 while (buffer[i] == term && i < endIndex) {
810 jbyteArray buffer, jint startIndex, jint endIndex, jintArray format,
816 (char*) bufferArray, startIndex, endIndex, format, outStrings,
  /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))) {
  /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/robolectric/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/chromium_org/third_party/icu/source/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;
  /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;
  /external/icu4c/i18n/
unum.cpp 194 pos->endIndex = fp.getEndIndex();
227 pos->endIndex = fp.getEndIndex();
270 pos->endIndex = fp.getEndIndex();
310 pos->endIndex = fp.getEndIndex();
  /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;
IccUtils.java 516 int endIndex = offset + (number * 3); // 1 color use 3 bytes
525 } 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/chromium_org/third_party/icu/source/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/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...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
IccUtils.java 516 int endIndex = offset + (number * 3); // 1 color use 3 bytes
525 } while (valueIndex < endIndex);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureTrail.java 297 private void debugDrawPoints(final Canvas canvas, final int startIndex, final int endIndex,
305 for (int i = startIndex; i < endIndex; i++) {
  /external/chromium_org/third_party/tlslite/tlslite/
TLSRecordLayer.py 272 endIndex = startIndex + blockSize
275 if endIndex > len(s):
276 endIndex = len(s)
277 block = stringToBytes(s[startIndex : endIndex])
    [all...]
  /external/chromium_org/third_party/icu/source/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...]
  /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...]
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
PduParser.java 459 int endIndex = str.indexOf("/");
460 if (endIndex > 0) {
461 str = str.substring(0, endIndex);
541 int endIndex = str.indexOf("/");
542 if (endIndex > 0) {
543 str = str.substring(0, endIndex);
    [all...]
  /external/chromium_org/third_party/icu/source/common/
normlzr.cpp 355 int32_t Normalizer::endIndex() const {
356 return text->endIndex();
  /external/icu4c/common/
normlzr.cpp 354 int32_t Normalizer::endIndex() const {
355 return text->endIndex();
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarAlarmManager.java 386 final int endIndex = cursor.getColumnIndex(Instances.END);
410 final long endTime = cursor.getLong(endIndex);

Completed in 2085 milliseconds

1 2 34 5 6 7 8 9