/openjdk7/hotspot/src/os/windows/vm/ |
H A D | vmError_windows.cpp | 33 bool yes; local 47 yes = os::message_box("Unexpected Error", buf) != 0; 49 if (yes) { 50 // yes, user asked VM to launch debugger 58 yes = false; 60 } while (yes);
|
/openjdk7/hotspot/src/os/bsd/vm/ |
H A D | vmError_bsd.cpp | 38 bool yes; local 48 "Enter 'yes' to launch gdb automatically (PATH must include gdb)\n" 53 yes = os::message_box("Unexpected Error", buf); 55 if (yes) { 56 // yes, user asked VM to launch debugger 61 yes = false; 63 } while (yes);
|
/openjdk7/hotspot/src/os/linux/vm/ |
H A D | vmError_linux.cpp | 38 bool yes; local 48 "Enter 'yes' to launch gdb automatically (PATH must include gdb)\n" 53 yes = os::message_box("Unexpected Error", buf); 55 if (yes) { 56 // yes, user asked VM to launch debugger 61 yes = false; 63 } while (yes);
|
/openjdk7/hotspot/src/os/solaris/vm/ |
H A D | vmError_solaris.cpp | 36 bool yes; local 46 "Enter 'yes' to launch dbx automatically (PATH must include dbx)\n" 50 yes = os::message_box("Unexpected Error", buf); 52 if (yes) { 53 // yes, user asked VM to launch debugger 57 yes = false; 59 } while (yes);
|
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/ |
H A D | MethodEntry.java | 160 public void oneway (boolean yes) argument 162 _oneway = yes; 172 public void valueMethod (boolean yes) argument 174 _valueMethod = yes;
|
/openjdk7/jdk/test/java/util/TimeZone/ |
H A D | OldIDMappingTest.sh | 49 for I in true True TRUE yes Yes YES
|
/openjdk7/hotspot/test/runtime/7110720/ |
H A D | Test7110720.sh | 71 ok=yes
|
/openjdk7/jdk/test/sun/management/jmxremote/startstop/ |
H A D | JMXStartStopTest.sh | 33 _compile=yes 66 if [ "${_verbose}" = "yes" ] 94 if [ "x$1" = "xFailed" -a "${_jtreg}" = "yes" ] 106 if [ "${_verbose}" = "yes" ] 546 if [ "${_verbose}" != "yes" ] 559 --verbose) _verbose=yes ;; 560 --server) _server=yes ;; 561 --jtreg) _jtreg=yes ;; 573 if [ ${_compile} = "yes" ] 578 if [ ${_jtreg} = "yes" ] [all...] |
/openjdk7/jdk/test/sun/management/jdp/ |
H A D | JdpTest.sh | 32 _compile=yes 91 if [ "${_jtreg}" = "yes" ] 290 --verbose) _verbose=yes ;; 291 --jtreg) _jtreg=yes ;; 301 if [ "${_compile}" = "yes" ] 306 if [ "${_jtreg}" = "yes" ]
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/ |
H A D | Op.java | 49 static final int CONDITION = 26; // (?(..)yes|no) 244 Op yes; field in class:Op.ConditionOp 250 this.yes = yesflow;
|
H A D | Token.java | 59 static final int CONDITION = 26; // (?(...)yes|no) 1331 * (?(condition)yes-pattern|no-pattern) 1339 final Token yes; field in class:Token.ConditionToken 1345 this.yes = yespat; 1352 if (index == 0) return this.yes; 1368 ret += this.yes+")"; 1370 ret += this.yes+"|"+this.no+")";
|
H A D | RegularExpression.java | 418 * <dt class="REGEX"><kbd>(?(</Kbd><var>condition</var><Kbd>)</kbd><var>yes-pattern</var><kbd>|</kbd><var>no-pattern</var><kbd>)</kbd>, 419 * <dt class="REGEX"><kbd>(?(</kbd><var>condition</var><kbd>)</kbd><var>yes-pattern</var><kbd>)</kbd> 651 Op yes = compile(ctok.yes, next, reverse); 653 ret = Op.createCondition(next, ref, condition, yes, no); 1297 op = cop.yes; 1421 op = cop.yes;
|
/openjdk7/hotspot/src/os/posix/launcher/ |
H A D | launcher.script | 207 $VALGRIND --tool=memcheck --leak-check=yes --num-callers=50 $LAUNCHER -Xmx16m $JPARMS
|
/openjdk7/jdk/make/common/ |
H A D | Defs-solaris.gmk | 259 CXXFLAGS_COMMON += -errtags=yes 493 QUANTIFY_OPTIONS = -cache-dir=/tmp/quantify -always-use-cache-dir=yes 505 PURIFY_OPTIONS = -cache-dir=/tmp/quantify -always-use-cache-dir=yes 783 # can fully handle Type1 fonts in all cases. Default is "yes". 787 HAVE_DPS = yes
|
H A D | Defs-linux.gmk | 384 QUANTIFY_OPTIONS = -cache-dir=/tmp/quantify -always-use-cache-dir=yes 449 # can fully handle Type1 fonts in all cases. Default is "yes".
|
H A D | Defs-macosx.gmk | 285 QUANTIFY_OPTIONS = -cache-dir=/tmp/quantify -always-use-cache-dir=yes 374 # can fully handle Type1 fonts in all cases. Default is "yes".
|
/openjdk7/jdk/src/share/demo/jfc/Font2DTest/ |
H A D | Font2DTest.java | 1125 BufferedImage yes = 1127 Graphics2D g = yes.createGraphics(); 1138 yesImage = new ImageIcon(yes);
|
/openjdk7/jdk/src/share/classes/java/util/regex/ |
H A D | Pattern.java | 4910 Node cond, yes, not; field in class:Pattern.Conditional 4911 Conditional(Node cond, Node yes, Node not) { argument 4913 this.yes = yes; 4918 return yes.match(matcher, i, seq); 4928 yes.study(info);
|
/openjdk7/jdk/src/share/classes/sun/security/tools/policytool/ |
H A D | PolicyTool.java | 1245 char displayYesNoDialog(Window w, String title, String prompt, String yes, String no) { argument 1266 Button button = new Button(yes);
|