Home
last modified time | relevance | path

Searched defs:buffer (Results 1 – 25 of 178) sorted by relevance

12345678

/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/
DExtensionValue.java55 public void dumpValue(StringBuffer buffer, String prefix) { in dumpValue()
71 public void dumpValue(StringBuffer buffer) { in dumpValue()
/dalvik/libcore/luni/src/main/java/java/io/
DOutputStream.java85 public void write(byte[] buffer) throws IOException { in write()
111 public void write(byte[] buffer, int offset, int count) throws IOException { in write()
DObjectOutput.java59 public void write(byte[] buffer) throws IOException; in write()
77 public void write(byte[] buffer, int offset, int count) throws IOException; in write()
DObjectInput.java74 public int read(byte[] buffer) throws IOException; in read()
94 public int read(byte[] buffer, int offset, int count) throws IOException; in read()
DFilterOutputStream.java98 public void write(byte[] buffer) throws IOException { in write()
124 public void write(byte[] buffer, int offset, int count) throws IOException { in write()
DPushbackInputStream.java191 public int read(byte[] buffer, int offset, int length) throws IOException { in read()
282 public void unread(byte[] buffer) throws IOException { in unread()
314 public void unread(byte[] buffer, int offset, int length) in unread()
DFilterInputStream.java153 public int read(byte[] buffer) throws IOException { in read()
178 public int read(byte[] buffer, int offset, int count) throws IOException { in read()
DPushbackReader.java188 public int read(char[] buffer, int offset, int count) throws IOException { in read()
293 public void unread(char[] buffer) throws IOException { in unread()
329 public void unread(char[] buffer, int offset, int count) throws IOException { in unread()
DDataInput.java132 public abstract void readFully(byte[] buffer) throws IOException; in readFully()
154 public abstract void readFully(byte[] buffer, int offset, int count) in readFully()
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/net/
DSocketOutputStream.java49 public void write(byte[] buffer) throws IOException { in write()
54 public void write(byte[] buffer, int offset, int count) throws IOException { in write()
DSocketInputStream.java66 public int read(byte[] buffer) throws IOException { in read()
71 public int read(byte[] buffer, int offset, int count) throws IOException { in read()
/dalvik/libcore/support/src/test/java/tests/support/
DSupport_OutputStream.java17 private byte[] buffer; field in Support_OutputStream
58 public void write(byte buffer[]) throws IOException { in write()
68 public void write(byte buffer[], int offset, int count) throws IOException { in write()
/dalvik/libcore/archive/src/main/java/java/util/zip/
DGZIPInputStream.java137 private long getLong(byte[] buffer, int off) { in getLong()
146 private int getShort(byte[] buffer, int off) { in getShort()
151 public int read(byte[] buffer, int off, int nbytes) throws IOException { in read()
196 private void readFully(byte[] buffer, int offset, int length) in readFully()
/dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/
DFileChannelImpl.java203 MappedByteBuffer buffer = null; in mapImpl() local
238 public int read(ByteBuffer buffer, long position) throws IOException { in read()
262 public int read(ByteBuffer buffer) throws IOException { in read()
326 ByteBuffer buffer = buffers[i + offset]; in read() local
414 ByteBuffer buffer = null; in transferFrom() local
458 ByteBuffer buffer = null; in transferTo() local
520 public int write(ByteBuffer buffer, long position) throws IOException { in write()
544 public int write(ByteBuffer buffer) throws IOException { in write()
549 private int writeImpl(ByteBuffer buffer) throws IOException { in writeImpl()
603 ByteBuffer buffer = buffers[i + offset]; in write() local
DWriteOnlyFileChannel.java73 public int read(ByteBuffer buffer) throws IOException { in read()
78 public int read(ByteBuffer buffer, long position) throws IOException { in read()
100 public int write(ByteBuffer buffer) throws IOException { in write()
/dalvik/dx/src/junit/framework/
DTestFailure.java40 StringBuffer buffer= new StringBuffer(); in toString() local
48 StringBuffer buffer= stringWriter.getBuffer(); in trace() local
/dalvik/libcore/junit/src/main/java/junit/framework/
DTestFailure.java40 StringBuffer buffer= new StringBuffer(); in toString() local
48 StringBuffer buffer= stringWriter.getBuffer(); in trace() local
/dalvik/libcore/regex/src/main/java/java/util/regex/
DMatcher.java627 public Matcher appendReplacement(StringBuffer buffer, String replacement) in appendReplacement()
651 public StringBuffer appendTail(StringBuffer buffer) { in appendTail()
669 private void appendEvaluated(StringBuffer buffer, String s) { in appendEvaluated()
705 StringBuffer buffer = new StringBuffer(input.length()); in replaceAll() local
729 StringBuffer buffer = new StringBuffer(input.length()); in replaceFirst() local
754 StringBuffer buffer = new StringBuffer(s.length()); in quoteReplacement() local
/dalvik/libcore/archive/src/main/java/org/apache/harmony/archive/util/
DUtil.java43 StringBuilder buffer = new StringBuilder(len); in toASCIILowerCase() local
57 StringBuilder buffer = new StringBuilder(len); in toASCIIUpperCase() local
/dalvik/libcore/luni/src/test/java/tests/api/java/io/
DFilterWriterTest.java57 public void write(char[] buffer, int offset, int count) throws IOException { in write()
150 char[] buffer = new char[5]; in test_write$CII() local
165 char[] buffer = new char[10]; in test_write$CII_Exception() local
DFilterReaderTest.java63 public int read(char[] buffer, int offset, int count) throws IOException { in read()
172 char[] buffer = new char[5]; in test_read$CII() local
188 char[] buffer = new char[10]; in test_read$CII_Exception() local
/dalvik/libcore/nio/src/main/java/java/nio/channels/
DWritableByteChannel.java70 public int write(ByteBuffer buffer) throws IOException; in write()
DReadableByteChannel.java73 public int read(ByteBuffer buffer) throws IOException; in read()
/dalvik/libcore/text/src/main/java/java/text/
DMessageFormat.java416 StringBuffer buffer = new StringBuffer(); in applyPattern() local
540 StringBuffer buffer = new StringBuffer(); in formatToCharacterIterator() local
544 formatImpl((Object[]) object, buffer, new FieldPosition(0), fields); in formatToCharacterIterator() local
579 public final StringBuffer format(Object[] objects, StringBuffer buffer, in format()
584 private StringBuffer formatImpl(Object[] objects, StringBuffer buffer, in formatImpl()
751 public final StringBuffer format(Object object, StringBuffer buffer, in format()
1029 StringBuffer buffer = new StringBuffer(); in parseVariable() local
1166 private String decodeDecimalFormat(StringBuffer buffer, Format format) { in decodeDecimalFormat()
1183 private String decodeSimpleDateFormat(StringBuffer buffer, Format format) { in decodeSimpleDateFormat()
1222 StringBuffer buffer = new StringBuffer(); in toPattern() local
[all …]
/dalvik/libcore/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
DErrorManagerTest.java111 public void write(byte[] buffer) { in write()
116 public synchronized void write(byte[] buffer, int offset, int len) { in write()

12345678