Searched refs:rc (Results 1 - 25 of 362) sorted by last modified time

1234567891011>>

/openjdk10/nashorn/test/src/jdk/nashorn/internal/runtime/linker/test/
H A DNameCodecTest.java67 final char rc = REPLACEMENT_CHARS.charAt(i);
71 res[2 * i + 0] = new String[]{"\\" + rc, "" + dc};
73 res[2 * i + 1] = new String[]{"" + rc, "" + rc};
/openjdk10/nashorn/test/script/basic/
H A DJDK-8017084.js502 rc: 471,
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/linker/
H A DNameCodec.java372 final char rc = s.charAt(i+1);
373 final char oc = originalOfReplacement(rc);
374 if (oc != rc) {
/openjdk10/langtools/test/tools/sjavac/
H A DSjavacBase.java46 int rc = (Integer) m.invoke(null, (Object) strArgs);
47 return rc;
H A DWrapper.java64 int rc = com.sun.tools.javac.Main.compile(
66 if (rc != 0)
H A DSJavacTester.java102 int rc = Main.go(args);
103 if (rc != 0) throw new Exception("Error during compile!");
118 int rc = Main.go(args);
119 if (rc == 0) throw new Exception("Expected error during compile! Did not fail!");
H A DIncludeExcludePatterns.java133 int rc = compile((Object[]) args.split(" "));
136 Assert.check(rc == Result.OK.exitCode, "Compilation failed unexpectedly.");
H A DHiddenFiles.java63 int rc = compile("-x", "pkg/B.java", SRC.toString(),
67 Assert.check(rc == Result.ERROR.exitCode, "Compilation succeeded unexpectedly.");
H A DIgnoreSymbolFile.java70 error("compilation failed unexpectedly: rc=" + rc2);
81 int rc = (Integer) m.invoke(null, (Object) args);
82 System.err.println("rc=" + rc);
83 return rc;
H A DClasspathDependencies.java65 int rc = compile("-d", classesDep, "--state-dir=" + classesDep, srcDep);
66 check(rc == 0, "Compilation failed unexpectedly");
74 rc = compile("-d", classes, "--state-dir=" + classes, src, "-cp", classesDep);
75 check(rc == 0, "Compilation failed unexpectedly");
83 rc = compile("-d", classesDep, "--state-dir=" + classesDep, srcDep);
84 check(rc == 0, "Compilation failed unexpectedly");
88 rc = compile("-d", classes, "--state-dir=" + classes, src, "-cp", classesDep);
89 check(rc == 0, "Compilation failed unexpectedly");
98 rc = compile("-d", classesDep, "--state-dir=" + classesDep, srcDep);
99 check(rc
[all...]
/openjdk10/langtools/test/tools/lib/toolbox/
H A DJavadocTask.java286 int rc;
291 rc = runAPI(direct.pw);
294 rc = runCommand(direct.pw);
301 rc = 99;
307 return checkExit(new Task.Result(toolBox, this, rc, outputMap));
H A DJavacTask.java282 int rc;
287 rc = runAPI(direct.pw);
293 rc = runCommand(direct.pw);
300 rc = 99;
306 return checkExit(new Task.Result(toolBox, this, rc, outputMap));
H A DJavahTask.java111 int rc;
114 rc = com.sun.tools.javah.Main.run(args.toArray(new String[args.size()]), direct.pw);
120 return checkExit(new Task.Result(toolBox, this, rc, outputMap));
H A DJavapTask.java112 int rc;
115 rc = com.sun.tools.javap.Main.run(args.toArray(new String[args.size()]), direct.pw);
121 return checkExit(new Task.Result(toolBox, this, rc, outputMap));
H A DAbstractTask.java112 throw new TaskError("Task " + name() + " failed: rc=" + result.exitCode);
194 int rc = p.waitFor();
198 return checkExit(new Result(toolBox, t, rc, outputMap));
/openjdk10/langtools/test/tools/jdeps/unsupported/
H A DJDKUnsupportedTest.java77 int rc = com.sun.tools.jdeps.Main.run(args, pw);
82 if (rc != 0)
83 throw new Error("jdeps failed: rc=" + rc);
/openjdk10/langtools/test/tools/jdeps/lib/
H A DJdepsRunner.java42 int rc = jdeps.run(true);
43 if (rc != 0)
44 throw new Error("jdeps failed: rc=" + rc);
68 int rc = JDEPS_TOOL.run(pwout, pwerr, args);
73 return rc;
/openjdk10/langtools/test/tools/jdeps/
H A DAPIDeps.java163 int rc = com.sun.tools.jdeps.Main.run(args, pw);
168 if (rc != 0)
169 throw new Error("jdeps failed: rc=" + rc);
H A DBasic.java163 int rc = com.sun.tools.jdeps.Main.run(args, pw);
168 if (rc != 0)
169 throw new Error("jdeps failed: rc=" + rc);
H A DDotFileTest.java183 int rc = com.sun.tools.jdeps.Main.run(args.toArray(new String[0]), pw);
188 if (rc != 0)
189 throw new Error("jdeps failed: rc=" + rc);
H A DMultiReleaseJar.java227 final int rc; field in class:MultiReleaseJar.Result
230 Result(String cmd, int rc, String out, String err) { argument
232 this.rc = rc;
259 if (r.rc != 0) {
261 throw new Exception("rc=" + r.rc);
269 if (checkrc && r.rc != 0) {
271 throw new Exception("rc=" + r.rc);
[all...]
/openjdk10/langtools/test/tools/javap/typeAnnotations/
H A DTypeCasts.java121 int rc = com.sun.tools.javac.Main.compile(new String[] {"-g", f.getPath() });
122 if (rc != 0)
123 throw new Error("compilation failed. rc=" + rc);
H A DWildcards.java143 int rc = com.sun.tools.javac.Main.compile(new String[] {"-g", f.getPath() });
144 if (rc != 0)
145 throw new Error("compilation failed. rc=" + rc);
H A DNewArray.java106 int rc = com.sun.tools.javac.Main.compile(new String[] {"-g", f.getPath() });
107 if (rc != 0)
108 throw new Error("compilation failed. rc=" + rc);
H A DVisibility.java112 int rc = com.sun.tools.javac.Main.compile(new String[] {"-g", f.getPath() });
113 if (rc != 0)
114 throw new Error("compilation failed. rc=" + rc);

Completed in 272 milliseconds

1234567891011>>