Searched defs:endIndex (Results 1 - 6 of 6) sorted by relevance

/libcore/ojluni/src/main/java/java/text/
H A DFieldPosition.java85 int endIndex = 0; field in class:FieldPosition
177 return endIndex;
193 endIndex = ei;
224 && endIndex == other.endIndex
233 return (field << 24) | (beginIndex << 16) | endIndex;
244 ",endIndex=" + endIndex + ']';
H A DAttributedString.java195 * @param endIndex Index of the character following the last character
199 * beginIndex and endIndex is out of the text range.
204 int endIndex) {
205 this(text, beginIndex, endIndex, null);
220 * @param endIndex Index of the character following the last character
227 * beginIndex and endIndex is out of the text range.
232 int endIndex,
241 if (beginIndex < textBeginIndex || endIndex > textEndIndex || beginIndex > endIndex)
247 for (char c = text.current(); text.getIndex() < endIndex;
202 AttributedString(AttributedCharacterIterator text, int beginIndex, int endIndex) argument
230 AttributedString(AttributedCharacterIterator text, int beginIndex, int endIndex, Attribute[] attributes) argument
341 addAttribute(Attribute attribute, Object value, int beginIndex, int endIndex) argument
368 addAttributes(Map<? extends Attribute, ?> attributes, int beginIndex, int endIndex) argument
400 addAttributeImpl(Attribute attribute, Object value, int beginIndex, int endIndex) argument
582 getIterator(Attribute[] attributes, int beginIndex, int endIndex) argument
615 getAttributeCheckRange(Attribute attribute, int runIndex, int beginIndex, int endIndex) argument
738 private int endIndex; field in class:AttributedString.AttributedStringIterator
753 AttributedStringIterator(Attribute[] attributes, int beginIndex, int endIndex) argument
1047 int endIndex; field in class:AttributedString.AttributeMap
1049 AttributeMap(int runIndex, int beginIndex, int endIndex) argument
[all...]
/libcore/ojluni/src/main/java/java/lang/
H A DAbstractStringBuilder.java268 * index <code>endIndex - 1</code>. Thus the length (in
270 * <code>endIndex-beginIndex</code>. Unpaired surrogates within
275 * @param endIndex the index after the last <code>char</code> of
280 * <code>beginIndex</code> is negative, or <code>endIndex</code>
282 * <code>beginIndex</code> is larger than <code>endIndex</code>.
284 public int codePointCount(int beginIndex, int endIndex) { argument
285 if (beginIndex < 0 || endIndex > count || beginIndex > endIndex) {
288 return Character.codePointCountImpl(value, beginIndex, endIndex-beginIndex);
H A DStringBuffer.java200 public synchronized int codePointCount(int beginIndex, int endIndex) { argument
201 return super.codePointCount(beginIndex, endIndex);
H A DString.java641 * <code>char</code> at index <code>endIndex - 1</code>. Thus the
643 * <code>endIndex-beginIndex</code>. Unpaired surrogates within
648 * @param endIndex the index after the last <code>char</code> of
653 * <code>beginIndex</code> is negative, or <code>endIndex</code>
655 * <code>beginIndex</code> is larger than <code>endIndex</code>.
658 public int codePointCount(int beginIndex, int endIndex) { argument
659 if (beginIndex < 0 || endIndex > count || beginIndex > endIndex) {
662 return Character.codePointCount(this, beginIndex, endIndex);
1905 * extends to the character at index <code>endIndex
1924 substring(int beginIndex, int endIndex) argument
1968 subSequence(int beginIndex, int endIndex) argument
[all...]
H A DCharacter.java5037 * {@code char} at index {@code endIndex - 1}. Thus the
5039 * {@code endIndex-beginIndex}. Unpaired surrogates within
5045 * @param endIndex the index after the last {@code char} of
5051 * {@code beginIndex} is negative, or {@code endIndex}
5053 * {@code beginIndex} is larger than {@code endIndex}.
5056 public static int codePointCount(CharSequence seq, int beginIndex, int endIndex) { argument
5058 if (beginIndex < 0 || endIndex > length || beginIndex > endIndex) {
5061 int n = endIndex - beginIndex;
5062 for (int i = beginIndex; i < endIndex; ) {
[all...]

Completed in 542 milliseconds