Searched refs:output (Results 201 - 225 of 456) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/
H A DProgressCodeWriter.java45 public ProgressCodeWriter( CodeWriter output, XJCListener progress, int totalFileCount ) { argument
46 super(output);
/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DClassDump.java51 private final PrintStream output; field in class:ClassDump
59 this.output = System.err;
218 output.println("ERROR BAD INDEX " + comment + " : " + index);
226 output.println("ERROR BAD LENGTH " + comment + " : " + length);
234 output.print(str);
240 output.println(str);
246 output.println();
252 output.print(i);
258 * the output. Temporary until formatting code is stable.
/openjdk7/langtools/test/tools/javac/Paths/
H A DDiagnostics.sh49 output=`"$@" 2>&1`; rc="$?"
50 test -n "$output" && echo "$output"
52 case "$output" in *warning:*) gotwarning="yes";; *) gotwarning="no";; esac
64 output=`"$@" 2>&1`; rc="$?"
65 test -n "$output" && echo "$output"
66 case "$output" in *error:*) goterror="yes";; *) goterror="no";; esac
/openjdk7/langtools/test/tools/javap/
H A DT4880663.java27 * @summary javap could output whitespace between class name and opening brace
76 String output = javap(classFile);
78 if (output.indexOf(expect)< 0)
H A DT6271787.java77 String output = javap(classFile);
79 if (output.indexOf(expect)< 0)
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/signature/
H A DReference.java459 XMLSignatureInput output = null;
462 output = transforms.performTransforms(input,os);
463 this._transformsOutput = output;//new XMLSignatureInput(output.getBytes());
465 //this._transformsOutput.setSourceURI(output.getSourceURI());
467 output = input;
470 return output;
509 XMLSignatureInput output = input;
529 output = t.performTransform(output, nul
[all...]
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/DES/
H A DDesAPITest.java133 byte[] output = null;
137 output = cipher.update(input, 0, -1);
146 output = cipher.update(inbuf);
150 output = cipher.doFinal();
151 System.out.println(len + " " + TestUtility.hexDump(output));
H A DPaddingTest.java163 byte[] output = cipher.update(input, 0, len);
164 cout.write(output, 0, output.length);
179 byte[] output = null;
181 output = cipher.update(input, 0, len);
182 pout.write(output, 0, output.length);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/marshaller/
H A DXMLWriter.java80 * a simple XML document to standard output:</p>
272 * The output destination, or null to use standard output.
294 * @param writer The output destination, or null to use
295 * standard output.
316 * to make sure that no output is lost.</p>
324 * the selected output writer.</p>
336 * Flush the output.
338 * <p>This method flushes the output stream. It is especially useful
340 * been written to output bu
961 private Writer output; field in class:XMLWriter
[all...]
/openjdk7/jdk/test/java/lang/instrument/
H A DManifestTest.sh377 -classpath "${TESTCLASSES}" ManifestTestApp > output.log 2>&1
380 cat output.log
390 grep -s "$MESG" output.log > /dev/null
393 echo "PASS: found '$MESG' in the test output"
395 echo "FAIL: did NOT find '$MESG' in the test output"
400 grep -s "$MESG" output.log > /dev/null
403 echo "PASS: found '$MESG' in the test output"
405 echo "FAIL: did NOT find '$MESG' in the test output"
410 grep -s "$MESG" output.log > /dev/null
413 echo "PASS: found '$MESG' in the test output"
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/
H A DParamTaglet.java76 public void inherit(DocFinder.Input input, DocFinder.Output output) { argument
109 output.holder = input.method;
110 output.holderTag = tags[i];
111 output.inlineTags = input.isFirstSentence ?
169 TagletOutput output = getTagletOutput(false, member, writer,
171 output.appendOutput(getTagletOutput(true, member, writer,
173 return output;
300 * @param writer the taglet writer for output writing.
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/links/
H A DLinkFactory.java39 * Return an empty instance of the link output object.
41 * @return an empty instance of the link output object.
49 * @return the output of the link.
192 LinkOutput output = getOutputInstance();
203 return output;
210 output.append(getLessThanString());
214 output.append(",");
216 output.append(getTypeParameterLink(linkInfo, vars[i]));
219 output.append(getGreaterThanString());
221 return output;
[all...]
/openjdk7/jdk/test/sun/java2d/DirectX/OnScreenRenderingResizeTest/
H A DOnScreenRenderingResizeTest.java80 BufferedImage output =
82 output.setAccelerationPriority(0.0f);
83 Graphics g = output.getGraphics();
85 g.fillRect(0, 0, output.getWidth(), output.getHeight());
152 vig.drawImage(output, 0, 0,
156 frame.getGraphics().drawImage(output, in.left, in.top, null);
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/transforms/implementations/
H A DTransformC14NExclusive.java97 XMLSignatureInput output=new XMLSignatureInput(result);
99 output.setOutputStream(os);
101 return output;
/openjdk7/jdk/src/share/classes/java/awt/
H A DMultipleGradientPaintContext.java448 * 2 colors, filling up the output array.
452 * @param output the output array of colors; must not be null
454 private void interpolate(int rgb1, int rgb2, int[] output) { argument
459 float stepSize = 1.0f / output.length;
476 for (int i = 0; i < output.length; i++) {
477 output[i] =
591 float input, output;
595 output = input / 12.92f;
597 output
[all...]
/openjdk7/jdk/src/windows/classes/sun/security/krb5/internal/tools/
H A DKtab.java309 String[][] output = new String[entries.length+1][showTime?3:2];
311 output[0][column++] = "KVNO";
312 if (showTime) output[0][column++] = "Timestamp";
313 output[0][column++] = "Principal";
316 output[i+1][column++] = entries[i].getKey().
318 if (showTime) output[i+1][column++] =
325 output[i+1][column++] = princ + " (" + e + ":" +
328 output[i+1][column++] = princ;
334 if (output[i][j].length() > width[j]) {
335 width[j] = output[
[all...]
/openjdk7/jdk/test/com/sun/crypto/provider/TLS/
H A DTestPRF12.java49 private static int PREFIX_LENGTH = "prf-output: ".length();
67 byte[] output = null;
110 } else if (line.startsWith("prf-output:")) {
111 output = parse(data);
130 if (Arrays.equals(output, enc) == false) {
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DAbstractTest.java137 ByteArrayOutputStream output = new ByteArrayOutputStream();
138 XMLEncoder encoder = new XMLEncoder(output);
143 return output.toByteArray();
/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharCp33722.java70 public int flush(char[] output, int outStart, int outEnd) argument
95 char[] output, int outOff, int outEnd)
181 output[charOff++] = outputChar;
94 convert(byte[] input, int inOff, int inEnd, char[] output, int outOff, int outEnd) argument
H A DByteToCharCp964.java75 public int flush(char[] output, int outStart, int outEnd) argument
100 char[] output, int outOff, int outEnd)
197 output[charOff++] = outputChar;
99 convert(byte[] input, int inOff, int inEnd, char[] output, int outOff, int outEnd) argument
H A DByteToCharDBCS_EBCDIC.java60 public int flush(char [] output, int outStart, int outEnd) argument
78 char[] output, int outOff, int outEnd)
178 output[charOff++] = outputChar;
77 convert(byte[] input, int inOff, int inEnd, char[] output, int outOff, int outEnd) argument
H A DByteToCharEUC_JP.java45 public int flush(char[] output, int outStart, int outEnd) argument
98 * @return the characters written to output.
102 * @param output character array to receive conversion result
109 char[] output, int outOff, int outEnd)
185 output[charOff++] = outputChar;
108 convert(byte[] input, int inOff, int inEnd, char[] output, int outOff, int outEnd) argument
H A DByteToCharEUC_JP_Solaris.java57 public int flush(char[] output, int outStart, int outEnd) argument
115 * @return the characters written to output.
119 * @param output character array to receive conversion result
126 char[] output, int outOff, int outEnd)
202 output[charOff++] = outputChar;
125 convert(byte[] input, int inOff, int inEnd, char[] output, int outOff, int outEnd) argument
H A DByteToCharEUC_TW.java51 public int flush(char[] output, int outStart, int outEnd) argument
75 char[] output, int outOff, int outEnd)
163 output[charOff++] = outputChar[0];
74 convert(byte[] input, int inOff, int inEnd, char[] output, int outOff, int outEnd) argument
H A DCharToByteEUC.java47 public int flush(byte [] output, int outStart, int outEnd) argument
65 byte[] output, int outOff, int outEnd)
194 output[byteOff++] = outputByte[i];
64 convert(char[] input, int inOff, int inEnd, byte[] output, int outOff, int outEnd) argument

Completed in 124 milliseconds

1234567891011>>