/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
CountOutputStream.java | 24 private final OutputStream out; field in class:CountOutputStream 31 * @param out an <code>OutputStream</code> 33 CountOutputStream(OutputStream out) 35 this.out = out; 45 out.write(buf, off, len); 56 out.write(buf); 67 out.write(b);
|
/frameworks/base/tools/preload/ |
WritePreloadedClassFile.java | 57 Writer out = new BufferedWriter(new OutputStreamWriter( local 61 out.write("# Classes which are preloaded by" 63 out.write("# Automatically generated by frameworks/base/tools/preload/" 65 out.write("# MIN_LOAD_TIME_MICROS=" + MIN_LOAD_TIME_MICROS + "\n"); 66 out.write("# MIN_PROCESSES=" + MIN_PROCESSES + "\n"); 93 System.out.println(initialSize 109 System.out.println("Added " + (toPreload.size() - initialSize) 112 System.out.println(toPreload.size() 121 out.write(loadedClass.name + "\n"); 124 out.close() [all...] |
/libcore/luni/src/main/java/javax/crypto/ |
CipherOutputStream.java | 33 * CipherOutputStream} tries to encrypt the data writing it out. 97 out.write(result); 109 out.flush(); 116 * buffered bytes from the cipher are also written out, and the cipher is 129 out.write(result); 132 if (out != null) { 133 out.flush(); 140 if (out != null) { 141 out.close();
|
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1Sequence.java | 48 public final void encodeContent(BerOutputStream out) { 49 out.encodeSequence(this); 52 public final void setEncodingContent(BerOutputStream out) { 53 out.getSequenceLength(this);
|
ASN1SequenceOf.java | 48 public final void encodeContent(BerOutputStream out) { 49 out.encodeSequenceOf(this); 52 public final void setEncodingContent(BerOutputStream out) { 53 out.getSequenceOfLength(this);
|
ASN1Set.java | 48 public final void encodeContent(BerOutputStream out) { 49 out.encodeSet(this); 52 public final void setEncodingContent(BerOutputStream out) { 53 out.getSetLength(this);
|
ASN1SetOf.java | 48 public final void encodeContent(BerOutputStream out) { 49 out.encodeSetOf(this); 52 public final void setEncodingContent(BerOutputStream out) { 53 out.getSetOfLength(this);
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/ |
CopyUtils.java | 61 * copy( new BufferedInputStream( in ), new BufferedOutputStream( out ) );
71 * runs out).
286 OutputStreamWriter out = new OutputStreamWriter(output);
local 287 copy(input, out);
290 out.flush();
310 OutputStreamWriter out = new OutputStreamWriter(output);
local 311 copy(in, out);
314 out.flush();
|
/external/guava/guava-tests/test/com/google/common/io/ |
FileBackedOutputStreamTest.java | 47 FileBackedOutputStream out = new FileBackedOutputStream(0, true); local 49 write(out, data, 0, 100, true); 50 final File file = out.getFile(); 53 out.close(); 56 out = null; 58 // times out and throws RuntimeException on failure 81 FileBackedOutputStream out = new FileBackedOutputStream(fileThreshold, resetOnFinalize); local 82 InputSupplier<InputStream> supplier = out.getSupplier(); 88 write(out, data, 0, chunk1, singleByte); 92 File file = out.getFile() 131 FileBackedOutputStream out = new FileBackedOutputStream(50); local 152 FileBackedOutputStream out = new FileBackedOutputStream(Integer.MAX_VALUE); local [all...] |
/frameworks/base/services/java/com/android/server/wm/ |
DisplaySettings.java | 193 XmlSerializer out = new FastXmlSerializer(); local 194 out.setOutput(stream, "utf-8"); 195 out.startDocument(null, true); 196 out.startTag(null, "display-settings"); 199 out.startTag(null, "display"); 200 out.attribute(null, "name", entry.name); 202 out.attribute(null, "overscanLeft", Integer.toString(entry.overscanLeft)); 205 out.attribute(null, "overscanTop", Integer.toString(entry.overscanTop)); 208 out.attribute(null, "overscanRight", Integer.toString(entry.overscanRight)); 211 out.attribute(null, "overscanBottom", Integer.toString(entry.overscanBottom)) [all...] |
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_GetLocal.java | 45 FileOutputStream out = new FileOutputStream(temp); local 49 out.write(buf, 0, result); 52 out.close(); 65 FileOutputStream out = new FileOutputStream(temp); local 69 out.write(buf, 0, result); 72 out.close(); 81 ByteArrayOutputStream out = new ByteArrayOutputStream(256); local 85 out.write(buf, 0, result); 87 return new ByteArrayInputStream(out.toByteArray());
|
/external/apache-http/src/org/apache/http/impl/conn/ |
LoggingSessionOutputBuffer.java | 49 private final SessionOutputBuffer out; field in class:LoggingSessionOutputBuffer 56 * @param out The session output buffer. 59 public LoggingSessionOutputBuffer(final SessionOutputBuffer out, final Wire wire) { 61 this.out = out; 66 this.out.write(b, off, len); 73 this.out.write(b); 80 this.out.write(b); 87 this.out.flush(); 91 this.out.writeLine(buffer) [all...] |
/external/apache-http/src/org/apache/http/impl/io/ |
ContentLengthOutputStream.java | 53 private final SessionOutputBuffer out; field in class:ContentLengthOutputStream 70 * @param out The data transmitter to wrap 76 public ContentLengthOutputStream(final SessionOutputBuffer out, long contentLength) { 78 if (out == null) { 84 this.out = out; 96 this.out.flush(); 101 this.out.flush(); 113 this.out.write(b, off, len); 127 this.out.write(b) [all...] |
/external/doclava/src/com/google/doclava/ |
JarUtils.java | 68 FileOutputStream out = new FileOutputStream(dest); local 76 out.write(buffer, 0, s); 85 out.close();
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/ |
AnnotationEncodedSubValue.java | 25 * INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 83 public void writeValue(AnnotatedOutput out) { 84 out.annotate("annotation_type: " + annotationType.getTypeDescriptor()); 85 out.writeUnsignedLeb128(annotationType.getIndex()); 86 out.annotate("element_count: 0x" + Integer.toHexString(names.length) + " (" + names.length + ")"); 87 out.writeUnsignedLeb128(names.length); 90 out.annotate(0, "[" + i + "] annotation_element"); 91 out.indent(); 92 out.annotate("element_name: " + names[i].getStringValue()); 93 out.writeUnsignedLeb128(names[i].getIndex()) [all...] |
/frameworks/base/core/java/android/util/ |
Base64OutputStream.java | 40 * @param out the OutputStream to write the encoded data to 44 public Base64OutputStream(OutputStream out, int flags) { 45 this(out, flags, true); 53 * @param out the OutputStream to write the encoded data to 60 public Base64OutputStream(OutputStream out, int flags, boolean encode) { 61 super(out); 80 // internal buffer full; write it out. 115 out.close(); 117 out.flush(); 141 out.write(coder.output, 0, coder.op) [all...] |
/frameworks/base/core/tests/coretests/src/com/android/internal/http/multipart/ |
MultipartTest.java | 37 BufferedWriter out = new BufferedWriter(outFile); local 39 out.write(filebuffer.toString()); 40 out.flush(); 42 out.close(); 113 // System.out.print(output.toString()); 116 // System.out.print(os.toString());
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
OldAndroidGZIPStreamTest.java | 84 GZIPOutputStream out = new GZIPOutputStream(bytesOut); local 87 out.write(input, 0, input.length); 88 //out.finish(); 90 out.close();
|
/libcore/support/src/test/java/tests/support/ |
Support_GetLocal.java | 45 FileOutputStream out = new FileOutputStream(temp); local 49 out.write(buf, 0, result); 52 out.close(); 65 FileOutputStream out = new FileOutputStream(temp); local 69 out.write(buf, 0, result); 72 out.close(); 81 ByteArrayOutputStream out = new ByteArrayOutputStream(256); local 85 out.write(buf, 0, result); 87 return new ByteArrayInputStream(out.toByteArray());
|
/art/compiler/ |
leb128_encoder.h | 33 uint8_t out = value & 0x7f; local 34 if (out != value) { 35 data_.push_back(out | 0x80); 38 data_.push_back(out);
|
/art/test/009-instanceof2/src/ |
Main.java | 30 System.out.print("instanceof Serializable = "); 31 System.out.println((Object)aaArray instanceof java.io.Serializable); 32 System.out.print("instanceof Cloneable = "); 33 System.out.println((Object)aaArray instanceof java.lang.Cloneable); 34 System.out.print("instanceof Runnable = "); 35 System.out.println((Object)aaArray instanceof java.lang.Runnable); 38 System.out.print("aaOkay (false) = "); 39 System.out.println(aaOkay); 41 System.out.print("bbOkay (true) = "); 42 System.out.println(bbOkay) [all...] |
/cts/hostsidetests/monkey/src/com/android/cts/monkey/ |
CategoryTest.java | 22 String out = mDevice.executeShellCommand(MONKEY_CMD + " -v -p " + PKGS[0] + " 5000"); local 23 assertTrue(out.contains("cmp=com.android.cts.monkey/.MonkeyActivity")); 24 assertTrue(out.contains("cmp=com.android.cts.monkey/.BaboonActivity")); 28 String out = mDevice.executeShellCommand(MONKEY_CMD + " -v -p " + PKGS[0] local 30 assertTrue(out.contains("cmp=com.android.cts.monkey/.MonkeyActivity")); 31 assertFalse(out.contains("cmp=com.android.cts.monkey/.BaboonActivity")); 33 out = mDevice.executeShellCommand(MONKEY_CMD + " -v -p " + PKGS[0] 35 assertFalse(out.contains("cmp=com.android.cts.monkey/.MonkeyActivity")); 36 assertTrue(out.contains("cmp=com.android.cts.monkey/.BaboonActivity")); 40 String out = mDevice.executeShellCommand(MONKEY_CMD + " -v -p " + PKGS[0 local [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
ArrayData.java | 110 public void writeTo(AnnotatedOutput out) { 113 out.writeShort(0x300 | DalvOps.NOP); 114 out.writeShort(elemWidth); 115 out.writeInt(initLength); 123 out.writeByte((byte) ((CstLiteral32) cst).getIntBits()); 130 out.writeShort((short) ((CstLiteral32) cst).getIntBits()); 137 out.writeInt(((CstLiteral32) cst).getIntBits()); 144 out.writeLong(((CstLiteral64) cst).getLongBits()); 154 out.writeByte(0x00);
|
/dalvik/dx/src/com/android/dx/dex/code/ |
ArrayData.java | 112 public void writeTo(AnnotatedOutput out) { 115 out.writeShort(Opcodes.FILL_ARRAY_DATA_PAYLOAD); 116 out.writeShort(elemWidth); 117 out.writeInt(initLength); 125 out.writeByte((byte) ((CstLiteral32) cst).getIntBits()); 132 out.writeShort((short) ((CstLiteral32) cst).getIntBits()); 139 out.writeInt(((CstLiteral32) cst).getIntBits()); 146 out.writeLong(((CstLiteral64) cst).getLongBits()); 156 out.writeByte(0x00);
|
/dalvik/libdex/ |
Leb128.h | 46 * Note: We don't check to see if cur is out of 89 * Note: We don't check to see if cur is out of 136 u1 out = data & 0x7f; local 137 if (out != data) { 138 *ptr++ = out | 0x80; 141 *ptr++ = out;
|