Searched refs:output (Results 76 - 100 of 456) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/com/sun/imageio/spi/
H A DRAFImageOutputStreamSpi.java51 public ImageOutputStream createOutputStreamInstance(Object output, argument
54 if (output instanceof RandomAccessFile) {
56 return new FileImageOutputStream((RandomAccessFile)output);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DQEncoderStream.java52 * @param out the output stream
68 * Encodes the specified <code>byte</code> to this output stream.
75 output('_', false);
78 output(c, true);
80 output(c, false);
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/
H A DCrc32CksumType.java81 byte[] output = new byte[4];
83 output[i] = (byte)((input >>> (i * 8)) & 0xff);
85 return output;
/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharSingleByte.java46 public int flush(char[] output, int outStart, int outEnd) { argument
59 * @return the number of characters written to output.
63 * @param output character array to receive conversion result
71 * @throw BufferFullException whenever the output buffer is full
76 char[] output, int outOff, int outEnd)
95 // Lookup the output character
98 // Is the output unmappable?
108 // If we don't have room for the output, throw an exception
112 // Put the character in the output buffer
113 output[charOf
75 convert(byte[] input, int inOff, int inEnd, char[] output, int outOff, int outEnd) argument
[all...]
H A DCharToByteISCII91.java89 public int convert(char[] input, int inStart, int inEnd, byte[] output, int outStart, int outEnd) throws MalformedInputException, UnknownCharacterException, ConversionBufferFullException { argument
105 output[byteOff++] = (byte) inputChar;
149 System.arraycopy(subBytes, 0, output, byteOff, subBytes.length);
160 output[byteOff++] = directMapTable[index++];
165 output[byteOff++] = directMapTable[index];
177 public int flush( byte[] output, int outStart, int outEnd ) argument
/openjdk7/jdk/test/sun/security/krb5/
H A DDnsFallback.java51 static void check(String realm, String fallback, boolean output) throws Exception { argument
65 System.out.println("Testing " + realm + ", " + fallback + ", " + output);
66 if (Config.getInstance().useDNS_Realm() != output) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DConsoleErrorReporter.java39 private PrintStream output; field in class:ConsoleErrorReporter
43 this.output = stream;
47 this.output = new PrintStream(outputStream);
92 output.println(message);
93 output.println(getLocationString(e));
94 output.println();
/openjdk7/jdk/test/java/lang/instrument/
H A DRedefineMethodAddInvoke.sh68 -classpath "${TESTCLASSES}" RedefineMethodAddInvokeApp > output.log 2>&1
69 cat output.log
72 grep "$MESG" output.log
75 echo "FAIL: found '$MESG' in the test output"
78 echo "PASS: did NOT find '$MESG' in the test output"
/openjdk7/langtools/test/tools/javap/
H A DT6729471.java28 * @summary javap does not output inner interfaces of an interface
89 String output = javap(className);
91 if (output.indexOf(expect)< 0)
110 String output = sw.toString();
112 System.out.println(output);
115 if (output.indexOf("Error:") != -1)
117 return output;
/openjdk7/hotspot/test/runtime/CommandLine/
H A DCompilerConfigFileWarning.java47 OutputAnalyzer output = new OutputAnalyzer(pb.start());
48 output.shouldContain("warning: .hotspot_compiler file is present but has been ignored. Run with -XX:CompileCommandFile=.hotspot_compiler to load the file.");
H A DConfigFileWarning.java47 OutputAnalyzer output = new OutputAnalyzer(pb.start());
48 output.shouldContain("warning: .hotspotrc file is present but has been ignored. Run with -XX:Flags=.hotspotrc to load the file.");
/openjdk7/hotspot/test/runtime/NMT/
H A DJcmdWithNMTDisabled.java58 OutputAnalyzer output = new OutputAnalyzer(pb.start());
61 output.shouldContain("Native memory tracking is not enabled");
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DSerializer.java52 * to serialize the document based on the specified method. If the output
69 * Specifies an output stream to which the document should be
73 public void setOutputByteStream(OutputStream output); argument
81 public void setOutputCharStream( Writer output );
85 * Specifies an output format for this serializer. It the
86 * serializer has already been associated with an output format,
91 * @param format The output format to use
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DAnyHolder.java88 * Marshals to <code>output</code> the value in
91 * @param output the OutputStream which will contain the CDR formatted data.
93 public void _write(OutputStream output) { argument
94 output.write_any(value);
H A DBooleanHolder.java91 * <code>value</code> field to the output stream <code>output</code>.
93 * @param output the OutputStream which will contain the CDR formatted data
95 public void _write(OutputStream output) { argument
96 output.write_boolean(value);
H A DByteHolder.java91 * Marshals to <code>output</code> the value in
94 * @param output the OutputStream which will contain the CDR formatted data.
96 public void _write(OutputStream output) { argument
97 output.write_octet(value);
H A DCharHolder.java91 * Marshals to <code>output</code> the value in
94 * @param output the OutputStream which will contain the CDR formatted data
96 public void _write(OutputStream output) { argument
97 output.write_char(value);
H A DDoubleHolder.java93 * @param output the <code>OutputStream</code> to write into.
95 public void _write(OutputStream output) { argument
96 output.write_double(value);
H A DFixedHolder.java82 * @param output the <code>OutputStream</code> to write into.
84 public void _write(OutputStream output) { argument
85 output.write_fixed(value);
H A DFloatHolder.java89 * Write the float value into an output stream.
91 * @param output the <code>OutputStream</code> to write into.
93 public void _write(OutputStream output) { argument
94 output.write_float(value);
H A DIntHolder.java92 * <code>value</code> field to the output stream <code>output</code>.
94 * @param output the <code>OutputStream</code> object that will contain
97 public void _write(OutputStream output) { argument
98 output.write_long(value);
H A DLongHolder.java90 * Marshals to <code>output</code> the value in the Holder.
92 * @param output the OutputStream which will contain the CDR formatted data
94 public void _write(OutputStream output) { argument
95 output.write_longlong(value);
H A DObjectHolder.java92 * Marshals to <code>output</code> the value in
95 * @param output the OutputStream which will contain the CDR formatted data.
97 public void _write(OutputStream output) { argument
98 output.write_Object(value);
H A DPrincipalHolder.java85 public void _write(OutputStream output) { argument
86 output.write_Principal(value);
H A DShortHolder.java91 * Marshals to <code>output</code> the value in
94 * @param output the OutputStream which will contain the CDR formatted data.
96 public void _write(OutputStream output) { argument
97 output.write_short(value);

Completed in 75 milliseconds

1234567891011>>