Searched refs:writeByte (Results 1 - 25 of 93) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DNumberConstantData.java55 out.writeByte(CONSTANT_INTEGER);
58 out.writeByte(CONSTANT_LONG);
61 out.writeByte(CONSTANT_FLOAT);
64 out.writeByte(CONSTANT_DOUBLE);
H A DFieldConstantData.java60 out.writeByte(CONSTANT_INTERFACEMETHOD);
62 out.writeByte(CONSTANT_METHOD);
65 out.writeByte(CONSTANT_FIELD);
H A DInstruction.java652 out.writeByte(opc);
653 out.writeByte(((Number)value).intValue());
659 out.writeByte(opc_wide);
660 out.writeByte(opc - 256);
666 out.writeByte(opc);
667 out.writeByte((value instanceof Number) ?
674 out.writeByte(opc_wide);
675 out.writeByte(opc - 256);
681 out.writeByte(opc);
686 out.writeByte(op
[all...]
H A DStringConstantData.java54 out.writeByte(CONSTANT_UTF8);
H A DStringExpressionConstantData.java57 out.writeByte(CONSTANT_STRING);
/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DGen.java86 dos.writeByte(ZoneInfoFile.JAVAZI_VERSION);
100 dos.writeByte(ZoneInfoFile.TAG_Transition);
121 dos.writeByte(ZoneInfoFile.TAG_Offset);
138 dos.writeByte(ZoneInfoFile.TAG_SimpleTimeZone);
158 dos.writeByte(ZoneInfoFile.TAG_RawOffset);
164 dos.writeByte(ZoneInfoFile.TAG_GMTOffsetWillChange);
166 dos.writeByte(1);
170 dos.writeByte(ZoneInfoFile.TAG_LastDSTSaving);
175 dos.writeByte(ZoneInfoFile.TAG_CRC32);
236 raf.writeByte(ZoneInfoFil
[all...]
/openjdk7/jdk/test/java/io/DataOutputStream/
H A DCounterOverflow.java42 dataOut.writeByte(1);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageWriter.java554 stream.writeByte(b[i]);
555 stream.writeByte(g[i]);
556 stream.writeByte(r[i]);
557 stream.writeByte(a[i]);
688 stream.writeByte(0);
740 stream.writeByte(0);
741 stream.writeByte(1);
952 stream.writeByte(0);
971 stream.writeByte(0);
972 stream.writeByte(absVa
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DIINC.java98 out.writeByte(com.sun.org.apache.bcel.internal.Constants.WIDE);
100 out.writeByte(opcode);
106 out.writeByte(n);
107 out.writeByte(c);
H A DRET.java91 out.writeByte(com.sun.org.apache.bcel.internal.Constants.WIDE);
93 out.writeByte(opcode);
98 out.writeByte(index);
H A DINVOKEINTERFACE.java97 out.writeByte(opcode);
99 out.writeByte(nargs);
100 out.writeByte(0);
H A DNEWARRAY.java94 out.writeByte(opcode);
95 out.writeByte(type);
H A DLocalVariableInstruction.java116 out.writeByte(Constants.WIDE);
118 out.writeByte(opcode);
124 out.writeByte(n);
H A DBIPUSH.java92 out.writeByte(b);
H A DGOTO_W.java86 out.writeByte(opcode);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DProxyGenerator.java891 out.writeByte(opc_getfield);
898 out.writeByte(opc_getstatic);
907 out.writeByte(opc_anewarray);
912 out.writeByte(opc_dup);
918 out.writeByte(opc_aastore);
922 out.writeByte(opc_aconst_null);
925 out.writeByte(opc_invokeinterface);
931 out.writeByte(4);
932 out.writeByte(0);
936 out.writeByte(opc_po
[all...]
/openjdk7/jdk/test/javax/management/remote/mandatory/loading/
H A DSingleClassLoader.java119 dout.writeByte(42); // aload_0
120 dout.writeByte(183); // invokespecial
122 dout.writeByte(177); // return
147 dout.writeByte(1);
153 dout.writeByte(7);
160 dout.writeByte(12);
168 dout.writeByte(10);
/openjdk7/jdk/src/share/classes/java/io/
H A DDataOutput.java120 * are ignored. (This means that <code>writeByte</code>
131 void writeByte(int v) throws IOException; method in interface:DataOutput
272 * of the <code>writeByte</code> method . The
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DPNGImageWriter.java383 cs.writeByte(metadata.IHDR_bitDepth);
384 cs.writeByte(metadata.IHDR_colorType);
389 cs.writeByte(metadata.IHDR_compressionMethod);
394 cs.writeByte(metadata.IHDR_filterMethod);
400 cs.writeByte(metadata.IHDR_interlaceMethod);
431 cs.writeByte(0); // null terminator
433 cs.writeByte(metadata.iCCP_compressionMethod);
452 cs.writeByte(metadata.sBIT_grayBits);
456 cs.writeByte(metadata.sBIT_redBits);
457 cs.writeByte(metadat
[all...]
/openjdk7/jdk/make/tools/src/build/tools/dtdbuilder/
H A DDTDBuilder.java164 out.writeByte(ent.getType() & ~GENERAL);
178 out.writeByte(elem.getType());
187 out.writeByte(flags);
232 out.writeByte(numAtts);
235 out.writeByte(atts.getType());
236 out.writeByte(atts.getModifier());
262 out.writeByte(0);
264 out.writeByte(1);
265 out.writeByte(model.type);
270 out.writeByte(
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DConstantDouble.java119 file.writeByte(tag);
H A DConstantFloat.java118 file.writeByte(tag);
H A DConstantInteger.java123 file.writeByte(tag);
H A DConstantLong.java117 file.writeByte(tag);
H A DConstantUtf8.java127 file.writeByte(tag);

Completed in 63 milliseconds

1234