Searched refs:output (Results 401 - 425 of 1016) sorted by relevance

<<11121314151617181920>>

/openjdk10/hotspot/test/testlibrary_tests/
H A DRandomGeneratorTest.java89 protected boolean isOutputExpected(String orig, String output) {
90 return output.equals(orig);
120 protected boolean isOutputExpected(String orig, String output) { argument
121 return !output.equals(orig);
125 * Verifies that the original output meets expectations
126 * depending on the test mode. It compares the output of second execution
128 * @param orig original output
133 String output;
142 output = Utils.fileAsString(name()).trim();
146 if (!isOutputExpected(orig, output)) {
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/serialize/
H A DXHTMLSerializer.java71 * using the specified output format. If <tt>format</tt> is null,
72 * will use a default output format.
75 * @param format The output format to use, null for the default
85 * Constructs a new serializer that writes to the specified output
86 * stream using the specified output format. If <tt>format</tt>
87 * is null, will use a default output format.
89 * @param output The output stream to use
90 * @param format The output format to use, null for the default
92 public XHTMLSerializer( OutputStream output, OutputForma argument
[all...]
H A DEncodingInfo.java72 * an output stream.
78 public Writer getWriter(OutputStream output) argument
82 return new OutputStreamWriter(output, javaName);
86 return new OutputStreamWriter(output, "UTF8");
87 return new OutputStreamWriter(output, javaName);
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/transform/
H A DCR6689809Test.java54 StreamResult output = new StreamResult(buffer);
56 TransformerFactory.newInstance().newTransformer(stylesheet).transform(input, output);
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLOperationImpl.java55 private EditableWSDLOutput output; field in class:WSDLOperationImpl
90 return output;
94 return output == null;
97 public void setOutput(EditableWSDLOutput output) { argument
98 this.output = output;
133 if(output != null)
134 output.freeze(root);
/openjdk10/jdk/test/sun/nio/cs/
H A DJISAutoDetectTest.java50 CharBuffer output = CharBuffer.allocate(128);
60 output.clear();
63 output,
71 output,
80 output.flip();
82 if (output.limit() != expectedOutput.limit())
85 for (int x = 0; x < output.limit(); x++) {
86 if (expectedOutput.charAt(x) != output.charAt(x))
/openjdk10/jdk/test/tools/jar/
H A DInputFilesTest.java87 String output = "META-INF/" + nl +
92 Assert.assertEquals(baos.toByteArray(), output.getBytes());
102 String output = "META-INF/" + nl +
110 Assert.assertEquals(baos.toByteArray(), output.getBytes());
119 String output = "META-INF/" + nl +
123 Assert.assertEquals(baos.toByteArray(), output.getBytes());
133 String output = "META-INF/" + nl +
137 Assert.assertEquals(baos.toByteArray(), output.getBytes());
/openjdk10/langtools/test/tools/javac/modules/
H A DUnexpectedTokenInModuleInfoTest.java54 List<String> output = new JavacTask(tb)
63 if (!output.containsAll(expected)) {
64 throw new Exception("Expected output not found");
H A DServiceProvidedButNotExportedOrUsedTest.java61 List<String> output = new JavacTask(tb)
73 if (!output.containsAll(expected)) {
74 throw new Exception("Expected output not found");
92 List<String> output = new JavacTask(tb)
102 if (!output.containsAll(expected)) {
103 throw new Exception("Expected output not found");
/openjdk10/nashorn/test/script/basic/
H A DJDK-8158467.js42 e.put("output", print);
46 output("hello Runnable");
90 output(ex);
/openjdk10/hotspot/src/share/vm/logging/
H A DlogDiagnosticCommand.hpp36 // The remaining arguments are used to set a log output to log everything
49 LogDiagnosticCommand(outputStream* output, bool heap_allocated);
59 return "Lists current log configuration, enables/disables/configures a log output, or rotates all logs.";
/openjdk10/hotspot/test/gc/metaspace/
H A DTestMetaspaceSizeFlags.java74 OutputAnalyzer output = run(maxMetaspaceSize, metaspaceSize);
75 output.shouldNotMatch("Error occurred during initialization of VM\n.*");
77 String stringMaxMetaspaceSize = output.firstMatch(".* MaxMetaspaceSize .* = (\\d+).*", 1);
78 String stringMetaspaceSize = output.firstMatch(".* MetaspaceSize .* = (\\d+).*", 1);
/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wsdl/document/
H A DWSDLDocumentVisitorBase.java67 public void preVisit(Output output) throws Exception { argument
69 public void postVisit(Output output) throws Exception { argument
87 public void preVisit(BindingOutput output) throws Exception { argument
89 public void postVisit(BindingOutput output) throws Exception { argument
H A DWSDLDocumentVisitor.java51 public void preVisit(Output output) throws Exception; argument
52 public void postVisit(Output output) throws Exception; argument
61 public void preVisit(BindingOutput output) throws Exception; argument
62 public void postVisit(BindingOutput output) throws Exception; argument
/openjdk10/jaxws/src/java.xml.ws/share/classes/javax/xml/ws/
H A DAction.java37 * {@code input}, {@code output}, and
43 * {@code output} and {@code fault} messages of the WSDL {@code operation}
49 * for {@code input} and {@code output} messages.
56 * output="http://example.com/outputAction")</b>
71 * <output message="tns:AddNumbersOutput" name="bar"
83 * WSDL {@code output} message are computed using the algorithm in the JAX-WS specification.
103 * <output message="tns:AddNumbersOutput" name="bar"
112 * {@code output} message only. In this case, {@code wsam:Action} value for the
138 * Explicit value of the WS-Addressing {@code Action} message addressing property for the {@code output}
141 * @return {@code Action} message addressing property for the {@code output} messag
[all...]
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/api/
H A DJ2SJAXBModel.java61 * this object controls the output to which schemas
77 * @param output
81 void generateEpisodeFile(Result output); argument
/openjdk10/jdk/test/com/sun/tools/attach/
H A DPermissionTest.java89 OutputAnalyzer output = ProcessTools.executeTestJvm(args);
90 output.shouldHaveExitValue(0);
101 output = ProcessTools.executeTestJvm(args);
102 output.shouldHaveExitValue(0);
/openjdk10/jdk/test/java/rmi/testlibrary/
H A DRegistryRunner.java86 public static int getRegistryPort(String output) { argument
87 int idxStart = output.indexOf(PORT_LABEL_START);
88 int idxEnd = output.indexOf(PORT_LABEL_END);
93 String portStr = output.substring(idxStart, idxEnd);
135 * RegistryVM.start() will filter the output of registry subprocess,
143 // this output is important for RegistryVM to get the port
/openjdk10/langtools/test/tools/javap/
H A DT6622232.java41 String output = javap(classFile);
44 verifyNot(output,
85 void verifyNot(String output, String... unexpects) { argument
87 if (output.matches(unexpect))
/openjdk10/hotspot/src/share/vm/compiler/
H A Ddisassembler.cpp195 decode_env(CodeBlob* code, outputStream* output, CodeStrings c = CodeStrings());
201 output()->bol();
207 outputStream* st = output();
220 outputStream* output() { return _output; } function in class:decode_env
225 decode_env::decode_env(CodeBlob* code, outputStream* output, CodeStrings c) { argument
227 _output = output ? output : tty;
233 // by default, output pc but not bytes:
252 tty->print_cr(" hsdis-print-raw test plugin by requesting raw output");
255 tty->print_cr(" hsdis-print-bytes turn on instruction byte output");
[all...]
/openjdk10/hotspot/test/runtime/SharedArchiveFile/
H A DSASymbolTableTest.java84 "-showversion"); // so we can see "sharing" in the output
99 OutputAnalyzer output = CDSTestUtils.executeAndLog(tool, "tool");
100 if (output.getStdout().contains("connected too early")) {
104 output.shouldHaveExitValue(0);
/openjdk10/hotspot/test/gc/ergonomics/
H A DTestDynamicNumberOfGCThreads.java47 private static void verifyDynamicNumberOfGCThreads(OutputAnalyzer output) { argument
48 output.shouldHaveExitValue(0); // test should run succesfully
49 output.shouldContain("new_active_workers");
/openjdk10/hotspot/test/gc/g1/
H A DTestEagerReclaimHumongousRegions.java91 OutputAnalyzer output = new OutputAnalyzer(pb.start());
94 Matcher m = p.matcher(output.getStdout());
99 output.shouldHaveExitValue(0);
H A DTestPrintRegionRememberedSetInfo.java28 * @summary Test output of G1PrintRegionRememberedSetInfo
73 OutputAnalyzer output = new OutputAnalyzer(pb.start());
74 output.shouldHaveExitValue(0);
76 String result = output.getStdout();
84 // check that we got region statistics output
86 throw new RuntimeException("Unexpected output from -XX:+PrintRegionLivenessInfo found.");
91 throw new RuntimeException("Should find remembered set information in output.");
H A DTestPLABSizeBounds.java64 OutputAnalyzer output = new OutputAnalyzer(pb.start());
67 output.shouldHaveExitValue(0);
69 output.shouldHaveExitValue(1);

Completed in 225 milliseconds

<<11121314151617181920>>