Searched refs:active (Results 1 - 25 of 99) sorted by relevance

1234

/openjdk7/jdk/test/java/lang/StringBuffer/
H A DSetLength.java34 StringBuffer active = new StringBuffer();
35 active.append("first one");
36 String a = active.toString();
37 active.setLength(0);
38 active.append("second");
39 String b = active.toString();
40 active.setLength(0);
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DVoiceStatus.java64 * four voices are active in this case (assuming no earlier notes are still playing).
65 * Usually, a voice whose status is reported as active is producing audible sound, but this
70 * message is received. In such a situation, the voice is still considered active
73 * Besides its active or inactive status, the <code>VoiceStatus</code> class
77 * of these fields has an unspecified value, so you should check the active
93 * <A HREF="#description_of_active">active and inactive voices</A>.
95 public boolean active = false; field in class:VoiceStatus
100 * zero-based channel number if the voice is active, or
104 * @see #active
113 * The value ranges from 0 to 16383 if the voice is active, an
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/event/
H A DVmStatusChangeEvent.java41 * The set of currently active Java Virtual Machines for the MonitoredHost.
43 * active Java Virtual Machine on the MonitoredHost. This Set will only
46 protected Set active; field in class:VmStatusChangeEvent
68 * @param active the set of currently active Java Virtual Machines
74 public VmStatusChangeEvent(MonitoredHost host, Set active, argument
77 this.active = active;
83 * Return the set of currently active Java Virtual Machines.
85 * active Jav
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/rmi/
H A DRemoteVmManager.java39 * This class is responsible for the mechanism that detects the active
96 int[] active = null;
99 active = remoteHost.activeVms();
106 Set<Integer> activeSet = new HashSet<Integer>(active.length);
108 for (int i = 0; i < active.length; i++) {
109 activeSet.add(new Integer(active[i]));
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftAudioPusher.java39 private volatile boolean active = false; field in class:SoftAudioPusher
53 if (active)
55 active = true;
63 if (!active)
65 active = false;
79 while (active) {
87 active = false;
H A DAbstractDataLine.java64 private boolean active = false; field in class:AbstractDataLine
254 return active;
309 * This method sets the active state and generates
312 final void setActive(boolean active) { argument
314 if (Printer.trace) Printer.trace("> AbstractDataLine: setActive(" + active + ")");
321 //if (Printer.debug) Printer.debug(" AbstractDataLine: setActive: this.active: " + this.active);
322 //if (Printer.debug) Printer.debug(" active: " + active);
324 if (this.active !
[all...]
H A DSoftEnvelopeGenerator.java50 private final double[][] active = new double[max_count][1]; field in class:SoftEnvelopeGenerator
95 if (name.equals("active"))
96 return active[instance];
141 active[i][0] = 0;
165 active[i][0] = 1;
233 active[i][0] = 0;
247 active[i][0] = 0;
285 active[i][0] = 0;
H A DSoftJitterCorrector.java44 boolean active = true; field in class:SoftJitterCorrector.JitterStream
139 if (!active)
169 if (!active)
226 active = false;
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftChannel/
H A DAllNotesOff.java56 assertEquals(v[0].active, true);
60 assertEquals(v[0].active, false);
H A DAllSoundOff.java56 assertEquals(v[0].active, true);
60 assertEquals(v[0].active, false);
H A DNoteOff.java56 assertEquals(v[0].active, true);
60 assertEquals(v[0].active, false);
H A DNoteOff2.java56 assertEquals(v[0].active, true);
60 assertEquals(v[0].active, false);
H A DNoteOn.java56 assertEquals(v[0].active, true);
60 assertEquals(v[0].active, false);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDropTargetEventProcessor.java38 private static boolean active = false; field in class:XDropTargetEventProcessor
112 active = true;
119 return active ? theInstance.doProcessEvent(ev) : false;
H A DXEmbedClientHelper.java48 private boolean active; field in class:XEmbedClientHelper
61 active = false;
103 active = true;
176 if (active) {
186 active = false;
195 if (active && embedded.focusAllowedFor()) {
205 // embedded is an active window before sending WINDOW_LOST_FOCUS
222 return active;
226 if (active) {
232 if (active) {
[all...]
H A DXInputMethod.java77 boolean value, boolean active) {
84 active);
146 boolean value, boolean active);
76 setXICFocus(ComponentPeer peer, boolean value, boolean active) argument
145 setXICFocusNative(long window, boolean value, boolean active) argument
/openjdk7/jdk/src/share/classes/sun/tracing/
H A DProviderSkeleton.java70 protected boolean active; // set to false after dispose() is called field in class:ProviderSkeleton
92 this.active = false; // in case of some error during initialization
118 this.active = true;
183 return active ? probes.get(m) : null;
192 active = false;
258 if (active) {
/openjdk7/jdk/test/java/awt/print/PaintSetEnabledDeadlock/
H A DPaintSetEnabledDeadlock.java97 volatile boolean active = true; field in class:TestPanel
133 while (active) {
140 if (active) {
147 active = false;
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DActivationGroupImpl.java68 private final Hashtable<ActivationID,ActiveEntry> active = field in class:ActivationGroupImpl
194 * activate an already active object should return the previously
223 ActiveEntry entry = active.get(id);
296 active.put(id, entry);
327 * active). If the object does not call
343 * not currently active so that the remote object will be
349 * succeed if the object in currently known to be active and is
368 ActiveEntry entry = active.get(id);
371 throw new UnknownObjectException("object not active");
385 active
[all...]
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftAudioSynthesizer/
H A DDummySourceDataLine.java55 private boolean active = false; field in class:DummySourceDataLine
190 return active;
194 return active;
198 active = true;
202 active = false;
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftSynthesizer/
H A DDummySourceDataLine.java55 private boolean active = false; field in class:DummySourceDataLine
190 return active;
194 return active;
198 active = true;
202 active = false;
/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DDropTarget.java277 * Sets the DropTarget active if <code>true</code>,
280 * @param isActive sets the <code>DropTarget</code> (in)active.
284 if (isActive != active) {
285 active = isActive;
288 if (!active) clearAutoscroll();
294 * is currently active (ready to accept drops).
296 * @return <CODE>true</CODE> if active, <CODE>false</CODE> if not
300 return active;
344 * is not active.
349 * is active an
839 boolean active = true; field in class:DropTarget
[all...]
/openjdk7/jdk/test/java/awt/Modal/WsDisabledStyle/CloseBlocker/
H A DCloseBlocker.java36 * that active window is correct when the dialog is closed.
57 " 4) the frame with button should become next active window, ",
88 final Frame active = new Frame();
94 Frame parent = ownerless ? null : (initiallyOwnerIsActive? active : nonactive);
110 active.add(button);
111 active.setBounds(200, 400, 200, 200);
114 active.dispose();
121 active.addWindowListener(adapter);
122 active.setVisible(true);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DNode.java40 private boolean active; field in class:Node
61 return active;
65 active = b;
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DJStatLogger.java44 private volatile boolean active = true; field in class:JStatLogger
121 active = false;
142 while (active) {

Completed in 100 milliseconds

1234