Searched defs:output (Results 1 - 25 of 281) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_CFGPrinter.hpp43 static CFGPrinterOutput* output() { assert(_output != NULL, ""); return _output; } function in class:CFGPrinter
/openjdk7/jdk/test/java/lang/instrument/PremainClass/
H A DCreateFiles.java36 static void output(FileOutputStream fos, String s) throws Exception { method in class:CreateFiles
49 output(fos, "import java.lang.instrument.Instrumentation;" );
50 output(fos, "public class " +name + " {" );
51 output(fos, " public static void premain(String ops, Instrumentation ins) {" );
52 output(fos, " System.out.println(\"premain running\"); ");
53 output(fos, " }");
54 output(fos, "}");
59 output(fos, "Manifest-Version: 1.0");
60 output(fos, "Premain-Class: " + name);
61 output(fo
[all...]
/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/xml/internal/bind/v2/runtime/output/
H A DPcdata.java26 package com.sun.xml.internal.bind.v2.runtime.output;
57 public abstract void writeTo(UTF8XmlOutput output) throws IOException; argument
H A Dpackage-info.java29 package com.sun.xml.internal.bind.v2.runtime.output;
/openjdk7/hotspot/src/share/vm/services/
H A DnmtDCmd.cpp30 NMTDCmd::NMTDCmd(outputStream* output, argument
31 bool heap): DCmdWithParser(output, heap),
86 output()->print_cr("Incorrect scale value: %s", scale_value);
104 output()->print_cr("At most one of the following option can be specified: " \
113 output()->print_cr("No command to execute");
122 output()->print_cr("debug command is NOT thread-safe, may cause crash");
123 MemTracker::print_tracker_stats(output());
131 output()->print_cr(MemTracker::reason());
136 BaselineTTYOutputer outputer(output());
139 BaselineTTYOutputer outputer(output());
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/
H A DResultFactory.java26 package com.sun.xml.internal.txw2.output;
51 * @param result the Result that will receive output from the XmlSerializer
52 * @return an implementation of XmlSerializer that will produce output on the supplied Result
/openjdk7/jdk/test/java/nio/charset/coders/
H A DSurrogates.java38 static byte[] output; field in class:Surrogates
54 output = bos.toByteArray();
74 if (rl != output.length)
76 + rl + ", expected " + output.length);
77 for (int i = 0; i < output.length; i++)
78 if (result[i] != output[i])
/openjdk7/langtools/test/tools/javap/
H A DT6622216.java40 String output = javap(classFile);
41 verify(output);
72 void verify(String output) { argument
73 System.out.println(output);
74 if (output.indexOf("InnerClasses") == -1)
75 throw new Error("InnerClasses not found in output");
/openjdk7/jdk/test/sun/security/krb5/canonicalize/
H A DTest.java57 static void check(String input, String output) throws Exception { argument
58 System.out.println(input + " -> " + output);
61 if (!pn.getNameStrings()[1].equals(output)) {
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/output/
H A DOutputBuffer.java24 package com.sun.org.apache.xalan.internal.xsltc.runtime.output;
/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
H A DSerializerFactoryImpl.java81 public Serializer makeSerializer( OutputStream output, argument
88 serializer.setOutputByteStream( output );
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 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);

Completed in 336 milliseconds

1234567891011>>