Searched refs:allWindows (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/macosx/classes/com/apple/eawt/
H A D_AppMiscHandlers.java31 private static native void nativeRequestActivation(final boolean allWindows); argument
41 static void requestActivation(final boolean allWindows) { argument
42 nativeRequestActivation(allWindows);
H A DApplication.java274 * @param allWindows if all windows of this application should be moved to the foreground, or only the foremost one
279 public void requestForeground(final boolean allWindows) { argument
280 _AppMiscHandlers.requestActivation(allWindows);
/openjdk7/jdk/src/share/classes/java/awt/
H A DWindow.java258 private static final IdentityArrayList<Window> allWindows = new IdentityArrayList<Window>(); field in class:Window
767 synchronized (allWindows) {
768 allWindows.add(this);
779 synchronized (allWindows) {
780 allWindows.remove(this);
1522 synchronized (allWindows) {
1524 v.addAll(allWindows);
1530 synchronized (allWindows) {
1532 for (int i = 0; i < allWindows.size(); i++) {
1533 Window w = allWindows
[all...]
H A DFrame.java1133 Window[] allWindows = Window.getWindows();
1136 for (Window w : allWindows) {
1144 for (Window w : allWindows) {
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DApplicationDelegate.m661 (JNIEnv *env, jclass clz, jboolean allWindows)
666 NSApplicationActivationOptions options = allWindows ? NSApplicationActivateAllWindows : 0;

Completed in 31 milliseconds