Searched refs:beginIndex (Results 1 - 8 of 8) sorted by relevance

/libcore/ojluni/src/main/java/java/text/
H A DFieldPosition.java91 int beginIndex = 0; field in class:FieldPosition
174 return beginIndex;
194 beginIndex = bi;
234 return (beginIndex == other.beginIndex
244 return (field << 24) | (beginIndex << 16) | endIndex;
254 ",beginIndex=" + beginIndex +
H A DAttributedString.java195 * @param beginIndex Index of the first character of the range.
200 * beginIndex and endIndex is out of the text range.
204 int beginIndex,
206 this(text, beginIndex, endIndex, null);
220 * @param beginIndex Index of the first character of the range.
228 * beginIndex and endIndex is out of the text range.
232 int beginIndex,
242 if (beginIndex < textBeginIndex || endIndex > textEndIndex || beginIndex > endIndex)
247 text.setIndex(beginIndex);
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
749 private int beginIndex; field in class:AttributedString.AttributedStringIterator
765 AttributedStringIterator(Attribute[] attributes, int beginIndex, int endIndex) argument
1058 int beginIndex; field in class:AttributedString.AttributeMap
1061 AttributeMap(int runIndex, int beginIndex, int endIndex) argument
[all...]
/libcore/ojluni/src/main/java/java/lang/
H A DString.java646 * specified {@code beginIndex} and extends to the
649 * {@code endIndex-beginIndex}. Unpaired surrogates within
652 * @param beginIndex the index to the first {@code char} of
659 * {@code beginIndex} is negative, or {@code endIndex}
661 * {@code beginIndex} is larger than {@code endIndex}.
664 public int codePointCount(int beginIndex, int endIndex) { argument
665 if (beginIndex < 0 || endIndex > length() || beginIndex > endIndex) {
668 return Character.codePointCount(this, beginIndex, endIndex);
1927 * @param beginIndex th
1933 substring(int beginIndex) argument
1966 substring(int beginIndex, int endIndex) argument
2014 subSequence(int beginIndex, int endIndex) argument
[all...]
H A DAbstractStringBuilder.java302 * {@code beginIndex} and extends to the {@code char} at
305 * {@code endIndex-beginIndex}. Unpaired surrogates within
308 * @param beginIndex the index to the first {@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);
[all...]
H A DStringBuffer.java226 public synchronized int codePointCount(int beginIndex, int endIndex) { argument
227 return super.codePointCount(beginIndex, endIndex);
H A DCharacter.java5209 * specified {@code beginIndex} and extends to the
5212 * {@code endIndex-beginIndex}. Unpaired surrogates within
5216 * @param beginIndex the index to the first {@code char} of
5224 * {@code beginIndex} is negative, or {@code endIndex}
5226 * {@code beginIndex} is larger than {@code endIndex}.
5229 public static int codePointCount(CharSequence seq, int beginIndex, int endIndex) { argument
5231 if (beginIndex < 0 || endIndex > length || beginIndex > endIndex) {
5234 int n = endIndex - beginIndex;
5235 for (int i = beginIndex;
[all...]
/libcore/ojluni/src/main/java/java/nio/file/
H A DPath.java194 * <p> The {@code beginIndex} and {@code endIndex} parameters specify the
199 * that begin at {@code beginIndex} and extend to the element at index {@code
202 * @param beginIndex
211 * if {@code beginIndex} is negative, or greater than or equal to
213 * equal to {@code beginIndex}, or larger than the number of elements.
215 Path subpath(int beginIndex, int endIndex); argument
/libcore/ojluni/src/main/java/sun/nio/fs/
H A DUnixPath.java340 public UnixPath subpath(int beginIndex, int endIndex) { argument
343 if (beginIndex < 0)
345 if (beginIndex >= offsets.length)
349 if (beginIndex >= endIndex) {
354 int begin = offsets[beginIndex];

Completed in 182 milliseconds