Searched defs:out (Results 226 - 250 of 910) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DInvalidTargetObjectTypeException.java181 private void writeObject(ObjectOutputStream out) argument
187 ObjectOutputStream.PutField fields = out.putFields();
190 out.writeFields();
196 out.defaultWriteObject();
H A DXMLParseException.java141 private void writeObject(ObjectOutputStream out) argument
147 ObjectOutputStream.PutField fields = out.putFields();
149 out.writeFields();
155 out.defaultWriteObject();
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAuFileWriter.java85 public int write(AudioInputStream stream, AudioFileFormat.Type fileType, OutputStream out) throws IOException { argument
96 int bytesWritten = writeAuFile(stream, auFileFormat, out);
102 public int write(AudioInputStream stream, AudioFileFormat.Type fileType, File out) throws IOException { argument
108 FileOutputStream fos = new FileOutputStream( out ); // throws IOException
120 RandomAccessFile raf=new RandomAccessFile(out, "rw");
300 private int writeAuFile(InputStream in, AuFileFormat auFileFormat, OutputStream out) throws IOException { argument
311 out.write( buffer, 0, (int)bytesRead );
315 out.write( buffer, 0, (int)maxLength );
321 out.write( buffer, 0, (int)bytesRead );
H A DWaveFloatFileWriter.java89 final OutputStream out; field in class:WaveFloatFileWriter.NoCloseOutputStream
91 NoCloseOutputStream(OutputStream out) { argument
92 this.out = out;
96 out.write(b);
100 out.flush();
104 out.write(b, off, len);
108 out.write(b);
121 public int write(AudioInputStream stream, Type fileType, OutputStream out) argument
127 RIFFWriter writer = new RIFFWriter(new NoCloseOutputStream(out), "WAV
134 write(AudioInputStream stream, Type fileType, File out) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/c14n/implementations/
H A DUtfHelpper.java9 final static void writeByte(final String str,final OutputStream out,Map cache) throws IOException { argument
16 out.write(result);
20 final static void writeCharToUtf8(final char c,final OutputStream out) throws IOException{ argument
22 out.write(c);
27 out.write(0x3f);
39 out.write(write);
50 out.write(write);
51 out.write(0x80 | ((c) & 0x3F));
55 final static void writeStringToUtf8(final String str,final OutputStream out) throws IOException{ argument
62 out
[all...]
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DNMethod.java40 public void print(PrintStream out) { argument
/openjdk7/jdk/make/tools/src/build/tools/dtdbuilder/
H A DDTDBuilder.java82 void save(DataOutputStream out, String className) throws IOException { argument
84 out.writeInt(DTD.FILE_VERSION);
88 out.writeShort((short) (namesVector.size()));
91 out.writeUTF(nm);
94 saveEntities(out);
96 out.writeShort((short) (elements.size()));
98 saveElement(out, (Element)e.nextElement());
150 void saveEntities(DataOutputStream out) throws IOException { argument
159 out.writeShort((short) num);
163 out
175 saveElement(DataOutputStream out, Element elem) argument
260 saveContentModel(DataOutputStream out, ContentModel model) argument
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/
H A DFunctionGenerator.java72 StringWriter out = new StringWriter();
74 out.append(String.format("%3$s[] argCoders = new %3$s[%1$d + %2$s.length];\n", fxn.args.size(), VARARGS_NAME, Coder.class.getCanonicalName()));
77 out.append(String.format("argCoders[%1$d] = %2$s;\n", i, fxn.args.get(0).type.getJType().getCoderDescriptor().getCoderInstanceName()));
80 out.append(String.format("for(int i = %1$d; i < (%1$d + %2$s.length); i++)\n", fxn.args.size(), VARARGS_NAME));
81 out.append(String.format("\targCoders[i] = %1$s.getCoderAtRuntime(%2$s[i - %3$s]);\n", Coder.class.getCanonicalName(), VARARGS_NAME, fxn.args.size()));
84 out.append("final " + type.getCanonicalName() + " " + identifier + " = new " + type.getCanonicalName() + "(" + firstArg(fxn) + ", \"" + fxn.name + "\", "
87 return out.toString();
92 public static void writeOutFunction(final PrintStream out, final Class<? extends Invoke> type, final Function fxn, final String initWithObj) { argument
97 out.print(createFieldCache(type, fxn));
98 out
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/classes/
H A DGeneratedClassFile.java50 final PrintStream out = open(parentDir);
51 out.println("package " + pkg + ";");
52 out.println();
53 out.print("public " + (isFinal() ? "final" : "") + " class " + className);
54 if(genericArgs != null) out.print("<" + genericArgs + ">");
55 if (superClass != null) out.print(" extends " + superClass);
56 out.println(" {");
57 writeBeginning(out);
58 writeBody(out);
59 writeEnd(out);
65 writeBeginning(final PrintStream out) argument
69 writeBody(final PrintStream out) argument
73 writeEnd(final PrintStream out) argument
[all...]
H A DOutputFile.java46 public void close(final PrintStream out) { argument
47 out.close();
H A DRootJObjCClass.java59 @Override public void writeBeginning(final PrintStream out) { argument
60 out.print(new JLField("private static", JOBJC_CLASSNAME, "instance"));
61 out.print(new JLField("private final", JObjCRuntime.class.getName(), "runtime"));
67 out.print(getInstR);
71 out.print(getInst);
77 out.print(ctor);
80 @Override public void writeBody(final PrintStream out) { argument
82 out.println(JavaLang.makeSingleton("_" + f.name, f.name, f.pkg + "." + f.name + "Framework", "runtime"));
H A DStructClassFile.java51 @Override public void writeBeginning(final PrintStream out) { argument
52 out.println();
53 out.println("\tpublic static int SIZEOF = " + JObjCRuntime.class.getName() + ".IS64 ? "
55 out.println();
56 out.format("\tpublic final static %1$s getStructCoder(){ return coder; }\n", StructCoder.class.getCanonicalName());
57 out.format("\t@Override public final %1$s getCoder(){ return coder; }\n", StructCoder.class.getCanonicalName());
58 out.format("\tprivate final static %1$s coder = new %1$s(SIZEOF%2$s%3$s){\n", StructCoder.class.getCanonicalName(),
64 out.format("\t\t@Override protected %1$s newInstance(%2$s runtime){ return new %1$s(runtime); }\n",
67 out.println("\t};");
68 out
78 writeBody(final PrintStream out) argument
87 writeField(final Struct.Field field, final PrintStream out) argument
112 writeStructField(final Struct.Field field, final PrintStream out) argument
145 writeEnd(final PrintStream out) argument
[all...]
/openjdk7/jdk/src/share/back/
H A DClassTypeImpl.c32 superclass(PacketInputStream *in, PacketOutputStream *out) argument
49 (void)outStream_writeObjectRef(env, out, superclass);
119 setValues(PacketInputStream *in, PacketOutputStream *out) argument
173 invokeStatic(PacketInputStream *in, PacketOutputStream *out) argument
175 return sharedInvoke(in, out);
/openjdk7/hotspot/src/share/vm/utilities/
H A Devents.cpp61 // For each registered event logger, print out the current contents of
63 void Events::print_all(outputStream* out) { argument
66 log->print_log_on(out);
/openjdk7/hotspot/test/compiler/6832293/
H A DTest.java75 System.exit(run(args, System.out) + 95/*STATUS_TEMP*/);
80 static void errorAlert(PrintStream out, int errorLevel) { argument
81 out.println("Test: failure #" + errorLevel);
87 public static int run(String args[],PrintStream out) { argument
97 errorAlert(out, 2);
99 errorAlert(out, 3);
101 errorAlert(out, 4);
106 errorAlert(out, 5);
108 errorAlert(out, 6);
110 errorAlert(out,
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/writer/
H A DSignatureWriter.java56 public static void write( Outline model, Writer out )
59 new SignatureWriter(model,out).dump();
62 private SignatureWriter( Outline model, Writer out ) {
63 this.out = out;
75 private final Writer out; field in class:SignatureWriter
79 out.write(" ");
83 out.write(s);
84 out.write('\n');
101 out
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/tools/
H A DTransformInputOutput.java53 OutputStream out = null;
56 out = new BufferedOutputStream(System.out);
59 out = new BufferedOutputStream(System.out);
62 out = new BufferedOutputStream(new FileOutputStream(args[1]));
67 parse(in, out);
70 abstract public void parse(InputStream in, OutputStream out) throws Exception; argument
74 public void parse(InputStream in, OutputStream out, String workingDirectory) throws Exception { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DQEncoderStream.java52 * @param out the output stream
56 public QEncoderStream(OutputStream out, boolean encodingWord) { argument
57 super(out, Integer.MAX_VALUE); // MAX_VALUE is 2^31, should
103 QEncoderStream encoder = new QEncoderStream(System.out);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DASCIIUtility.java140 public static void copyStream(InputStream is, OutputStream out) throws IOException { argument
146 out.write(buf, 0, len);
/openjdk7/jdk/src/windows/classes/java/io/
H A DFileDescriptor.java105 * known as {@code System.out}.
106 * @see java.lang.System#out
108 public static final FileDescriptor out = standardStream(1); field in class:FileDescriptor
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest5023557.java87 protected Expression instantiate(Object old, Encoder out) { argument
94 protected Expression instantiate(Object old, Encoder out) { argument
H A DTest8013416.java60 protected Expression instantiate(Object oldInstance, Encoder out) { argument
65 protected void initialize(Class<?> type, Object oldInstance, Object newInstance, Encoder out) { argument
66 super.initialize(type, oldInstance, newInstance, out);
71 out.writeStatement(new Statement(oldInstance, "put", args));
/openjdk7/jdk/test/java/io/IOException/
H A DLastErrorString.java108 FileOutputStream out; field in class:LastErrorString.ClosedFOSTest
115 this.out = new FileOutputStream(WRITEABLE_FILE);
116 this.out.close();
205 out.write(10);
210 out.write(new byte[] { 1, 2, 3 });
/openjdk7/jdk/test/java/io/Serializable/auditStreamSubclass/
H A DAuditStreamSubclass.java35 GoodOOS1(OutputStream out) throws IOException { super(out); } argument
39 GoodOOS2(OutputStream out) throws IOException { super(out); } argument
43 BadOOS1(OutputStream out) throws IOException { super(out); } argument
48 BadOOS2(OutputStream out) throws IOException { super(out); } argument
53 BadOOS3(OutputStream out) throws IOException { super(out); } argument
[all...]
/openjdk7/jdk/test/java/io/Serializable/classDescHooks/
H A DClassDescHooks.java52 CustomOutputStream(OutputStream out) throws IOException { argument
53 super(out);

Completed in 116 milliseconds

1234567891011>>