| /openjdk7/hotspot/src/share/vm/c1/ |
| H A D | c1_CFGPrinter.hpp | 43 static CFGPrinterOutput* output() { assert(_output != NULL, ""); return _output; } function in class:CFGPrinter
|
| /openjdk7/jdk/test/java/lang/instrument/PremainClass/ |
| H A D | CreateFiles.java | 36 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 D | DnsFallback.java | 51 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 D | Pcdata.java | 26 package com.sun.xml.internal.bind.v2.runtime.output; 57 public abstract void writeTo(UTF8XmlOutput output) throws IOException; argument
|
| H A D | package-info.java | 29 package com.sun.xml.internal.bind.v2.runtime.output;
|
| /openjdk7/hotspot/src/share/vm/services/ |
| H A D | nmtDCmd.cpp | 30 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 D | ResultFactory.java | 26 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 D | Surrogates.java | 38 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 D | T6622216.java | 40 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 D | Test.java | 57 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 D | OutputBuffer.java | 24 package com.sun.org.apache.xalan.internal.xsltc.runtime.output;
|
| /openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/ |
| H A D | Serializer.java | 52 * 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 D | SerializerFactoryImpl.java | 81 public Serializer makeSerializer( OutputStream output, argument 88 serializer.setOutputByteStream( output );
|
| H A D | XHTMLSerializer.java | 70 * 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 D | AnyHolder.java | 88 * 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 D | BooleanHolder.java | 91 * <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 D | ByteHolder.java | 91 * 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 D | CharHolder.java | 91 * 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 D | DoubleHolder.java | 93 * @param output the <code>OutputStream</code> to write into. 95 public void _write(OutputStream output) { argument 96 output.write_double(value);
|
| H A D | FixedHolder.java | 82 * @param output the <code>OutputStream</code> to write into. 84 public void _write(OutputStream output) { argument 85 output.write_fixed(value);
|
| H A D | FloatHolder.java | 89 * 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 D | IntHolder.java | 92 * <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 D | LongHolder.java | 90 * 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 D | ObjectHolder.java | 92 * 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 D | PrincipalHolder.java | 85 public void _write(OutputStream output) { argument 86 output.write_Principal(value);
|