Home
last modified time | relevance | path

Searched defs:read (Results 1 – 25 of 1878) sorted by relevance

12345678910>>...76

/external/jsoup/src/main/java/org/jsoup/parser/
DTokeniserState.java11 @Override void read(Tokeniser t, CharacterReader r) { in read() method
35 @Override void read(Tokeniser t, CharacterReader r) { in read() method
41 @Override void read(Tokeniser t, CharacterReader r) { in read() method
65 @Override void read(Tokeniser t, CharacterReader r) { in read() method
70 @Override void read(Tokeniser t, CharacterReader r) { in read() method
75 @Override void read(Tokeniser t, CharacterReader r) { in read() method
80 @Override void read(Tokeniser t, CharacterReader r) { in read() method
99 @Override void read(Tokeniser t, CharacterReader r) { in read() method
125 @Override void read(Tokeniser t, CharacterReader r) { in read() method
146 @Override void read(Tokeniser t, CharacterReader r) { in read() method
[all …]
/external/aws-sdk-java-v2/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/metrics/
DBytesReadTrackingInputStream.java41 public int read() throws IOException { in read() method in BytesReadTrackingInputStream
42 int read = super.read(); in read() local
48 public int read(byte[] b, int off, int len) throws IOException { in read() method in BytesReadTrackingInputStream
49 int read = super.read(b, off, len); in read() local
62 public int read(byte[] b) throws IOException { in read() method in BytesReadTrackingInputStream
63 int read = super.read(b); in read() local
68 private void updateBytesRead(long read) { in updateBytesRead()
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/sevenz/
DBoundedSeekableByteChannelInputStream.java43 public int read() throws IOException { in read() method in BoundedSeekableByteChannelInputStream
46 int read = read(1); in read() local
56 public int read(final byte[] b, final int off, final int len) throws IOException { in read() method in BoundedSeekableByteChannelInputStream
81 private int read(int len) throws IOException { in read() method in BoundedSeekableByteChannelInputStream
83 int read = channel.read(buffer); in read() local
/external/aws-sdk-java-v2/core/http-auth-aws/src/main/java/software/amazon/awssdk/http/auth/aws/internal/signer/io/
DChecksumInputStream.java40 public int read() throws IOException { in read() method in ChecksumInputStream
42 int read = read(b, 0, 1); in read() local
51 public int read(byte[] b, int off, int len) throws IOException { in read() method in ChecksumInputStream
52 int read = in.read(b, off, len); in read() local
DSdkLengthAwareInputStream.java44 public int read() throws IOException { in read() method in SdkLengthAwareInputStream
50 int read = super.read(); in read() local
58 public int read(byte[] b, int off, int len) throws IOException { in read() method in SdkLengthAwareInputStream
65 int read = super.read(b, off, len); in read() local
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/utils/
DCountingInputStream.java38 public int read() throws IOException { in read() method in CountingInputStream
46 public int read(final byte[] b) throws IOException { in read() method in CountingInputStream
50 public int read(final byte[] b, final int off, final int len) throws IOException { in read() method in CountingInputStream
63 protected final void count(final long read) { in count()
/external/aws-sdk-java-v2/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/checksums/
DChecksumCalculatingInputStream.java50 public int read() throws IOException { in read() method in ChecksumCalculatingInputStream
51 int read = -1; in read() local
78 public int read(byte[] buf, int off, int len) throws IOException { in read() method in ChecksumCalculatingInputStream
83 int read = -1; in read() local
DS3ChecksumValidatingInputStream.java60 public int read() throws IOException { in read() method in S3ChecksumValidatingInputStream
61 int read = inputStream.read(); in read() local
100 public int read(byte[] buf, int off, int len) throws IOException { in read() method in S3ChecksumValidatingInputStream
106 int read = -1; in read() local
/external/glide/library/src/main/java/com/bumptech/glide/util/
DExceptionCatchingInputStream.java71 public int read(byte[] buffer) throws IOException { in read() method in ExceptionCatchingInputStream
72 int read; in read() local
83 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { in read() method in ExceptionCatchingInputStream
84 int read; in read() local
112 public int read() throws IOException { in read() method in ExceptionCatchingInputStream
/external/pigweed/pw_transfer/java/main/dev/pigweed/pw_transfer/
DTransferClient.java137 public ListenableFuture<byte[]> read(int resourceId) { in read() method in TransferClient
145 public ListenableFuture<byte[]> read( in read() method in TransferClient
154 public ListenableFuture<byte[]> read(int resourceId, TransferParameters parameters) { in read() method in TransferClient
162 public ListenableFuture<byte[]> read( in read() method in TransferClient
168 public ListenableFuture<byte[]> read(int resourceId, int initialOffset) { in read() method in TransferClient
177 public ListenableFuture<byte[]> read( in read() method in TransferClient
186 public ListenableFuture<byte[]> read( in read() method in TransferClient
200 public ListenableFuture<byte[]> read(int resourceId, in read() method in TransferClient
/external/aws-sdk-java-v2/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/io/
DChecksumValidatingInputStream.java60 public int read() throws IOException { in read() method in ChecksumValidatingInputStream
61 int read = -1; in read() local
87 public int read(byte[] buf, int off, int len) throws IOException { in read() method in ChecksumValidatingInputStream
89 int read = -1; in read() local
DSdkLengthAwareInputStream.java44 public int read() throws IOException { in read() method in SdkLengthAwareInputStream
50 int read = super.read(); in read() local
58 public int read(byte[] b, int off, int len) throws IOException { in read() method in SdkLengthAwareInputStream
65 int read = super.read(b, off, len); in read() local
/external/stg/
Dinput.cc44 const Time read(runtime, "read ABI"); in ReadInternal() local
48 const Time read(runtime, "read BTF"); in ReadInternal() local
52 const Time read(runtime, "read ELF"); in ReadInternal() local
56 const Time read(runtime, "read STG"); in ReadInternal() local
/external/apache-commons-io/src/main/java/org/apache/commons/io/input/
DUncheckedFilterReader.java127 public int read() throws UncheckedIOException { in read() method in UncheckedFilterReader
135 public int read(final char[] cbuf) throws UncheckedIOException { in read() method in UncheckedFilterReader
143 public int read(final char[] cbuf, final int off, final int len) throws UncheckedIOException { in read() method in UncheckedFilterReader
151 public int read(final CharBuffer target) throws UncheckedIOException { in read() method in UncheckedFilterReader
DUncheckedBufferedReader.java133 public int read() throws UncheckedIOException { in read() method in UncheckedBufferedReader
141 public int read(final char[] cbuf) throws UncheckedIOException { in read() method in UncheckedBufferedReader
149 public int read(final char[] cbuf, final int off, final int len) throws UncheckedIOException { in read() method in UncheckedBufferedReader
157 public int read(final CharBuffer target) throws UncheckedIOException { in read() method in UncheckedBufferedReader
DTeeReader.java99 public int read() throws IOException { in read() method in TeeReader
115 public int read(final char[] chr) throws IOException { in read() method in TeeReader
133 public int read(final char[] chr, final int st, final int end) throws IOException { in read() method in TeeReader
149 public int read(final CharBuffer target) throws IOException { in read() method in TeeReader
DProxyReader.java150 public int read() throws IOException { in read() method in ProxyReader
169 public int read(final char[] chr) throws IOException { in read() method in ProxyReader
190 public int read(final char[] chr, final int st, final int len) throws IOException { in read() method in ProxyReader
210 public int read(final CharBuffer target) throws IOException { in read() method in ProxyReader
/external/aws-sdk-java-v2/services-custom/iam-policy-builder/src/main/java/software/amazon/awssdk/policybuilder/iam/
DIamPolicyReader.java65 IamPolicy read(String policy); in read() method
75 IamPolicy read(InputStream policy); in read() method
85 IamPolicy read(byte[] policy); in read() method
/external/jazzer-api/src/main/java/com/code_intelligence/jazzer/mutation/support/
DInputStreamSupport.java98 public int read() throws IOException { in read() method in InputStreamSupport.ExtendWithNullInputStream
113 public int read(byte[] b, int off, int len) throws IOException { in read() method in InputStreamSupport.ExtendWithNullInputStream
160 public int read() throws IOException { in read() method in InputStreamSupport.CappedInputStream
173 public int read(byte[] b, int off, int len) throws IOException { in read() method in InputStreamSupport.CappedInputStream
227 public int read() throws IOException { in read() method in InputStreamSupport.ReadExactlyInputStream
236 public int read(byte[] b, int off, int len) throws IOException { in read() method in InputStreamSupport.ReadExactlyInputStream
237 int read = stream.read(b, off, len); in read() local
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/snappy/
DFramedSnappyCompressorInputStream.java140 public int read() throws IOException { in read() method in FramedSnappyCompressorInputStream
159 public int read(final byte[] b, final int off, final int len) throws IOException { in read() method in FramedSnappyCompressorInputStream
160 int read = readOnce(b, off, len); in read() local
199 int read = -1; in readOnce() local
271 final int read = IOUtils.readFully(in, b); in readCrc() local
293 final long read = IOUtils.skip(in, size); in skipBlock() local
302 final int read = IOUtils.readFully(in, b); in readStreamIdentifier() local
/external/jazzer-api/src/main/java/com/code_intelligence/jazzer/junit/
DSeedSerializer.java30 Object[] read(byte[] bytes); in read() method
69 public Object[] read(byte[] bytes) { in read() method in ByteArraySeedSerializer
81 public Object[] read(byte[] bytes) { in read() method in FuzzedDataProviderSeedSerializer
102 public Object[] read(byte[] bytes) { in read() method in ArgumentsMutatorSeedSerializer
130 public Object[] read(byte[] bytes) { in read() method in AutofuzzSeedSerializer
/external/mesa3d/src/intel/tools/
Daub_read.c74 parse_error(struct aub_read *read, const uint32_t *p, const char *fmt, ...) in parse_error()
90 handle_trace_header(struct aub_read *read, const uint32_t *p) in handle_trace_header()
120 handle_memtrace_version(struct aub_read *read, const uint32_t *p) in handle_memtrace_version()
145 handle_trace_block(struct aub_read *read, const uint32_t *p) in handle_trace_block()
189 handle_memtrace_reg_write(struct aub_read *read, const uint32_t *p) in handle_memtrace_reg_write()
273 do_write(struct aub_read *read, uint32_t address_space, uint64_t addr, const void *data, uint32_t s… in do_write()
299 handle_memtrace_mem_write(struct aub_read *read, const uint32_t *p) in handle_memtrace_mem_write()
310 handle_memtrace_mem_write_discont(struct aub_read *read, const uint32_t *p) in handle_memtrace_mem_write_discont()
331 aub_read_command(struct aub_read *read, const void *data, uint32_t data_len) in aub_read_command()
/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/
DJimfsInputStream.java53 public synchronized int read() throws IOException { in read() method in JimfsInputStream
75 public int read(byte[] b) throws IOException { in read() method in JimfsInputStream
80 public int read(byte[] b, int off, int len) throws IOException { in read() method in JimfsInputStream
93 int read = file.read(pos, b, off, len); in readInternal() local
/external/rust/crates/tokio/tests/
Dio_read_line.rs40 let mut read = BufReader::new(mock); in read_line_not_all_ready() localVariable
67 let mut read = BufReader::new(mock); in read_line_invalid_utf8() localVariable
83 let mut read = BufReader::new(mock); in read_line_fail() localVariable
100 let mut read = BufReader::new(mock); in read_line_fail_and_utf8_fail() localVariable
/external/android_onboarding/java/com/android/onboarding/contracts/
DIntentSerializer.kt39 fun read(intent: Intent): V in write() method
59 fun NodeAwareIntentScope.read(): V in NodeAwareIntentScope() method
64 override fun read(intent: Intent): V = NodeAwareIntentScope(nodeId, intent).use { it.read() } in <lambda>() method

12345678910>>...76