/libcore/ojluni/src/main/java/java/util/stream/ |
D | MatchOps.java | 90 if (!stop && predicate.test(t) == matchKind.stopOnPredicateMatches) { in makeRef() 91 stop = true; in makeRef() 119 if (!stop && predicate.test(t) == matchKind.stopOnPredicateMatches) { in makeInt() 120 stop = true; in makeInt() 149 if (!stop && predicate.test(t) == matchKind.stopOnPredicateMatches) { in makeLong() 150 stop = true; in makeLong() 179 if (!stop && predicate.test(t) == matchKind.stopOnPredicateMatches) { in makeDouble() 180 stop = true; in makeDouble() 253 boolean stop; field in MatchOps.BooleanTerminalSink 266 return stop; in cancellationRequested()
|
/libcore/ojluni/src/main/java/java/io/ |
D | ObjectInputStream.java | 3034 int stop, endoff = off + len; in readBooleans() local 3039 stop = off + span; in readBooleans() 3045 stop = Math.min(endoff, off + end - pos); in readBooleans() 3048 while (off < stop) { in readBooleans() 3055 int stop, endoff = off + len; in readChars() local 3060 stop = off + span; in readChars() 3066 stop = Math.min(endoff, off + ((end - pos) >> 1)); in readChars() 3069 while (off < stop) { in readChars() 3077 int stop, endoff = off + len; in readShorts() local 3082 stop = off + span; in readShorts() [all …]
|
D | ObjectOutputStream.java | 2088 int stop = pos + n; in writeBytes() local 2089 while (pos < stop) { in writeBytes() 2125 int stop = Math.min(endoff, off + (MAX_BLOCK_SIZE - pos)); in writeBooleans() local 2126 while (off < stop) { in writeBooleans() 2138 int stop = Math.min(endoff, off + avail); in writeChars() local 2139 while (off < stop) { in writeChars() 2155 int stop = Math.min(endoff, off + avail); in writeShorts() local 2156 while (off < stop) { in writeShorts() 2172 int stop = Math.min(endoff, off + avail); in writeInts() local 2173 while (off < stop) { in writeInts() [all …]
|
/libcore/libart/src/main/java/java/lang/ |
D | Daemons.java | 79 public static void stop() { in stop() method in Daemons 81 daemon.stop(); in stop() 169 public void stop() { in stop() method in Daemons.Daemon
|
/libcore/ojluni/src/main/java/java/net/ |
D | DatagramSocket.java | 814 boolean stop = false; in receive() 815 while (!stop) { in receive() 837 stop = true; in receive() 841 stop = true; in receive()
|
D | URI.java | 2992 private int scan(int start, int end, String err, String stop) { in scan() argument 2998 if (stop.indexOf(c) >= 0) in scan()
|
/libcore/ojluni/annotations/mmodule/java/lang/ |
D | Thread.annotated.java | 71 public final void stop() { throw new RuntimeException("Stub!"); } in stop() method in Thread 74 public final synchronized void stop(java.lang.Throwable obj) { throw new RuntimeException("Stub!");… in stop() method in Thread
|
/libcore/ojluni/annotations/sdk/nullability/java/lang/ |
D | Thread.annotated.java | 70 @Deprecated public final void stop() { throw new RuntimeException("Stub!"); } in stop() method in Thread 72 @Deprecated public final synchronized void stop(@libcore.util.Nullable java.lang.Throwable obj) { t… in stop() method in Thread
|
/libcore/ojluni/src/main/java/java/lang/ |
D | ThreadGroup.java | 627 public final void stop() { in stop() method in ThreadGroup 629 Thread.currentThread().stop(); in stop() 716 threads[i].stop(); in stopOrSuspend()
|
D | Thread.java | 971 public final void stop() { in stop() method in Thread 1007 public final synchronized void stop(Throwable obj) { in stop() method in Thread
|
/libcore/dalvik/src/main/java/dalvik/system/ |
D | ZygoteHooks.java | 119 Daemons.stop(); in preFork()
|
/libcore/luni/src/test/java/libcore/java/lang/ |
D | OldThreadTest.java | 401 thread.stop(); in test_stop() 437 thread.stop(new Exception("Oops!")); in test_stopLjava_lang_Throwable_subtest0()
|
/libcore/ojluni/annotations/hiddenapi/java/lang/ |
D | Thread.java | 146 public final void stop() { in stop() method in Thread 151 public final synchronized void stop(java.lang.Throwable obj) { in stop() method in Thread
|
D | ThreadGroup.java | 124 public final void stop() { in stop() method in ThreadGroup
|
/libcore/luni/src/test/java/libcore/java/net/ |
D | FtpURLConnectionTest.java | 84 fakeFtpServer.stop(); in tearDown()
|
/libcore/ojluni/annotations/hiddenapi/java/net/ |
D | URI.java | 728 private int scan(int start, int end, java.lang.String err, java.lang.String stop) { in scan() argument
|