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

1234567891011>>

/openjdk7/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)
/openjdk7/jdk/src/share/classes/java/applet/
H A DAudioClip.java52 void stop(); method in interface:AudioClip
/openjdk7/jaxp/src/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);
/openjdk7/jdk/test/java/lang/ThreadGroup/
H A DStop.java47 // When the first thread runs, it will stop the group.
51 group.stop();
68 // Wait for the thread group stop to be issued
72 // Give the other thread a chance to stop
82 first.stop();
83 second.stop();
H A DSuspend.java71 first.stop();
72 second.stop();
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelChannelMixer.java49 public void stop(); method in interface:ModelChannelMixer
/openjdk7/jdk/src/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
/openjdk7/jdk/src/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
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DCommunicatorServerMBean.java41 * A <CODE>CommunicatorServer</CODE> object can be stopped by calling the <CODE>stop</CODE>
92 public void stop() ; method in interface:CommunicatorServerMBean
/openjdk7/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
/openjdk7/jdk/test/sun/security/ec/
H A DTestEC.java88 long stop = System.currentTimeMillis();
90 " provider (" + ((stop - start) / 1000.0) + " seconds).");
/openjdk7/jdk/src/share/classes/javax/swing/
H A DAutoscroller.java59 public static void stop(JComponent c) { method in class:Autoscroller
119 timer.stop();
136 * MouseListener method, invokes start/stop as necessary.
140 boolean stop = true;
143 stop = visibleRect.contains(e.getX(), e.getY());
145 if (stop) {
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DBitArray.java214 int stop = (_last > other._last) ? _last : other._last;
218 if (stop > _intSize) stop = _intSize;
219 for (int i=start; i<=stop; i++)
225 if (stop > other._intSize) stop = other._intSize;
226 for (int i=start; i<=stop; i++)
/openjdk7/jdk/test/javax/management/remote/mandatory/connection/
H A DCloseServerTest.java94 server.stop();
101 server.stop();
113 server.stop();
132 server.stop();
146 server.stop();
167 server.stop();
/openjdk7/jdk/src/share/classes/sun/print/
H A DServiceNotifier.java47 private boolean stop = false; field in class:ServiceNotifier
85 stop = true;
112 while (!stop) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/
H A DFlagDumper.java49 fd.stop();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/soql/
H A DJSDB.java36 jsdb.stop();
/openjdk7/jdk/src/share/classes/javax/management/monitor/
H A DMonitorMBean.java48 public void stop(); method in interface:MonitorMBean
152 * It becomes inactive when the {@link #stop stop} method is called.
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentG1RefineThread.hpp90 void stop();
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DTiming.java59 public void stop() { method in class:Timing
61 throw new IllegalStateException("You must call start before stop");
/openjdk7/hotspot/test/compiler/7177917/
H A DTest7177917.java43 long stop = System.nanoTime();
45 return (stop - start) / 1000;
54 long stop = System.nanoTime();
56 return (stop - start) / 1000;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/
H A DHttpEndpoint.java34 * to stop the transport.
62 public abstract void stop(); method in class:HttpEndpoint
/openjdk7/jdk/test/com/sun/net/httpserver/bugs/
H A DB6529200.java73 server.stop (2);
93 server.stop (2);
100 server.stop (2);
106 server.stop (2);
/openjdk7/jdk/src/share/demo/applets/SortDemo/
H A DSortAlgorithm.java55 * When true stop sorting.
99 public void stop() { method in class:SortAlgorithm

Completed in 71 milliseconds

1234567891011>>