Searched refs:output (Results 226 - 250 of 456) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DTransformHelper.java94 public native void Transform(MaskBlit output, argument
125 public void Transform(MaskBlit output, argument
134 target.Transform(output, src, dst, comp, clip, itx, txtype,
/openjdk7/hotspot/src/share/vm/compiler/
H A Ddisassembler.cpp191 decode_env(CodeBlob* code, outputStream* output, CodeStrings c = CodeStrings());
197 output()->bol();
203 outputStream* st = output();
226 outputStream* output() { return _output; } function in class:decode_env
233 decode_env::decode_env(CodeBlob* code, outputStream* output, CodeStrings c) { argument
235 _output = output ? output : tty;
241 // by default, output pc but not bytes:
260 tty->print_cr(" hsdis-print-raw test plugin by requesting raw output");
263 tty->print_cr(" hsdis-print-bytes turn on instruction byte output");
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DEncodingInfo.java77 * an output stream.
83 public Writer getWriter(OutputStream output) argument
87 return new OutputStreamWriter(output, javaName);
91 return new OutputStreamWriter(output, "UTF8");
92 return new OutputStreamWriter(output, javaName);
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DColorModel.java1715 float input, output;
1724 output = input * 12.92f;
1726 output = 1.055f * ((float) Math.pow(input, (1.0 / 2.4)))
1729 l8Tos8[i] = (byte) Math.round(output * 255.0f);
1738 float input, output;
1743 output = input / 12.92f;
1745 output = (float) Math.pow((input + 0.055f) / 1.055f, 2.4);
1747 s8Tol8[i] = (byte) Math.round(output * 255.0f);
1756 float input, output;
1761 output
[all...]
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DExemptionMechanism.java269 * Returns the length in bytes that an output buffer would need to be in
274 * <p>The actual output length of the next
280 * @return the required output buffer size (in bytes)
411 * the <code>output</code> buffer.
413 * <p>If the <code>output</code> buffer is too small to hold the result,
415 * call with a larger output buffer. Use
417 * the output buffer should be.
419 * @param output the buffer for the result
421 * @return the number of bytes stored in <code>output</code>
425 * @exception ShortBufferException if the given output buffe
430 genExemptionBlob(byte[] output) argument
466 genExemptionBlob(byte[] output, int outputOffset) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DDnsContextFactory.java223 * @param oneIsEnough return output once there exists one ok
231 List output = new ArrayList();
247 output.add(platformServer);
249 return output;
256 return output;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DDOMOutput.java26 package com.sun.xml.internal.bind.v2.runtime.output;
H A DInPlaceDOMOutput.java26 package com.sun.xml.internal.bind.v2.runtime.output;
H A DStAXExStreamWriterOutput.java26 package com.sun.xml.internal.bind.v2.runtime.output;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/annotation/
H A DXmlElement.java30 import com.sun.xml.internal.txw2.output.XmlSerializer;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/
H A DDumbEscapeHandler.java26 package com.sun.xml.internal.txw2.output;
H A DTXWSerializer.java26 package com.sun.xml.internal.txw2.output;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/
H A DW3CAddressingWSDLGeneratorExtension.java104 public void addOperationOutputExtension(TypedXmlWriter output, JavaMethod method) { argument
109 if (a != null && !a.output().equals("")) {
110 addAttribute(output, a.output());
H A DWSDLGeneratorExtensionFacade.java114 public void addOperationOutputExtension(TypedXmlWriter output, JavaMethod method) { argument
116 e.addOperationOutputExtension(output, method);
124 public void addBindingOperationOutputExtension(TypedXmlWriter output, JavaMethod method) { argument
126 e.addBindingOperationOutputExtension(output, method);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/document/
H A DOperation.java59 public ParamType output(); method in interface:Operation
/openjdk7/jdk/test/com/sun/jdi/
H A DRedefineMulti.sh104 c. when breakpoint is hit, type continue. You should see output
108 f. type continue. You should see output "After update"
111 i. type continue. The output is shown as "After update"
113 j. to see "abcde" output, users will have to pop the stack, and
/openjdk7/jdk/test/java/net/URL/
H A DPerConnectionProxy.java168 * by continuously copying bytes from the input socket onto the output
175 OutputStream output; field in class:PerConnectionProxy.ProxyServer.ProxyTunnel
182 output = sockOut.getOutputStream();
193 output.write(buf, 0, bytesRead);
194 output.flush();
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/InputRecord/
H A DProxyTunnelServer.java135 * by continuously copying bytes from the input socket onto the output
142 OutputStream output; field in class:ProxyTunnelServer.ProxyTunnel
150 output = sockOut.getOutputStream();
171 output.write(buf, 0, bytesRead);
172 output.flush();
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/www/protocol/https/HttpsClient/
H A DProxyTunnelServer.java198 * by continuously copying bytes from the input socket onto the output
205 OutputStream output; field in class:ProxyTunnelServer.ProxyTunnel
212 output = sockOut.getOutputStream();
223 output.write(buf, 0, bytesRead);
224 output.flush();
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/
H A DProxyTunnelServer.java200 * by continuously copying bytes from the input socket onto the output
207 OutputStream output; field in class:ProxyTunnelServer.ProxyTunnel
214 output = sockOut.getOutputStream();
225 output.write(buf, 0, bytesRead);
226 output.flush();
/openjdk7/jdk/test/sun/tools/jhat/
H A DHatRun.java38 * Helper class to direct process output to a StringBuffer
45 /* Create MyInputStream that saves all output to a StringBuffer */
63 /* Check to see if a pattern is inside the output. */
69 /* Runs as a separate thread capturing all output in a StringBuffer */
95 private MyInputStream output; field in class:HatRun
135 /* Save process output in StringBuffers */
136 output = new MyInputStream("Input Stream", p.getInputStream());
146 output.dump(System.out);
229 /* Does the pattern appear in the output of this process */
232 return output
[all...]
/openjdk7/jdk/test/tools/launcher/
H A DToolsOpts.java132 "failed: output should not contain option " + pat);
163 //Build a cmd string for output in results reporting.
190 String[] output = tr.testOutput.toArray(new String[tr.testOutput.size()]);
202 if (output[i].compareTo(arg[i]) != 0) {
205 output[i] + " != " + arg[i]);
207 pass("check " + output[i] + " == " + arg[i]);
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/iio/
H A DOutputTests.java100 outputRoot = new Group(iioRoot, "output", "Output Benchmarks");
161 Object output; field in class:OutputTests.Context
184 output = outputfile;
196 ios = new FileImageOutputStream((File)output);
208 FileOutputStream fos = new FileOutputStream((File)output);
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DProxyTunnelServer.java200 * by continuously copying bytes from the input socket onto the output
207 OutputStream output; field in class:ProxyTunnelServer.ProxyTunnel
214 output = sockOut.getOutputStream();
225 output.write(buf, 0, bytesRead);
226 output.flush();
/openjdk7/hotspot/test/runtime/NMT/
H A DSummarySanityCheck.java27 * @summary Sanity check the output of NMT
56 OutputAnalyzer output = new OutputAnalyzer(pb.start());
58 jcmdout = output.getOutput();
63 throwTestException("Failed to parse jcmd output");

Completed in 103 milliseconds

1234567891011>>