Lines Matching defs:out
131 ByteArrayOutputStream out = new ByteArrayOutputStream(text.length());
132 writeUTF(out, text);
133 this._text = out.toByteArray();
177 ByteArrayOutputStream out = new ByteArrayOutputStream(text.length());
178 writeUTF(out, text);
179 this._text = out.toByteArray();
750 static void writeUTF(OutputStream out, String str) throws IOException {
754 out.write(c);
757 out.write(0xE0 | ((c >> 12) & 0x0F));
758 out.write(0x80 | ((c >> 6) & 0x3F));
759 out.write(0x80 | ((c >> 0) & 0x3F));
761 out.write(0xC0 | ((c >> 6) & 0x1F));
762 out.write(0x80 | ((c >> 0) & 0x3F));
1235 ByteArrayOutputStream out = new ByteArrayOutputStream(256);
1260 out.write((byte) data.length);
1261 out.write(data, 0, data.length);
1263 text = out.toByteArray();