Searched refs:output (Results 126 - 150 of 456) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DCipherCore.java254 * Returns the length in bytes that an output buffer would need to be in
262 * <p>The actual output length of the next <code>update</code> or
268 * @return the required output buffer size (in bytes)
528 byte[] output = null;
531 output = new byte[getOutputSize(inputLen)];
532 int len = update(input, inputOffset, inputLen, output,
534 if (len == output.length) {
535 out = output;
538 System.arraycopy(output, 0, out, 0, len);
553 * result is stored in the <code>output</cod
569 update(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
726 doFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/timestamp/
H A DHttpTimestamper.java109 DataOutputStream output = null;
111 output = new DataOutputStream(connection.getOutputStream());
113 output.write(request, 0, request.length);
114 output.flush();
120 if (output != null) {
121 output.close();
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DIndicReordering.cpp674 IndicReorderingOutput output(outChars, glyphStorage, mpreFixups);
682 output.reset();
686 output.noteStressMark(classTable, chars[markStart], markStart, tagArray1);
691 output.noteVowelModifier(classTable, chars[markStart], markStart, tagArray1);
696 while (output.noteMatra(classTable, chars[matra], matra, tagArray1, !lastInWord) && matra != prev) {
710 output.writeChar(chars[i], i, tagArray1);
717 output.writeChar(C_DOTTED_CIRCLE, prev, tagArray1);
718 output.writeChar(chars[prev], prev, tagArray1);
726 output.writeChar(C_DOTTED_CIRCLE, prev, tagArray1);
729 output
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DXHTMLSerializer.java70 * using the specified output format. If <tt>format</tt> is null,
71 * will use a default output format.
74 * @param format The output format to use, null for the default
84 * Constructs a new serializer that writes to the specified output
85 * stream using the specified output format. If <tt>format</tt>
86 * is null, will use a default output format.
88 * @param output The output stream to use
89 * @param format The output format to use, null for the default
91 public XHTMLSerializer( OutputStream output, OutputForma argument
[all...]
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DValueBaseHolder.java89 * Marshals to <code>output</code> the value in the Holder.
91 * @param output the OutputStream which will contain the CDR formatted data
93 public void _write(OutputStream output) { argument
94 ((org.omg.CORBA_2_3.portable.OutputStream)output).write_value(value);
/openjdk7/jdk/test/sun/net/idn/
H A DTestStringPrep.java141 fail("Delimiter @ disappeared from the output!");
167 String expectedDest = testCase.output;
172 fail("Did not get the expected output for nfs4_cis_prep at index " + i);
199 fail("Did not get expected output. Expected: "+ prettify(src)+
212 fail("Did not get expected output. Expected: "+ prettify(src)+
224 fail("Did not get expected output. Expected: "+ prettify(src)+
241 StringBuffer output = namePrep.prepare(iter, testCase.flags);
242 if(testCase.output !=null && output!=null && !testCase.output
[all...]
/openjdk7/jdk/test/sun/nio/cs/
H A DJISAutoDetectTest.java49 CharBuffer output = CharBuffer.allocate(128);
59 output.clear();
62 output,
70 output,
79 output.flip();
81 if (output.limit() != expectedOutput.limit())
84 for (int x = 0; x < output.limit(); x++) {
85 if (expectedOutput.charAt(x) != output.charAt(x))
/openjdk7/jdk/src/share/classes/sun/io/
H A DCharToByteDBCS_EBCDIC.java58 public int flush(byte [] output, int outStart, int outEnd) argument
72 output[outStart] = SI;
84 byte[] output, int outOff, int outEnd)
171 //Set the output buffer into the correct state
177 output[byteOff++] = SI;
184 output[byteOff++] = SO;
197 output[byteOff++] = outputByte[1];
199 output[byteOff++] = outputByte[0];
200 output[byteOff++] = outputByte[1];
83 convert(char[] input, int inOff, int inEnd, byte[] output, int outOff, int outEnd) argument
H A DCharToByteISO8859_1.java37 public int flush(byte[] output, int outStart, int outEnd) argument
53 byte[] output, int outOff, int outEnd)
61 byte[] outputByte; // Output byte written to output
64 int outputSize; // Size of output
80 output[byteOff++] = subBytes[i];
158 // If we don't have room for the output, throw an exception
162 // Put the byte in the output buffer
164 output[byteOff++] = outputByte[i];
169 // Return the length written to the output buffer
52 convert(char[] input, int inOff, int inEnd, byte[] output, int outOff, int outEnd) argument
H A DByteToCharDBCS_ASCII.java51 public int flush(char [] output, int outStart, int outEnd) argument
69 char[] output, int outOff, int outEnd)
118 output[charOff++] = outputChar;
68 convert(byte[] input, int inOff, int inEnd, char[] output, int outOff, int outEnd) argument
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_CFGPrinter.hpp43 static CFGPrinterOutput* output() { assert(_output != NULL, ""); return _output; } function in class:CFGPrinter
/openjdk7/hotspot/src/share/vm/services/
H A DnmtDCmd.hpp49 NMTDCmd(outputStream* output, bool heap);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/
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
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
/openjdk7/jaxws/src/share/jaxws_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
/openjdk7/langtools/test/tools/javap/
H A DT6622232.java40 String output = javap(classFile);
43 verifyNot(output,
84 void verifyNot(String output, String... unexpects) { argument
86 if (output.matches(unexpect))
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DAction.java37 * <code>input</code>, <code>output</code>, and
43 * <code>output</code> and <code>fault</code> messages of the WSDL <code>operation</code>
49 * for <code>input</code> and <code>output</code> messages.
56 * output="http://example.com/outputAction")</b>
71 * &lt;output message="tns:AddNumbersOutput" name="bar"
82 * WSDL <code>output</code> message are computed using the algorithm in the JAX-WS specification.
102 * &lt;output message="tns:AddNumbersOutput" name="bar"
111 * <code>output</code> message only. In this case, <code>wsam:Action</code> value for the
135 * Explicit value of the WS-Addressing <code>Action</code> message addressing property for the <code>output</code>
138 String output() defaul
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/transforms/implementations/
H A DTransformC14N.java69 XMLSignatureInput output=new XMLSignatureInput(result);
71 output.setOutputStream(os);
73 return output;
H A DTransformC14N11.java59 XMLSignatureInput output = new XMLSignatureInput(result);
61 output.setOutputStream(os);
63 return output;
H A DTransformC14N11_WithComments.java61 XMLSignatureInput output = new XMLSignatureInput(result);
63 output.setOutputStream(os);
65 return output;
H A DTransformC14NWithComments.java67 XMLSignatureInput output=new XMLSignatureInput(result);
69 output.setOutputStream(os);
71 return output;
/openjdk7/jdk/test/java/awt/FileDialog/FileNameOverrideTest/
H A DFileNameOverrideTest.java65 String output = fd.getFile();
66 if (fileName.equals(output)) {
69 Sysout.println("TEST FAILED (output file - " + output + ")");
/openjdk7/jdk/test/java/awt/FileDialog/SaveFileNameOverrideTest/
H A DSaveFileNameOverrideTest.java57 String output = fd.getFile();
58 if ("input".equals(output)) {
61 Sysout.println("TEST FAILED (output file - " + output + ")");
/openjdk7/jdk/test/java/beans/PropertyChangeSupport/
H A DTest4092905.java60 ObjectOutputStream output = new ObjectOutputStream(baos);
61 output.writeObject(pcs);
62 output.flush();
/openjdk7/jdk/test/java/beans/VetoableChangeSupport/
H A DTest4092906.java61 ObjectOutputStream output = new ObjectOutputStream(baos);
62 output.writeObject(pcs);
63 output.flush();

Completed in 294 milliseconds

1234567891011>>