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

/libcore/ojluni/src/main/java/java/nio/file/
H A DPath.java194 * <p> The {@code beginIndex} and {@code endIndex} parameters specify the
200 * endIndex-1}.
204 * @param endIndex
212 * the number of elements. If {@code endIndex} is less than or
215 Path subpath(int beginIndex, int endIndex); argument
/libcore/ojluni/src/main/java/java/text/
H A DFieldPosition.java85 int endIndex = 0; field in class:FieldPosition
184 return endIndex;
204 endIndex = ei;
235 && endIndex == other.endIndex
244 return (field << 24) | (beginIndex << 16) | endIndex;
255 ",endIndex=" + endIndex + ']';
H A DAttributedString.java196 * @param endIndex Index of the character following the last character
200 * beginIndex and endIndex is out of the text range.
205 int endIndex) {
206 this(text, beginIndex, endIndex, null);
221 * @param endIndex Index of the character following the last character
228 * beginIndex and endIndex is out of the text range.
233 int endIndex,
242 if (beginIndex < textBeginIndex || endIndex > textEndIndex || beginIndex > endIndex)
248 for (char c = text.current(); text.getIndex() < endIndex;
203 AttributedString(AttributedCharacterIterator text, int beginIndex, int endIndex) argument
231 AttributedString(AttributedCharacterIterator text, int beginIndex, int endIndex, Attribute[] attributes) argument
342 addAttribute(Attribute attribute, Object value, int beginIndex, int endIndex) argument
369 addAttributes(Map<? extends Attribute, ?> attributes, int beginIndex, int endIndex) argument
402 addAttributeImpl(Attribute attribute, Object value, int beginIndex, int endIndex) argument
594 getIterator(Attribute[] attributes, int beginIndex, int endIndex) argument
627 getAttributeCheckRange(Attribute attribute, int runIndex, int beginIndex, int endIndex) argument
750 private int endIndex; field in class:AttributedString.AttributedStringIterator
765 AttributedStringIterator(Attribute[] attributes, int beginIndex, int endIndex) argument
1059 int endIndex; field in class:AttributedString.AttributeMap
1061 AttributeMap(int runIndex, int beginIndex, int endIndex) argument
[all...]
/libcore/ojluni/src/main/java/java/lang/
H A DStringBuffer.java226 public synchronized int codePointCount(int beginIndex, int endIndex) { argument
227 return super.codePointCount(beginIndex, endIndex);
H A DAbstractStringBuilder.java303 * 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) { argument
320 if (beginIndex < 0 || endIndex > count || beginIndex > endIndex) {
323 return Character.codePointCountImpl(value, beginIndex, endIndex-beginIndex);
H A DString.java686 * {@code char} at index {@code endIndex - 1}. Thus the
688 * {@code endIndex-beginIndex}. Unpaired surrogates within
693 * @param endIndex the index after the last {@code char} of
698 * {@code beginIndex} is negative, or {@code endIndex}
700 * {@code beginIndex} is larger than {@code endIndex}.
703 public int codePointCount(int beginIndex, int endIndex) { argument
704 if (beginIndex < 0 || endIndex > length() || beginIndex > endIndex) {
708 return Character.codePointCount(this, beginIndex, endIndex);
2008 * extends to the character at index {@code endIndex
2027 substring(int beginIndex, int endIndex) argument
2078 subSequence(int beginIndex, int endIndex) argument
[all...]
H A DCharacter.java5211 * {@code char} at index {@code endIndex - 1}. Thus the
5213 * {@code endIndex-beginIndex}. Unpaired surrogates within
5219 * @param endIndex the index after the last {@code char} of
5225 * {@code beginIndex} is negative, or {@code endIndex}
5227 * {@code beginIndex} is larger than {@code endIndex}.
5230 public static int codePointCount(CharSequence seq, int beginIndex, int endIndex) { argument
5232 if (beginIndex < 0 || endIndex > length || beginIndex > endIndex) {
5235 int n = endIndex - beginIndex;
5236 for (int i = beginIndex; i < endIndex; ) {
[all...]
/libcore/ojluni/src/main/java/sun/nio/fs/
H A DUnixPath.java340 public UnixPath subpath(int beginIndex, int endIndex) { argument
347 if (endIndex > offsets.length)
349 if (beginIndex >= endIndex) {
356 if (endIndex == offsets.length) {
359 len = offsets[endIndex] - begin - 1;

Completed in 103 milliseconds