Searched refs:stop (Results 1 - 25 of 594) sorted by relevance

1234567891011>>

/openjdk10/langtools/test/tools/javac/
H A DInitializerCompletion_2.java35 boolean stop = true; field in class:InitializerCompletion_2
37 if (stop)
H A DInitializerCompletion_4.java35 static boolean stop = true; field in class:InitializerCompletion_4
37 if (stop)
/openjdk10/jdk/src/java.desktop/share/classes/java/applet/
H A DAudioClip.java58 void stop(); method in interface:AudioClip
/openjdk10/hotspot/test/compiler/loopopts/
H A DTestSplitIfUnswitchedLoopsEliminated.java45 static int test_helper(int stop, boolean unswitch) { argument
55 if (stop != 4) {
65 int stop = 1;
66 for (; stop < 3; stop *= 4) {
68 return test_helper(stop, unswitch);
/openjdk10/jdk/test/java/lang/instrument/
H A DRedefineMethodInBacktraceTargetB.java35 RedefineMethodInBacktraceApp.stop.await();
47 RedefineMethodInBacktraceApp.stop.await();
/openjdk10/hotspot/test/compiler/ciReplay/
H A DVMBase.java47 for (int stop = 1; stop < CompilerWhiteBoxTest.COMP_LEVEL_FULL_OPTIMIZATION; stop++) {
48 String vmOpt = "-XX:TieredStopAtLevel=" + stop;
51 Asserts.assertGTE(stop, replayCompLevel, "Unexpected compLevel in replay");
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/resources/fx/
H A Dbootstrap.js32 // Extend the javafx.application.Application class overriding init, start and stop.
63 // Overridden javafx.application.Application.stop();
64 stop: function() {
65 // Call the global stop function if present.
66 if ($GLOBAL.stop) {
67 stop();
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DMonthDV.java74 int stop = 4;
75 date.month=parseInt(str,2,stop);
80 if (str.length() >= stop+2 &&
81 str.charAt(stop) == '-' && str.charAt(stop+1) == '-') {
82 stop += 2;
84 if (stop < len) {
85 if (!isNextCharUTCSign(str, stop, len)) {
89 getTimeZone(str, date, stop, len);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/
H A DThread_isInterrupted04.java52 private volatile boolean stop = false; field in class:Thread_isInterrupted04.Thread1
59 while (!stop) {
65 stop = value;
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/media/sound/
H A DModelChannelMixer.java50 void stop(); method in interface:ModelChannelMixer
/openjdk10/jdk/test/javax/xml/ws/publish/
H A DWSTest.java73 stop(endPoint2);
74 stop(endPoint1);
78 private static void stop(Endpoint endPoint) { method in class:WSTest
82 endPoint.stop();
/openjdk10/jdk/test/java/lang/Thread/
H A DStopThrowable.java27 * @summary Check that Thread.stop(Throwable) throws UOE
39 Thread.currentThread().stop(new ThreadDeath());
59 t.stop(new ThreadDeath());
67 Thread.currentThread().stop(null);
/openjdk10/jdk/test/java/lang/ThreadGroup/
H A DSuspend.java71 first.stop();
72 second.stop();
H A DStop.java55 // Now stop the group
56 group.stop();
/openjdk10/hotspot/src/share/vm/gc/shared/
H A DconcurrentGCThread.hpp55 // Shut down the specific GC work. Called by stop() as part of termination protocol.
67 virtual void stop();
/openjdk10/hotspot/test/runtime/RedefineTests/
H A DRedefineRunningMethods.java42 " public static volatile boolean stop = false;" +
53 " while (!stop) { count2++; localSleep(); }" +
61 " public static volatile boolean stop = false;" +
77 public static volatile boolean stop = false; field in class:RedefineRunningMethods.B
86 while (!stop) { count1++; localSleep(); }
89 while (!stop) { count2++; localSleep(); }
138 B.stop = true;
/openjdk10/jdk/src/java.desktop/share/classes/sun/java2d/marlin/stats/
H A DMonitor.java45 public void stop() { method in class:Monitor
/openjdk10/jdk/src/java.management/share/classes/javax/management/loading/
H A DClassLoaderRepository.java126 * method. If the search reaches <code>stop</code> or the end of
131 * <code>stop</code>, to consult loaders that appear before it
133 * search as soon as <code>stop</code> is reached, a potential
137 * @param stop The class loader at which to stop. May be null, in
147 public Class<?> loadClassBefore(ClassLoader stop, argument
/openjdk10/jdk/src/java.management/share/classes/javax/management/remote/
H A DJMXConnectorServerMBean.java94 public void stop() throws IOException; method in interface:JMXConnectorServerMBean
100 * {@link #stop stop} method is called or the connector server
/openjdk10/jdk/test/com/sun/net/httpserver/
H A DStopNoStartTest.java27 * @summary Test HttpServer stop method invocation before a start has been called
40 server.stop(0);
H A DSimpleHttpServerTest.java27 * @summary Test HttpServer instantiation, start, and stop repeated in a loop
46 server.stop(0);
54 server.stop(0);
/openjdk10/jdk/test/java/io/PipedInputStream/
H A DCloseAndAvailableRC.java45 private volatile boolean stop = false; field in class:CloseAndAvailableRC
64 stop = true;
70 stop = false;
93 while (!stop) {
97 // Bug detected; stop the test
/openjdk10/test/failure_handler/src/share/classes/jdk/test/failurehandler/
H A DStopwatch.java48 public void stop() { method in class:Stopwatch
59 * calls of {@link #start()} and {@link #stop()} methods.
62 * {@link #start()} {@link #stop()} method
/openjdk10/jdk/test/sun/security/provider/DSA/
H A DTestAlgParameterGenerator.java77 long start, stop;
82 stop = System.currentTimeMillis();
83 System.out.println("Time: " + (stop - start) + " ms.");
93 stop = System.currentTimeMillis();
94 System.out.println("Time: " + (stop - start) + " ms.");
113 stop = System.currentTimeMillis();
114 System.out.println("Time: " + (stop - start) + " ms.");
/openjdk10/hotspot/test/compiler/loopopts/superword/
H A DReductionPerf.java93 long stop = System.currentTimeMillis();
94 System.out.println(" Warmup is done in " + (stop - start) + " msec");
125 stop = System.currentTimeMillis();
126 System.out.println("sum int: " + (stop - start));
132 stop = System.currentTimeMillis();
133 System.out.println("sum long: " + (stop - start));
139 stop = System.currentTimeMillis();
140 System.out.println("sum float: " + (stop - start));
146 stop = System.currentTimeMillis();
147 System.out.println("sum double: " + (stop
[all...]

Completed in 228 milliseconds

1234567891011>>