Lines Matching defs:is

5  * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
179 if (Windows.is()) {
190 if (Windows.is()) {
277 if (EnglishUnix.is() &&
381 if (EnglishUnix.is() &&
394 if (EnglishUnix.is() &&
480 // parent's is used.
575 public static boolean is() { return is; }
576 private static final boolean is =
581 public static boolean is() { return is; }
582 private static final boolean is =
583 (! Windows.is() &&
590 public static boolean is() { return is; }
592 private static final boolean is =
600 public static boolean is() { return is; }
602 private static final boolean is = osName.contains("OS X");
615 if (! Unix.is())
628 private final static Boolean is =
629 (! Windows.is() && isEnglish("LANG") && isEnglish("LC_ALL"));
637 static boolean is() { return is; }
987 // Testing INHERIT is harder.
1008 // Read access to current directory is always granted;
1080 if (Windows.is())
1082 if (Unix.is())
1084 if (UnicodeOS.is())
1127 String expected = Windows.is() ? "SystemRoot="+systemRoot+",": "";
1128 if (Windows.is()) {
1132 if (MacOSX.is()) {
1139 // System.getenv() is read-only.
1502 // Order is random on Unix, so this test does the sort.
1503 if (! Windows.is())
1513 if (Windows.is()) {
1568 if (UnicodeOS.is()) {
1604 if (Windows.is())
1623 if (UnicodeOS.is())
1642 if (Windows.is()) {
1648 String expected = Windows.is() ? "=C:=\\,SystemRoot="+systemRoot+",=ExitValue=3," : "=C:=\\,";
1650 if (MacOSX.is()) {
1654 if (Windows.is()) {
1686 if (Windows.is()) {
1701 if (MacOSX.is()) {
1704 check(commandOutput.equals(Windows.is()
1739 if (Unix.is()) {
1741 // We can find true and false when PATH is null
1769 // Parent's, not child's PATH is used
1794 if (EnglishUnix.is() &&
1811 || (EnglishUnix.is()
1827 || (EnglishUnix.is() &&
1901 // Check that reads which are pending when Process.destroy is
1980 if (Unix.is()
1996 if (EnglishUnix.is() &&
2005 // Subprocess is now dead, but file descriptors remain open.
2046 if (EnglishUnix.is() &&
2182 private final InputStream is;
2192 StreamAccumulator (InputStream is) {
2193 this.is = is;
2198 Reader r = new InputStreamReader(is);
2207 try { is.close(); }