Searched refs:ok (Results 126 - 150 of 215) sorted by relevance

123456789

/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DLaunchTool.java249 JButton ok = new JButton("OK");
251 buttonPanel.add(ok);
253 ok.addActionListener(okListener);
/openjdk7/langtools/test/tools/javac/file/
H A DT7068451.java108 void check(String msg, boolean ok) { argument
109 System.err.println(msg + ": " + (ok ? "ok" : "failed"));
110 if (!ok)
/openjdk7/langtools/test/tools/javac/generics/
H A DOverrideBridge.java145 boolean ok = false;
154 ok = true;
158 if (!ok) {
/openjdk7/langtools/test/tools/javac/diags/
H A DExample.java270 boolean ok = true;
273 ok &= clean(f);
274 ok &= f.delete();
276 return ok;
397 Boolean ok = t.call();
405 return ok;
H A DMessageInfo.java402 boolean ok = true;
405 ok &= clean(f);
406 ok &= f.delete();
408 return ok;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DIncrementalSAXSource_Xerces.java274 boolean ok=false;
278 ok = parseSomeSetup(source);
285 if(!ok)
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DClassWriter.java80 boolean ok = false;
95 ok = true;
97 if (!ok) {
H A DDriver.java601 boolean ok;
605 ok = (val.length() != 0);
610 ok = true;
616 ok = (val.length() == 0);
619 if (!ok) continue eachSpec;
H A DHistogram.java507 long ok = oldEntries;
509 if (ok < groups[ni]) {
513 groups[ni] = (int) ok;
514 ok = 0;
517 ok -= groups[ni];
/openjdk7/jdk/test/javax/management/remote/mandatory/connection/
H A DIdleTimeoutTest.java56 boolean ok = true;
80 ok = false;
83 if (!ok) {
H A DDeadLockTest.java48 boolean ok = true;
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_MacroAssembler_sparc.cpp254 Label ok; local
257 cmp_and_brx_short(t1, var_size_in_bytes, Assembler::equal, Assembler::pt, ok);
259 cmp_and_brx_short(t1, con_size_in_bytes, Assembler::equal, Assembler::pt, ok);
264 bind(ok);
H A Dinterp_masm_sparc.hpp137 void throw_if_not_1_icc( Condition ok_condition, Label& ok );
138 void throw_if_not_1_xcc( Condition ok_condition, Label& ok );
139 void throw_if_not_1_x ( Condition ok_condition, Label& ok ); // chooses icc or xcc based on _LP64
141 void throw_if_not_2( address throw_entry_point, Register Rscratch, Label& ok);
H A Dinterp_masm_sparc.cpp633 Label ok; local
634 br_notnull_short(target, Assembler::pt, ok);
636 bind(ok);
833 Label& ok ) {
835 br(ok_condition, true, pt, ok);
840 Label& ok ) {
842 bp( ok_condition, true, Assembler::xcc, pt, ok);
847 Label& ok ) {
849 brx(ok_condition, true, pt, ok);
855 Label& ok ) {
869 Label ok; local
879 Label ok; local
889 Label ok; local
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DStart.java396 boolean ok = root != null;
397 if (ok) ok = docletInvoker.start(root);
409 return ok;
/openjdk7/jdk/src/share/classes/sun/tools/jar/
H A DMain.java143 private boolean ok; field in class:Main
149 ok = true;
225 if (ok) {
226 ok = updateOk;
273 ok = false;
276 ok = false;
279 ok = false;
283 return ok;
457 ok = false;
/openjdk7/jdk/test/java/util/zip/
H A Dzip.java75 private boolean ok; field in class:zip
78 ok = true;
122 if (ok) {
123 ok = updateOk;
164 ok = false;
167 ok = false;
170 ok = false;
174 return ok;
318 ok = false;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DXMLDTDProcessor.java997 boolean ok = true;
1013 ok = false;
1020 ok = false;
1038 ok = false;
1046 ok = false;
1052 ok = false;
1055 ok = true;
1061 if (!ok) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/msg/
H A DDatatypeMessages_sv.properties39 UnknownField={0} anropades med ok\u00E4nt f\u00E4lt\:{1}
/openjdk7/hotspot/src/share/vm/prims/
H A Dperf.cpp318 int ok = env->RegisterNatives(perfclass, perfmethods, sizeof(perfmethods)/sizeof(JNINativeMethod)); variable
319 guarantee(ok == 0, "register perf natives");
/openjdk7/jdk/test/java/io/File/
H A DCons.java90 private static void ok(String ans, String exp) { method in class:Cons
105 if ((got == ans) || ((got != null) && got.equals(ans))) ok(ans, exp);
/openjdk7/jdk/test/javax/swing/JColorChooser/
H A DTest6524757.java163 AbstractButton ok = (AbstractButton) getC(component, 0);
166 list.add(ok.getText());
/openjdk7/langtools/test/tools/javac/processing/errors/
H A DTestSuppression.java120 boolean ok = task.call();
123 System.err.println("ok:" + ok + " diags:" + dl.counts);
/openjdk7/langtools/test/tools/javac/tree/
H A DTreePosRoundsTest.java66 boolean ok = t.call();
67 if (!ok)
/openjdk7/langtools/test/tools/javah/6572945/
H A DT6572945.java45 boolean ok = new T6572945().run(args);
46 if (!ok)

Completed in 288 milliseconds

123456789