/libcore/luni/src/main/java/java/nio/channels/spi/ |
H A D | AbstractInterruptibleChannel.java | 31 * {@code begin()} before any I/O operation that potentially blocks 91 protected final void begin() { method in class:AbstractInterruptibleChannel 97 * {@code begin()} and that includes a potentially blocking I/O operation.
|
H A D | AbstractSelector.java | 29 * It realizes the interruption of selection by {@code begin} and 114 protected final void begin() { method in class:AbstractSelector 120 * {@code begin()} and that includes a potentially blocking I/O operation.
|
/libcore/luni/src/main/java/java/util/regex/ |
H A D | Splitter.java | 69 int begin = 0; 71 while (separatorCount + 1 != limit && (end = input.indexOf(ch, begin)) != -1) { 73 begin = end + 1; 76 if (limit == 0 && begin == lastPartEnd) { 84 --begin; 85 } while (input.charAt(begin - 1) == ch); 87 separatorCount -= input.length() - begin; 88 lastPartEnd = begin; 93 begin = 0; 95 end = input.indexOf(ch, begin); 127 finishSplit(List<String> list, String input, int begin, int limit) argument [all...] |
/libcore/support/src/test/java/tests/support/ |
H A D | Support_Format.java | 37 String text, Format.Field field, int begin, int end) { 53 assertEquals("Test " + count + ": incorrect begin index for field " 54 + field, begin, pos.getBeginIndex()); 36 t_FormatWithField(int count, Format format, Object object, String text, Format.Field field, int begin, int end) argument
|
/libcore/luni/src/test/java/tests/api/java/util/ |
H A D | ArrayListTest.java | 649 public void removeRange(int begin, int end) { argument 650 super.removeRange(begin, end);
|
/libcore/luni/src/main/java/java/text/ |
H A D | AttributedString.java | 57 private int begin, end, offset; field in class:AttributedString.AttributedIterator 65 begin = 0; 71 AttributedCharacterIterator.Attribute[] attributes, int begin, 73 if (begin < 0 || end > attrString.text.length() || begin > end) { 76 this.begin = begin; 78 offset = begin; 92 * begin, end, and current index as this attributed iterator. 120 if (begin 70 AttributedIterator(AttributedString attrString, AttributedCharacterIterator.Attribute[] attributes, int begin, int end) argument [all...] |
H A D | MessageFormat.java | 535 * {@code MessageFormat.Field.ARGUMENT}, then the begin and end index of 558 int begin = buffer.length(); 566 handleArgumentField(begin, buffer.length(), argumentNumbers[i], position, fields); 577 handleArgumentField(begin, buffer.length(), argumentNumbers[i], position, fields); 586 handleArgumentField(begin, buffer.length(), argumentNumbers[i], position, fields); 587 handleFormat(format, arg, begin, fields); 590 handleArgumentField(begin, buffer.length(), argumentNumbers[i], position, fields); 591 handleFormat(format, arg, begin, fields); 602 * argIndex, begin and end index to the fields list, or sets the 603 * position's begin an 606 handleArgumentField(int begin, int end, int argIndex, FieldPosition position, List<FieldContainer> fields) argument 651 handleFormat(Format format, Object arg, int begin, List<FieldContainer> fields) argument [all...] |