Searched defs:out (Results 101 - 125 of 910) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/util/prefs/
H A DPreferenceChangeEvent.java108 private void writeObject(java.io.ObjectOutputStream out) argument
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DCheckedOutputStream.java46 * @param out the output stream
49 public CheckedOutputStream(OutputStream out, Checksum cksum) { argument
50 super(out);
60 out.write(b);
73 out.write(b, off, len);
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DCodingMethod.java39 public void writeArrayTo(OutputStream out, int[] a, int start, int end) throws IOException; argument
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftCubicResampler.java39 float[] startpitch, float pitchstep, float[] out, int[] out_offset,
59 //out[ox++] = (a0 * fix + a1) * fix2 + (a2 * fix + a3);
60 out[ox++] = ((a0 * fix + a1) * fix + a2) * fix + a3;
76 //out[ox++] = (a0 * fix + a1) * fix2 + (a2 * fix + a3);
77 out[ox++] = ((a0 * fix + a1) * fix + a2) * fix + a3;
38 interpolate(float[] in, float[] in_offset, float in_end, float[] startpitch, float pitchstep, float[] out, int[] out_offset, int out_end) argument
H A DSoftLinearResampler.java39 float[] startpitch, float pitchstep, float[] out, int[] out_offset,
52 out[ox++] = i + (in[iix + 1] - i) * fix;
60 out[ox++] = i + (in[iix + 1] - i) * fix;
38 interpolate(float[] in, float[] in_offset, float in_end, float[] startpitch, float pitchstep, float[] out, int[] out_offset, int out_end) argument
H A DSoftLinearResampler2.java41 float[] startpitch, float pitchstep, float[] out, int[] out_offset,
82 out[ox++] = i + (in[iix + 1] - i) * fix;
96 out[ox++] = i + (in[iix + 1] - i) * fix;
40 interpolate(float[] in, float[] in_offset, float in_end, float[] startpitch, float pitchstep, float[] out, int[] out_offset, int out_end) argument
H A DSoftPointResampler.java39 float[] startpitch, float pitchstep, float[] out, int[] out_offset,
48 out[ox++] = in[(int) ix];
53 out[ox++] = in[(int) ix];
38 interpolate(float[] in, float[] in_offset, float in_end, float[] startpitch, float pitchstep, float[] out, int[] out_offset, int out_end) argument
/openjdk7/jdk/src/share/classes/com/sun/tools/example/trace/
H A DStreamRedirectThread.java48 private final Writer out; field in class:StreamRedirectThread
56 * @param out Stream to copy to
58 StreamRedirectThread(String name, InputStream in, OutputStream out) { argument
61 this.out = new OutputStreamWriter(out);
74 out.write(cbuf, 0, count);
76 out.flush();
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/server/
H A DHttpReader.java64 private PrintWriter out; field in class:HttpReader
78 out = new PrintWriter(new BufferedWriter(
81 out.println("HTTP/1.0 200 OK");
82 out.println("Cache-Control: no-cache");
83 out.println("Pragma: no-cache");
84 out.println();
192 handler.setOutput(out);
201 if (out != null) {
202 out.close();
218 out
[all...]
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DLogCompilation.java40 System.out.println("Usage: LogCompilation [ -v ] [ -c ] [ -s ] [ -e | -n ] file1 ...");
41 System.out.println(" -c: clean up malformed 1.5 xml");
42 System.out.println(" -i: print inlining decisions");
43 System.out.println(" -S: print compilation statistics");
44 System.out.println(" -s: sort events by start time");
45 System.out.println(" -e: sort events by elapsed time");
46 System.out.println(" -n: sort events by name and start");
91 printStatistics(events, System.out);
97 comp.print(System.out, true);
99 c.print(System.out);
107 printStatistics(ArrayList<LogEvent> events, PrintStream out) argument
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/classes/
H A DCFTypeClassFile.java40 @Override public void writeBeginning(PrintStream out){ argument
41 out.println("\tpublic " + className + "(" + Pointer.class.getName() + "<?> ptr){");
42 out.println("\t\tsuper(ptr);");
43 out.println("\t}");
44 out.println("");
45 out.println("\tpublic " + className + "(long ptr){");
46 out.println("\t\tsuper(ptr);");
47 out.println("\t}");
50 @Override public void writeBody(PrintStream out){ argument
52 out
[all...]
H A DCategoryClassClassFile.java46 @Override public void writeBeginning(final PrintStream out) { argument
47 out.format(
54 @Override public void writeBody(final PrintStream out) { argument
58 FunctionGenerator.writeOutFunction(out, MsgSend.class, method, "this");
60 System.out.format("Duplicate method: %1$s %2$s -%3$s\n", clazz.parent.name, className, method.name);
H A DCopiedFile.java40 final PrintStream out = open(parentDir);
43 copy(in, out);
44 close(out);
48 private static void copy(final InputStream in, final PrintStream out) throws IOException { argument
51 out.write(bit);
H A DFrameworkClassFile.java63 @Override public void writeBeginning(final PrintStream out) { argument
67 out.println(new Utils.Substituter(
74 @Override public void writeBody(final PrintStream out) { argument
76 out.println("\tpublic " + struct.name + " make" + struct.name + "(){");
77 out.println("\t\treturn new " + struct.name + "(getRuntime());");
78 out.println("\t}");
79 out.println("\tpublic " + struct.name + " make" + struct.name + "(com.apple.jobjc.NativeBuffer base){");
80 out.println("\t\treturn new " + struct.name + "(getRuntime(), base);");
81 out.println("\t}");
86 out
[all...]
H A DJObjCClassClassFile.java43 @Override public void writeBeginning(final PrintStream out) { argument
44 out.format(
49 out.format(
54 out.format(
61 @Override public void writeBody(final PrintStream out) { argument
65 FunctionGenerator.writeOutFunction(out, MsgSend.class, method, "this");
67 System.out.format("Duplicate method: %1$s %2$s -%3$s\n", clazz.parent.name, className, method.name);
H A DJObjCClassFile.java53 @Override public void writeBeginning(final PrintStream out) { argument
54 out.format("\tpublic %1$s(final long objPtr, final %2$s runtime) {\n" +
59 out.format("\tpublic %1$s(final %1$s obj, final %2$s runtime) {\n" +
66 out.format("\t@Override\n"+
73 @Override public void writeBody(final PrintStream out) { argument
77 FunctionGenerator.writeOutFunction(out, MsgSend.class, method, "this");
79 System.out.format("Duplicate method: %1$s %2$s -%3$s\n", clazz.parent.name, className, method.name);
H A DMixedPrimitiveCoderClassFile.java46 public void writeBody(final PrintStream out) { argument
48 out.println("\tpublic static final " + PrimitiveCoder.class.getCanonicalName() + " " + desc.getMixedName() + " = " + desc.getDefinition() + ";");
/openjdk7/jdk/src/share/back/
H A DClassLoaderReferenceImpl.c32 visibleClasses(PacketInputStream *in, PacketOutputStream *out) argument
51 outStream_setError(out, map2jdwpError(error));
53 (void)outStream_writeInt(out, count);
61 (void)outStream_writeByte(out, tag);
62 (void)outStream_writeObjectRef(env, out, clazz);
H A DThreadGroupReferenceImpl.c32 name(PacketInputStream *in, PacketOutputStream *out) argument
50 (void)outStream_writeString(out, info.name);
60 parent(PacketInputStream *in, PacketOutputStream *out) argument
78 (void)outStream_writeObjectRef(env, out, info.parent);
88 children(PacketInputStream *in, PacketOutputStream *out) argument
112 outStream_setError(out, map2jdwpError(error));
117 /* Squish out all of the debugger-spawned threads */
120 (void)outStream_writeInt(out, threadCount);
122 (void)outStream_writeObjectRef(env, out, theThreads[i]);
124 (void)outStream_writeInt(out, groupCoun
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/writer/
H A DSingleStreamCodeWriter.java48 private final PrintStream out; field in class:SingleStreamCodeWriter
55 out = new PrintStream(os);
62 out.println(
66 return new FilterOutputStream(out) {
74 out.close();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DJavaCompilerHelper.java52 // if we can't figure out where JAXB/JAX-WS API are, we couldn't have been executing this code.
55 // if we can't figure out where JAXB/JAX-WS API are, we couldn't have been executing this code.
63 static boolean compile(String[] args, OutputStream out, ErrorReceiver receiver){ argument
76 null, args, new PrintWriter(out));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/
H A DConsoleErrorReporter.java48 public ConsoleErrorReporter( PrintStream out) { argument
49 this.output = out;
51 public ConsoleErrorReporter( OutputStream out ) {
52 this(new PrintStream(out));
54 public ConsoleErrorReporter() { this(System.out); }
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/marshaller/
H A DDumbEscapeHandler.java47 public void escape(char[] ch, int start, int length, boolean isAttVal, Writer out) throws IOException { argument
52 out.write("&amp;");
55 out.write("&lt;");
58 out.write("&gt;");
62 out.write("&quot;");
64 out.write('\"');
69 out.write("&#");
70 out.write(Integer.toString(ch[i]));
71 out.write(';');
73 out
[all...]
H A DMinimumEscapeHandler.java44 public void escape(char[] ch, int start, int length, boolean isAttVal, Writer out) throws IOException { argument
53 out.write(ch,start,i-start);
57 out.write("&amp;");
60 out.write("&lt;");
63 out.write("&gt;");
66 out.write("&quot;");
73 out.write(ch,start,limit-start);
H A DNioEscapeHandler.java46 // of the method it wants to use. So comment it out for the compatibility.
63 public void escape(char[] ch, int start, int length, boolean isAttVal, Writer out) throws IOException { argument
68 out.write("&amp;");
71 out.write("&lt;");
74 out.write("&gt;");
78 out.write("&quot;");
80 out.write('\"');
85 out.write(ch[i]);
87 out.write("&#");
88 out
[all...]

Completed in 108 milliseconds

1234567891011>>