Searched refs:OSType (Results 1 - 25 of 27) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/awt/
H A DOSInfo.java32 import static sun.awt.OSInfo.OSType.*;
38 public static enum OSType { enum in class:OSInfo
75 private static final PrivilegedAction<OSType> osTypeAction = new PrivilegedAction<OSType>() {
76 public OSType run() {
88 public static OSType getOSType() throws SecurityException {
114 public static PrivilegedAction<OSType> getOSTypeAction() {
/openjdk7/jdk/test/javax/swing/UITest/
H A DUITest.java35 import sun.awt.OSInfo.OSType;
40 OSType os = OSInfo.getOSType();
/openjdk7/jdk/test/javax/swing/JFileChooser/6550546/
H A Dbug6550546.java39 if (OSInfo.getOSType() != OSInfo.OSType.WINDOWS) {
/openjdk7/jdk/test/javax/swing/JFileChooser/6840086/
H A Dbug6840086.java46 if (OSInfo.getOSType() != OSInfo.OSType.WINDOWS) {
/openjdk7/jdk/test/javax/swing/JSlider/6579827/
H A Dbug6579827.java38 if (OSInfo.getOSType() != OSInfo.OSType.WINDOWS ||
/openjdk7/jdk/test/javax/swing/JFileChooser/6945316/
H A Dbug6945316.java40 if (OSInfo.getOSType() != OSInfo.OSType.WINDOWS) {
/openjdk7/jdk/test/javax/swing/JTabbedPane/6416920/
H A Dbug6416920.java45 if(OSInfo.getOSType() != OSInfo.OSType.WINDOWS){
/openjdk7/jdk/test/javax/swing/JFileChooser/4524490/
H A Dbug4524490.java61 if (OSInfo.OSType.MACOSX.equals(OSInfo.getOSType())) {
/openjdk7/jdk/test/javax/swing/JFileChooser/6741890/
H A Dbug6741890.java47 if (OSInfo.getOSType() != OSInfo.OSType.WINDOWS) {
/openjdk7/jdk/test/javax/swing/JTextArea/6940863/
H A Dbug6940863.java57 if (OSInfo.getOSType() != OSInfo.OSType.WINDOWS) {
/openjdk7/jdk/src/share/classes/javax/swing/
H A DUIManager.java373 OSInfo.OSType osType = AccessController.doPrivileged(OSInfo.getOSTypeAction());
374 if (osType == OSInfo.OSType.WINDOWS) {
383 else if (osType == OSInfo.OSType.MACOSX) {
603 OSInfo.OSType osType = AccessController.doPrivileged(OSInfo.getOSTypeAction());
604 if (osType == OSInfo.OSType.WINDOWS) {
615 if (osType == OSInfo.OSType.MACOSX) {
621 if (osType == OSInfo.OSType.SOLARIS) {
1228 OSInfo.OSType osType = AccessController.doPrivileged(OSInfo.getOSTypeAction());
1229 if (osType == OSInfo.OSType.MACOSX) {
/openjdk7/jdk/test/java/awt/event/KeyEvent/DeadKey/
H A DDeadKeyMacOSX.java45 if (OSInfo.getOSType() != OSInfo.OSType.MACOSX) {
H A DDeadKeyMacOSXInputText.java45 if (OSInfo.getOSType() != OSInfo.OSType.MACOSX) {
/openjdk7/jdk/test/javax/swing/JMenuItem/ShortcutNotDiplayed/
H A DShortcutNotDisplayedTest.java42 if (sun.awt.OSInfo.getOSType() != sun.awt.OSInfo.OSType.MACOSX) {
/openjdk7/jdk/test/javax/swing/JFileChooser/4847375/
H A Dbug4847375.java44 if (OSInfo.getOSType() != OSInfo.OSType.WINDOWS) {
/openjdk7/jdk/test/javax/swing/JMenuItem/ActionListenerCalledTwice/
H A DActionListenerCalledTwiceTest.java46 if (sun.awt.OSInfo.getOSType() != sun.awt.OSInfo.OSType.MACOSX) {
/openjdk7/jdk/test/javax/swing/JPopupMenu/6827786/
H A Dbug6827786.java68 if (sun.awt.OSInfo.getOSType() == sun.awt.OSInfo.OSType.MACOSX) {
/openjdk7/jdk/test/javax/swing/JTabbedPane/4624207/
H A Dbug4624207.java104 if (OSInfo.getOSType() == OSInfo.OSType.MACOSX) {
/openjdk7/jdk/test/java/awt/DataFlavor/MissedHtmlAndRtfBug/
H A DMissedHtmlAndRtfBug.java50 if (OSInfo.getOSType() != OSInfo.OSType.MACOSX
51 && OSInfo.getOSType() != OSInfo.OSType.WINDOWS) {
/openjdk7/jdk/test/java/awt/KeyboardFocusmanager/TypeAhead/SubMenuShowTest/
H A DSubMenuShowTest.java90 boolean isMacOSX = (OSInfo.getOSType() == OSInfo.OSType.MACOSX);
/openjdk7/jdk/test/javax/swing/JComboBox/4199622/
H A Dbug4199622.java226 if (OSInfo.getOSType() == OSInfo.OSType.WINDOWS) {
/openjdk7/jdk/test/javax/swing/JFileChooser/6798062/
H A Dbug6798062.java73 if (OSInfo.getOSType() != OSInfo.OSType.WINDOWS) {
/openjdk7/jdk/src/macosx/native/com/apple/eio/
H A DCFileManager.m130 if (FSFindFolder((SInt16)domain, (OSType)folderType, (Boolean)createIfNeeded, &foundRef) == noErr) {
/openjdk7/jdk/src/share/classes/sun/swing/
H A DWindowsPlacesBar.java64 boolean isXPPlatform = (OSInfo.getOSType() == OSInfo.OSType.WINDOWS &&
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsLookAndFeel.java142 return OSInfo.getOSType() == OSInfo.OSType.WINDOWS;
590 (OSInfo.getOSType() == OSInfo.OSType.WINDOWS &&
1588 return OSInfo.getOSType() == OSInfo.OSType.WINDOWS
2161 if (OSInfo.getOSType() == OSInfo.OSType.WINDOWS &&

Completed in 216 milliseconds

12