HomeSort by relevance Sort by last modified time
    Searched refs:beginIndex (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /external/chromium_org/third_party/icu/source/common/unicode/
umisc.h 42 int32_t beginIndex;
  /external/icu/icu4c/source/common/unicode/
umisc.h 42 int32_t beginIndex;
  /frameworks/base/core/java/android/net/http/
CharArrayBuffers.java 36 * @param beginIndex index at which we should start
40 int beginIndex, final String str) {
43 while (beginIndex < len && HTTP.isWhitespace(chars[beginIndex])) {
44 beginIndex++;
47 boolean ok = len >= beginIndex + size;
49 char a = chars[beginIndex+j];
66 int beginIndex = 0;
70 for (int i = beginIndex; i < endIndex; i++) {
  /external/apache-http/src/org/apache/http/util/
CharArrayBuffer.java 211 public int indexOf(int ch, int beginIndex, int endIndex) {
212 if (beginIndex < 0) {
213 beginIndex = 0;
218 if (beginIndex > endIndex) {
221 for (int i = beginIndex; i < endIndex; i++) {
233 public String substring(int beginIndex, int endIndex) {
234 if (beginIndex < 0) {
240 if (beginIndex > endIndex) {
243 return new String(this.buffer, beginIndex, endIndex - beginIndex);
    [all...]
  /libcore/luni/src/main/java/java/text/
FieldPosition.java 35 private int beginIndex;
73 beginIndex == pos.beginIndex && endIndex == pos.endIndex;
80 return beginIndex;
106 return attributeHash + field * 10 + beginIndex * 100 + endIndex;
113 beginIndex = index;
130 ",beginIndex=" + beginIndex +
  /external/apache-xml/src/main/java/org/apache/xml/utils/
XMLStringDefault.java 627 * @param beginIndex the beginning index, inclusive.
630 * <code>beginIndex</code> is negative or larger than the
633 public XMLString substring(int beginIndex)
635 return new XMLStringDefault(m_str.substring(beginIndex));
640 * substring begins at the specified <code>beginIndex</code> and
642 * Thus the length of the substring is <code>endIndex-beginIndex</code>.
644 * @param beginIndex the beginning index, inclusive.
648 * <code>beginIndex</code> is negative, or
651 * <code>beginIndex</code> is larger than
654 public XMLString substring(int beginIndex, int endIndex
    [all...]
XMLString.java 537 * @param beginIndex the beginning index, inclusive.
540 * <code>beginIndex</code> is negative or larger than the
543 public abstract XMLString substring(int beginIndex);
547 * substring begins at the specified <code>beginIndex</code> and
549 * Thus the length of the substring is <code>endIndex-beginIndex</code>.
551 * @param beginIndex the beginning index, inclusive.
555 * <code>beginIndex</code> is negative, or
558 * <code>beginIndex</code> is larger than
561 public abstract XMLString substring(int beginIndex, int endIndex);
  /external/apache-http/src/org/apache/http/impl/auth/
AuthSchemeBase.java 106 int beginIndex = pos;
111 String s = buffer.substring(beginIndex, endIndex);
  /external/arduino/hardware/arduino/cores/arduino/
WString.h 74 String substring( unsigned int beginIndex ) const;
75 String substring( unsigned int beginIndex, unsigned int endIndex ) const;
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XStringForFSB.java 746 * @param beginIndex the beginning index, inclusive.
749 * <code>beginIndex</code> is negative or larger than the
752 public XMLString substring(int beginIndex)
755 int len = m_length - beginIndex;
761 int start = m_start + beginIndex;
769 * substring begins at the specified <code>beginIndex</code> and
771 * Thus the length of the substring is <code>endIndex-beginIndex</code>.
773 * @param beginIndex the beginning index, inclusive.
777 * <code>beginIndex</code> is negative, or
780 * <code>beginIndex</code> is larger tha
    [all...]
XString.java 867 * @param beginIndex the beginning index, inclusive.
870 * <code>beginIndex</code> is negative or larger than the
873 public XMLString substring(int beginIndex)
875 return new XString(str().substring(beginIndex));
880 * substring begins at the specified <code>beginIndex</code> and
882 * Thus the length of the substring is <code>endIndex-beginIndex</code>.
884 * @param beginIndex the beginning index, inclusive.
888 * <code>beginIndex</code> is negative, or
891 * <code>beginIndex</code> is larger than
894 public XMLString substring(int beginIndex, int endIndex
    [all...]
  /external/llvm/include/llvm/CodeGen/
LiveInterval.h 313 /// beginIndex - Return the lowest numbered slot covered.
314 SlotIndex beginIndex() const {
315 assert(!empty() && "Call to beginIndex() on empty range.");
425 return beginIndex() > Start.getBaseIndex() &&
495 const SlotIndex &thisIndex = beginIndex();
496 const SlotIndex &otherIndex = other.beginIndex();
553 const SlotIndex &thisIndex = beginIndex();
554 const SlotIndex &otherIndex = other.beginIndex();
  /external/apache-http/src/org/apache/http/impl/client/
AbstractAuthenticationHandler.java 99 int beginIndex = pos;
104 String s = buffer.substring(beginIndex, endIndex);
  /external/chromium_org/third_party/icu/source/i18n/
udateintervalformat.cpp 98 position->beginIndex = fp.getBeginIndex();
unum.cpp 193 pos->beginIndex = fp.getBeginIndex();
226 pos->beginIndex = fp.getBeginIndex();
269 pos->beginIndex = fp.getBeginIndex();
309 pos->beginIndex = fp.getBeginIndex();
835 pos->beginIndex = fp.getBeginIndex();
  /external/icu/icu4c/source/i18n/
udateintervalformat.cpp 98 position->beginIndex = fp.getBeginIndex();
unum.cpp 197 pos->beginIndex = fp.getBeginIndex();
230 pos->beginIndex = fp.getBeginIndex();
273 pos->beginIndex = fp.getBeginIndex();
313 pos->beginIndex = fp.getBeginIndex();
858 pos->beginIndex = fp.getBeginIndex();
  /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...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarAlarmManager.java 385 final int beginIndex = cursor.getColumnIndex(Instances.BEGIN);
409 final long startTime = cursor.getLong(beginIndex);
  /external/chromium_org/third_party/icu/source/test/cintltst/
cnumtst.c 267 if(pos1.beginIndex == 1 && pos1.endIndex == 12)
271 pos1.beginIndex, pos1.endIndex);
301 if(pos2.beginIndex == 9 && pos2.endIndex == 11)
305 pos1.beginIndex, pos1.endIndex);
353 if (pos2.beginIndex == 1 && pos2.endIndex == 6) {
357 pos1.beginIndex, pos1.endIndex);
866 if (fieldPos.beginIndex != 26) { /* index of "." in formatted number *
    [all...]
cdattst.c 537 int32_t beginIndex = strPtr - strDateTime;
538 if ( fp.beginIndex != beginIndex ) {
539 log_err("UFieldPosition beginIndex %d, expected %d, in udat_format timeStyle SHORT dateStyle (%d | UDAT_RELATIVE)\n", fp.beginIndex, beginIndex, *stylePtr );
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cnumtst.c 273 if(pos1.beginIndex == 1 && pos1.endIndex == 12)
277 pos1.beginIndex, pos1.endIndex);
307 if(pos2.beginIndex == 9 && pos2.endIndex == 11)
311 pos1.beginIndex, pos1.endIndex);
359 if (pos2.beginIndex == 1 && pos2.endIndex == 6) {
363 pos1.beginIndex, pos1.endIndex);
    [all...]
cdattst.c 537 int32_t beginIndex = strPtr - strDateTime;
538 if ( fp.beginIndex != beginIndex ) {
539 log_err("UFieldPosition beginIndex %d, expected %d, in udat_format timeStyle SHORT dateStyle (%d | UDAT_RELATIVE)\n", fp.beginIndex, beginIndex, *stylePtr );
    [all...]
  /external/icu/icu4c/source/test/intltest/
measfmttest.cpp     [all...]

Completed in 547 milliseconds

1 2 3 4