Searched defs:begin (Results 1 - 12 of 12) sorted by relevance

/libcore/ojluni/src/main/java/java/nio/channels/spi/
H A DAbstractInterruptibleChannel.java46 * class must invoke the {@link #begin begin} and {@link #end end} methods
55 * begin();
156 protected final void begin() { method in class:AbstractInterruptibleChannel
180 * <p> This method should be invoked in tandem with the {@link #begin
181 * begin} method, using a <tt>try</tt>&nbsp;...&nbsp;<tt>finally</tt> block
H A DAbstractSelector.java42 * invoke the {@link #begin begin} and {@link #end end} methods before and
50 * begin();
209 protected final void begin() { method in class:AbstractSelector
225 * <p> This method should be invoked in tandem with the {@link #begin begin}
/libcore/ojluni/src/main/java/java/util/stream/
H A DSink.java37 * {@code Sink} for the first time, you must first call the {@code begin()}
41 * {@code accept()} without again calling {@code begin()}. {@code Sink} also
48 * It starts out in the initial state; the {@code begin()} method transitions
94 * {@code begin()}, {@code end()}, and {@code cancellationRequested()} to
129 default void begin(long size) {} method in interface:Sink
238 * sinks. The {@code begin}, {@code end}, and
253 public void begin(long size) { method in class:Sink.ChainedReference
254 downstream.begin(size);
270 * sinks. The {@code begin}, {@code end}, and
285 public void begin(lon method in class:Sink.ChainedInt
317 public void begin(long size) { method in class:Sink.ChainedLong
349 public void begin(long size) { method in class:Sink.ChainedDouble
[all...]
H A DSortedOps.java340 public void begin(long size) { method in class:SortedOps.SizedRefSortingSink
349 downstream.begin(offset);
379 public void begin(long size) { method in class:SortedOps.RefSortingSink
388 downstream.begin(list.size());
437 public void begin(long size) { method in class:SortedOps.SizedIntSortingSink
446 downstream.begin(offset);
476 public void begin(long size) { method in class:SortedOps.IntSortingSink
486 downstream.begin(ints.length);
535 public void begin(long size) { method in class:SortedOps.SizedLongSortingSink
544 downstream.begin(offse
574 public void begin(long size) { method in class:SortedOps.LongSortingSink
633 public void begin(long size) { method in class:SortedOps.SizedDoubleSortingSink
672 public void begin(long size) { method in class:SortedOps.DoubleSortingSink
[all...]
H A DNodes.java1212 public void begin(long size) { method in class:Nodes.FixedNodeBuilder
1267 public void begin(long size) { method in class:Nodes.SpinedNodeBuilder
1284 // @@@ check begin(size) and size
1496 public void begin(long size) { method in class:Nodes.IntFixedNodeBuilder
1550 public void begin(long size) { method in class:Nodes.LongFixedNodeBuilder
1604 public void begin(long size) { method in class:Nodes.DoubleFixedNodeBuilder
1659 public void begin(long size) { method in class:Nodes.IntSpinedNodeBuilder
1676 // @@@ check begin(size) and size
1719 public void begin(long size) { method in class:Nodes.LongSpinedNodeBuilder
1736 // @@@ check begin(siz
1779 public void begin(long size) { method in class:Nodes.DoubleSpinedNodeBuilder
1885 public void begin(long size) { method in class:Nodes.SizedCollectorTask
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
H A DSupport_Format.java38 String text, Format.Field field, int begin, int end) {
52 if (begin != pos.getBeginIndex() || end != pos.getEndIndex()) {
53 assertEquals(field + " " + begin + ".." + end,
37 t_FormatWithField(int count, Format format, Object object, String text, Format.Field field, int begin, int end) argument
/libcore/ojluni/src/main/java/java/text/
H A DStringCharacterIterator.java55 private int begin; field in class:StringCharacterIterator
57 // invariant: begin <= pos <= end
86 * @param begin Index of the first character
90 public StringCharacterIterator(String text, int begin, int end, int pos) { argument
95 if (begin < 0 || begin > end || end > text.length())
98 if (pos < begin || pos > end)
101 this.begin = begin;
119 this.begin
[all...]
/libcore/support/src/test/java/tests/support/
H A DSupport_Format.java37 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/ojluni/src/main/java/sun/nio/ch/
H A DAsynchronousFileChannelImpl.java82 protected final void begin() throws IOException { method in class:AsynchronousFileChannelImpl
165 // like begin() but returns null instead of exception
200 begin();
H A DAsynchronousServerSocketChannelImpl.java82 final void begin() throws IOException { method in class:AsynchronousServerSocketChannelImpl
157 begin();
190 begin();
214 begin();
H A DAsynchronousSocketChannelImpl.java115 final void begin() throws IOException { method in class:AsynchronousSocketChannelImpl
424 begin();
463 begin();
489 begin();
534 begin();
552 begin();
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DArrayListTest.java971 public void removeRange(int begin, int end) { argument
972 super.removeRange(begin, end);

Completed in 199 milliseconds