Searched defs:out (Results 176 - 200 of 910) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DDoubleExpression.java81 public void print(PrintStream out) { argument
82 out.print(value + "D");
H A DFloatExpression.java81 public void print(PrintStream out) { argument
82 out.print(value +"F");
H A DIntExpression.java67 public void print(PrintStream out) { argument
68 out.print(value);
H A DLongExpression.java80 public void print(PrintStream out) { argument
81 out.print(value + "L");
H A DNaryExpression.java83 public void print(PrintStream out) { argument
84 out.print("(" + opNames[op] + "#" + hashCode());
86 out.print(" ");
87 right.print(out);
90 out.print(" ");
92 args[i].print(out);
94 out.print("<null>");
97 out.print(")");
H A DNullExpression.java67 public void print(PrintStream out) { argument
68 out.print("null");
/openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/activatable/
H A DCompressOutputStream.java33 public CompressOutputStream(OutputStream out) { argument
34 super(out);
77 out.write((pack >>> 24) & 0xFF);
78 out.write((pack >>> 16) & 0xFF);
79 out.write((pack >>> 8) & 0xFF);
80 out.write((pack >>> 0) & 0xFF);
/openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/unicast/
H A DCompressOutputStream.java33 public CompressOutputStream(OutputStream out) { argument
34 super(out);
77 out.write((pack >>> 24) & 0xFF);
78 out.write((pack >>> 16) & 0xFF);
79 out.write((pack >>> 8) & 0xFF);
80 out.write((pack >>> 0) & 0xFF);
/openjdk7/jdk/test/java/util/Formatter/
H A DConstructors.java75 static void out(Formatter f, Class c) { method in class:Constructors
77 Appendable a = f.out();
91 out(f, StringBuilder.class);
100 out(f, StringBuilder.class);
109 out(f, StringBuilder.class);
118 out(f, StringBuilder.class);
127 out(f, BufferedWriter.class);
145 out(f, BufferedWriter.class);
172 out(f, BufferedWriter.class);
181 out(
[all...]
/openjdk7/jdk/test/java/util/Locale/
H A DGenerateKeyList.java26 * output to standard out.
35 doOutputFor("sun.util.resources", "CalendarData", System.out);
36 doOutputFor("sun.util.resources", "CurrencyNames", System.out);
37 doOutputFor("sun.util.resources", "LocaleNames", System.out);
38 doOutputFor("sun.util.resources", "TimeZoneNames", System.out);
39 doOutputFor("sun.text.resources", "CollationData", System.out);
40 doOutputFor("sun.text.resources", "FormatData", System.out);
44 String resourceBundleName, PrintStream out)
50 dumpResourceBundle(resourceBundleName + "/", bundle, out);
55 bundle, out);
43 doOutputFor(String packageName, String resourceBundleName, PrintStream out) argument
59 dumpResourceBundle(String pathName, ResourceBundle bundle, PrintStream out) argument
68 dumpResource(String pathName, Object resource, PrintStream out) argument
[all...]
/openjdk7/jdk/test/java/util/logging/
H A DLoggingDeadlock3.java41 static final PrintStream out = System.out; field in class:LoggingDeadlock3
54 out.println("\n" + MSG_PASSED);
65 if (cnt % 1000 == 0) out.print("1");
66 if (cnt % 10000 == 0) out.println();
76 if (cnt % 100 == 0) out.print("2");
77 if (cnt % 1000 == 0) out.println();
/openjdk7/jdk/src/share/classes/sun/net/www/http/
H A DHttpCaptureOutputStream.java38 public HttpCaptureOutputStream(OutputStream out, HttpCapture cap) { argument
39 super(out);
46 out.write(b);
54 out.write(ba);
62 out.write(b, off, len);
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DDelegatableDecoder.java40 CoderResult implFlush(CharBuffer out); argument
/openjdk7/jdk/src/share/classes/sun/rmi/log/
H A DLogHandler.java65 * @param out the output stream
70 void snapshot(OutputStream out, Object value) throws Exception { argument
71 MarshalOutputStream s = new MarshalOutputStream(out);
95 * @param out the output stream
100 void writeUpdate(LogOutputStream out, Object value) throws Exception { argument
102 MarshalOutputStream s = new MarshalOutputStream(out);
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DActivatableServerRef.java71 public String getRefClass(ObjectOutput out) argument
89 public void writeExternal(ObjectOutput out) throws IOException { argument
H A DMarshalOutputStream.java54 public MarshalOutputStream(OutputStream out) throws IOException { argument
55 this(out, ObjectStreamConstants.PROTOCOL_VERSION_1);
61 public MarshalOutputStream(OutputStream out, int protocolVersion) argument
64 super(out);
H A DUnicastRef2.java57 public String getRefClass(ObjectOutput out) argument
63 * Write out external representation for remote ref.
65 public void writeExternal(ObjectOutput out) throws IOException argument
67 ref.write(out, true);
H A DUnicastServerRef2.java75 public String getRefClass(ObjectOutput out) argument
/openjdk7/jdk/src/share/classes/sun/rmi/transport/proxy/
H A DHttpReceiveSocket.java62 * @param out the OutputStream to use for this socket (can be null)
64 public HttpReceiveSocket(Socket socket, InputStream in, OutputStream out) argument
67 super(socket, in, out);
71 this.out = (out != null ? out :
103 DataOutputStream dos = new DataOutputStream(out);
107 out = new HttpOutputStream(out);
109 return out;
[all...]
H A DHttpSendOutputStream.java42 * @param out the OutputStream to filter from
45 public HttpSendOutputStream(OutputStream out, HttpSendSocket owner) argument
48 super(out);
60 out = null;
68 if (out == null)
69 out = owner.writeNotify();
70 out.write(b);
83 if (out == null)
84 out = owner.writeNotify();
85 out
[all...]
/openjdk7/jdk/src/share/native/sun/nio/ch/
H A DgenSocketOptionRegistry.c42 static void out(char* s) { function
64 out("// AUTOMATICALLY GENERATED FILE - DO NOT EDIT ");
65 out("package sun.nio.ch; ");
66 out("import java.net.SocketOption; ");
67 out("import java.net.StandardSocketOptions; ");
68 out("import java.net.ProtocolFamily; ");
69 out("import java.net.StandardProtocolFamily; ");
70 out("import java.util.Map; ");
71 out("import java.util.HashMap; ");
72 out("clas
[all...]
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dec_naf.c56 * of bits of out, in is the original scalar, and w is the window size.
61 ec_compute_wNAF(signed char *out, int bitsize, const mp_int *in, int w) argument
77 out[i] = MP_DIGIT(&k, 0) & mask;
78 if (out[i] >= twowm1)
79 out[i] -= 2 * twowm1;
81 /* Subtract off out[i]. Note mp_sub_d only works with
83 if (out[i] >= 0) {
84 mp_sub_d(&k, out[i], &k);
86 mp_add_d(&k, -(out[i]), &k);
89 out[
[all...]
/openjdk7/jdk/src/solaris/classes/java/io/
H A DFileDescriptor.java82 * known as <code>System.out</code>.
83 * @see java.lang.System#out
85 public static final FileDescriptor out = new FileDescriptor(1); field in class:FileDescriptor
/openjdk7/langtools/test/tools/javac/
H A DSynthName1.java38 run(args, System.out);
40 public static void run(String args[],PrintStream out) { argument
49 out.println("Failed: res1=" + res1 + ", res2=" + res2);
H A DSynthName2.java37 run(args, System.out);
39 public static void run(String args[],PrintStream out) { argument
48 out.println("Failed: res1=" + res1 + ", res2=" + res2);

Completed in 691 milliseconds

1234567891011>>