Searched defs:out (Results 276 - 300 of 910) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DRFC822Name.java116 * @param out the DER stream to encode the RFC822Name to.
119 public void encode(DerOutputStream out) throws IOException { argument
120 out.putIA5String(name);
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DConstantPool.java82 public void write(Environment env, DataOutputStream out) throws IOException { argument
108 out.writeShort(index);
112 list[n].write(env, out, this);
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DBinaryAttribute.java79 // write out the Binary attributes to the given stream
81 static void write(BinaryAttribute attributes, DataOutputStream out, argument
87 out.writeShort(attributeCount);
89 // write out each attribute
94 out.writeShort(cpool.indexString(name.toString(), env));
96 out.writeInt(data.length);
98 out.write(data, 0, data.length);
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DBreakStatement.java98 public void print(PrintStream out, int indent) { argument
99 super.print(out, indent);
100 out.print("break");
102 out.print(" " + lbl);
104 out.print(";");
H A DCastExpression.java124 public void print(PrintStream out) { argument
125 out.print("(" + opNames[op] + " ");
127 left.print(out);
129 out.print(type);
131 out.print(" ");
132 right.print(out);
133 out.print(")");
H A DContinueStatement.java108 public void print(PrintStream out, int indent) { argument
109 super.print(out, indent);
110 out.print("continue");
112 out.print(" " + lbl);
114 out.print(";");
H A DInlineMethodExpression.java104 public void print(PrintStream out) { argument
105 out.print("(" + opNames[op] + "\n");
106 body.print(out, 1);
107 out.print(")");
H A DInlineNewInstanceExpression.java108 public void print(PrintStream out) { argument
110 out.println("(" + opNames[op] + "#" + v.hashCode() + "=" + field.hashCode());
112 body.print(out, 1);
114 out.print("<empty>");
116 out.print(")");
H A DInlineReturnStatement.java104 public void print(PrintStream out, int indent) { argument
105 super.print(out, indent);
106 out.print("inline-return");
108 out.print(" ");
109 expr.print(out);
111 out.print(";");
H A DNode.java99 public void print(PrintStream out) { argument
H A DStringExpression.java90 public void print(PrintStream out) { argument
91 out.print("\"" + value + "\"");
H A DTypeExpression.java74 public void print(PrintStream out) { argument
75 out.print(type.toString());
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/
H A DTextReporter.java52 OutputStream out; field in class:TextReporter
58 public TextReporter(OutputStream out, String title) { argument
59 this.out = out;
69 PrintStream p = new PrintStream(out);
/openjdk7/jdk/test/java/rmi/server/useCustomRef/
H A DUseCustomRef.java121 ObjectOutputStream out = new ObjectOutputStream(bout);
122 out.writeObject(cr);
123 out.flush();
124 out.close();
176 public String getRefClass(ObjectOutput out) { argument
202 protected void marshalCustomCallData(ObjectOutput out) argument
208 out.writeObject("hello there.");
211 public String getRefClass(ObjectOutput out) { argument
/openjdk7/jdk/test/java/util/zip/
H A DDataDescriptor.java53 static void copyZip(ZipInputStream in, ZipOutputStream out) throws IOException { argument
56 out.putNextEntry(ze);
60 out.write(buffer, 0, nr);
77 System.out.println("zip bytes pre-copy length=" + length1);
91 System.out.println("zip bytes post-copy length=" + length2);
105 System.out.println("zip bytes post-copy length=" + length3);
115 static void fail(String msg) {System.out.println(msg); fail();}
123 System.out.printf("%nPassed = %d, failed = %d%n%n", passed, failed);
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftCubicResampler/
H A DInterpolate.java45 float[] startpitch, float pitchstep, float[] out, int[] out_offset,
55 out[ox++] = getResamplerTestValue(ix);
60 out[ox++] = getResamplerTestValue(ix);
44 perfectInterpolation(float[] in_offset, float in_end, float[] startpitch, float pitchstep, float[] out, int[] out_offset, int out_end) argument
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftLanczosResampler/
H A DInterpolate.java45 float[] startpitch, float pitchstep, float[] out, int[] out_offset,
55 out[ox++] = getResamplerTestValue(ix);
60 out[ox++] = getResamplerTestValue(ix);
44 perfectInterpolation(float[] in_offset, float in_end, float[] startpitch, float pitchstep, float[] out, int[] out_offset, int out_end) argument
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftLinearResampler/
H A DInterpolate.java45 float[] startpitch, float pitchstep, float[] out, int[] out_offset,
55 out[ox++] = getResamplerTestValue(ix);
60 out[ox++] = getResamplerTestValue(ix);
44 perfectInterpolation(float[] in_offset, float in_end, float[] startpitch, float pitchstep, float[] out, int[] out_offset, int out_end) argument
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftLinearResampler2/
H A DInterpolate.java45 float[] startpitch, float pitchstep, float[] out, int[] out_offset,
55 out[ox++] = getResamplerTestValue(ix);
60 out[ox++] = getResamplerTestValue(ix);
44 perfectInterpolation(float[] in_offset, float in_end, float[] startpitch, float pitchstep, float[] out, int[] out_offset, int out_end) argument
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftPointResampler/
H A DInterpolate.java45 float[] startpitch, float pitchstep, float[] out, int[] out_offset,
55 out[ox++] = getResamplerTestValue(ix);
60 out[ox++] = getResamplerTestValue(ix);
44 perfectInterpolation(float[] in_offset, float in_end, float[] startpitch, float pitchstep, float[] out, int[] out_offset, int out_end) argument
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftSincResampler/
H A DInterpolate.java45 float[] startpitch, float pitchstep, float[] out, int[] out_offset,
55 out[ox++] = getResamplerTestValue(ix);
60 out[ox++] = getResamplerTestValue(ix);
44 perfectInterpolation(float[] in_offset, float in_end, float[] startpitch, float pitchstep, float[] out, int[] out_offset, int out_end) argument
/openjdk7/jdk/test/sun/net/www/http/HttpClient/
H A DProxyTest.java60 PrintWriter out; field in class:ProxyTest.HttpProxyServer.HttpProxyHandler
72 out = new PrintWriter(client.getOutputStream(), true);
92 out.close();
101 out.println("HTTP/1.0 200 OK");
102 out.println("Server: Squid/2.4.STABLE6");
103 out.println("Mime-Version: 1.0");
104 out.println("Date: Fri, 26 Jul 2002 17:56:00 GMT");
105 out.println("Content-Type: text/html");
106 out.println("Last-Modified: Fri, 26 Jul 2002 01:49:57 GMT");
107 out
[all...]
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DResponseCacheStream.java42 System.out.println ("Server: sent response");
57 public MyCacheRequest(OutputStream out) { argument
58 buf = out;
101 System.out.println ("Server: listening on port: " + server.getLocalPort());
103 System.out.println ("Client: connecting to " + url);
106 System.out.println("is is " + is.getClass() + ". And markSupported: " + is.markSupported());
/openjdk7/jdk/test/sun/net/www/protocol/jar/jarbug/src/test/
H A DJarTest.java38 ByteArrayOutputStream out = new ByteArrayOutputStream();
43 out.write(buffer, 0, count);
46 return out.toByteArray();
121 private PrintStream out; field in class:JarTest.Redirector
124 public Redirector(BufferedReader reader, PrintStream out) { argument
126 this.out = out;
134 out.println(str);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DMessageUtils.java114 public static void out(String s) { method in class:MessageUtils

Completed in 929 milliseconds

<<11121314151617181920>>