Searched defs:out (Results 151 - 175 of 910) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/nio/charset/CharsetEncoder/
H A DCanEncode.java37 private static PrintStream out = System.err; field in class:CanEncode
40 out.println(ce.charset().name()
/openjdk7/jdk/test/java/nio/charset/coders/
H A DIsLegalReplacement.java37 static PrintStream out = System.err; field in class:IsLegalReplacement
66 out.print(csn + ": " + toString(repl) + ": ");
68 out.print("Okay");
70 out.print("Wrong: Expected " + expected);
73 out.println(" (" + ilr(csn, repl) + ")");
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/
H A DMain.java67 * @param out Where the tool's output is directed.
69 public static int process(PrintWriter out, String... args) { argument
70 if (out == null)
71 throw new NullPointerException("Parameter out cannot be null.");
72 return processing(null, out, args);
95 * @param out Where the tool's output is directed.
97 public static int process(AnnotationProcessorFactory factory, PrintWriter out, argument
99 if (out == null)
100 throw new NullPointerException("Parameter out cannot be null.");
103 return processing(factory, out, arg
106 processing(AnnotationProcessorFactory factory, PrintWriter out, String... args) argument
[all...]
/openjdk7/langtools/test/tools/javac/6627362/
H A DT6627362.java88 void javap(PrintWriter out, String... args) throws Exception { argument
89 int rc = com.sun.tools.javap.Main.run(args, out);
95 System.out.println("Checking:\n" + s);
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmshalf.c540 } out; local
544 out.num = Mantissa[ (h & 0x3ff) + Offset[ n ] ] + Exponent[ n ];
545 return out.flt;
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DPKCS10Attribute.java105 * @param out
110 public void derEncode(OutputStream out) throws IOException { argument
112 attr.derEncode(out);
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DRandomCookie.java66 void send(HandshakeOutStream out) throws IOException { argument
67 out.write(random_bytes, 0, 32);
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DCertAttrSet.java61 * @param out the OutputStream to encode the attribute to.
66 void encode(OutputStream out) argument
H A DCertificatePolicyId.java80 * @param out the DerOutputStream to write the object to.
83 public void encode(DerOutputStream out) throws IOException { argument
84 out.putOID(id);
H A DCertificatePolicyMap.java96 * @param out the DerOutputStream to write the object to.
99 public void encode(DerOutputStream out) throws IOException { argument
104 out.write(DerValue.tag_Sequence,tmp);
H A DDeltaCRLIndicatorExtension.java109 * @param out the DerOutputStream to write the extension to.
112 public void encode(OutputStream out) throws IOException { argument
114 super.encode(out, PKIXExtensions.DeltaCRLIndicator_Id, true);
H A DGeneralName.java224 * @param out the DerOutputStream to encode the the GeneralName to.
227 public void encode(DerOutputStream out) throws IOException { argument
236 out.writeImplicit(DerValue.createTag(DerValue.TAG_CONTEXT,
241 out.write(DerValue.createTag(DerValue.TAG_CONTEXT,
245 out.writeImplicit(DerValue.createTag(DerValue.TAG_CONTEXT,
H A DKeyIdentifier.java125 * @param out the DerOutputStream to write the object to.
128 void encode(DerOutputStream out) throws IOException { argument
129 out.putOctetString(octetString);
H A DSerialNumber.java110 * @param out the DerOutputStream to marshal the contents to.
113 public void encode(DerOutputStream out) throws IOException { argument
114 out.putInteger(serialNum);
H A DUniqueIdentity.java93 * @param out the DerOutputStream to marshal the contents to.
97 public void encode(DerOutputStream out, byte tag) throws IOException { argument
101 out.write(tag);
102 out.putLength(bytes.length + 1);
104 out.write(excessBits);
105 out.write(bytes);
H A DX400Address.java369 * @param out the DER stream to encode the X400Address to.
372 public void encode(DerOutputStream out) throws IOException { argument
374 out.putDerValue(derValue);
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DClassConstantData.java64 void write(Environment env, DataOutputStream out, ConstantPool tab) throws IOException { argument
65 out.writeByte(CONSTANT_CLASS);
66 out.writeShort(tab.index(name));
H A DConstantPoolData.java47 abstract void write(Environment env, DataOutputStream out, ConstantPool tab) throws IOException; argument
H A DFieldConstantData.java57 void write(Environment env, DataOutputStream out, ConstantPool tab) throws IOException { argument
60 out.writeByte(CONSTANT_INTERFACEMETHOD);
62 out.writeByte(CONSTANT_METHOD);
65 out.writeByte(CONSTANT_FIELD);
67 out.writeShort(tab.index(field.getClassDeclaration()));
68 out.writeShort(tab.index(nt));
H A DLocalVariableTable.java118 * Write out the data.
120 void write(Environment env, DataOutputStream out, ConstantPool tab) throws IOException { argument
122 out.writeShort(len);
124 //System.out.println("pc=" + locals[i].from + ", len=" + (locals[i].to - locals[i].from) + ", nm=" + locals[i].field.getName() + ", slot=" + locals[i].slot);
125 out.writeShort(locals[i].from);
126 out.writeShort(locals[i].to - locals[i].from);
127 out.writeShort(tab.index(locals[i].field.getName().toString()));
128 out.writeShort(tab.index(locals[i].field.getType().getTypeSignature()));
129 out.writeShort(locals[i].slot);
H A DNameAndTypeConstantData.java57 void write(Environment env, DataOutputStream out, ConstantPool tab) throws IOException { argument
58 out.writeByte(CONSTANT_NAMEANDTYPE);
59 out.writeShort(tab.index(name));
60 out.writeShort(tab.index(type));
H A DNumberConstantData.java53 void write(Environment env, DataOutputStream out, ConstantPool tab) throws IOException { argument
55 out.writeByte(CONSTANT_INTEGER);
56 out.writeInt(num.intValue());
58 out.writeByte(CONSTANT_LONG);
59 out.writeLong(num.longValue());
61 out.writeByte(CONSTANT_FLOAT);
62 out.writeFloat(num.floatValue());
64 out.writeByte(CONSTANT_DOUBLE);
65 out.writeDouble(num.doubleValue());
H A DStringConstantData.java53 void write(Environment env, DataOutputStream out, ConstantPool tab) throws IOException { argument
54 out.writeByte(CONSTANT_UTF8);
55 out.writeUTF(str);
H A DStringExpressionConstantData.java56 void write(Environment env, DataOutputStream out, ConstantPool tab) throws IOException { argument
57 out.writeByte(CONSTANT_STRING);
58 out.writeShort(tab.index(str.getValue()));
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DCaseStatement.java71 public void print(PrintStream out, int indent) { argument
72 super.print(out, indent);
74 out.print("default");
76 out.print("case ");
77 expr.print(out);
79 out.print(":");

Completed in 83 milliseconds

1234567891011>>