HomeSort by relevance Sort by last modified time
    Searched refs:osName (Results 1 - 7 of 7) sorted by null

  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/util/
OS.java 26 String osName = System.getProperty("os.name");
27 macOs = "Mac OS X".startsWith(osName);
28 linux = "Linux".startsWith(osName);
29 windows = "Windows".startsWith(osName);
  /packages/apps/Email/emailcommon/src/org/apache/commons/io/
FileSystemUtils.java 70 String osName = System.getProperty("os.name");
71 if (osName == null) {
74 osName = osName.toLowerCase();
76 if (osName.indexOf("windows") != -1) {
78 } else if (osName.indexOf("linux") != -1 ||
79 osName.indexOf("sun os") != -1 ||
80 osName.indexOf("sunos") != -1 ||
81 osName.indexOf("solaris") != -1 ||
82 osName.indexOf("mpe/ix") != -1 ||
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
IconFactory.java 93 * @param osName The leaf name, without the extension, of an existing icon in the
97 public Image getIcon(String osName) {
98 return getIcon(osName, COLOR_DEFAULT, SHAPE_DEFAULT);
106 * @param osName The leaf name, without the extension, of an existing icon in the
114 public Image getIcon(String osName, int color, int shape) {
115 String key = Character.toString((char) shape) + Integer.toString(color) + osName;
118 ImageDescriptor id = getImageDescriptor(osName, color, shape);
134 * @param osName The leaf name, without the extension, of an existing icon in the
138 public ImageDescriptor getImageDescriptor(String osName) {
139 return getImageDescriptor(osName, COLOR_DEFAULT, SHAPE_DEFAULT)
    [all...]
  /external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/io/
UnixFileTest.java 87 String osName = System.getProperty("os.name");
89 if (osName.toLowerCase().indexOf("linux") != -1) {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
SocketTest.java 687 String osName = System.getProperty("os.name");
690 osName = (osName == null ? null : osName.toLowerCase(Locale.ENGLISH));
692 if (osName != null && osName.startsWith("windows")) { //$NON-NLS-1$
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
FileTest.java     [all...]
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 3016 milliseconds