Home
last modified time | relevance | path

Searched defs:read (Results 251 – 275 of 6627) sorted by relevance

1...<<11121314151617181920>>...266

/aosp_15_r20/out/soong/.intermediates/system/tools/xsdc/tests/resources/simple_complex_content/xsdc_simple_complex_content_tinyxml_tests/gen/cpp/
Dsimple_complex_content.cpp131 Address Address::read(tinyxml2::XMLElement *root) { in read() function in simple::complex::content::Address
214 USAddressP USAddressP::read(tinyxml2::XMLElement *root) { in read() function in simple::complex::content::USAddressP
309 KRAddress KRAddress::read(tinyxml2::XMLElement *root) { in read() function in simple::complex::content::KRAddress
392 SubAddress SubAddress::read(tinyxml2::XMLElement *root) { in read() function in simple::complex::content::SubAddress
511 Person Person::read(tinyxml2::XMLElement *root) { in read() function in simple::complex::content::Person
637 Person2 Person2::read(tinyxml2::XMLElement *root) { in read() function in simple::complex::content::Person2
/aosp_15_r20/external/rust/android-crates-io/crates/hound/src/
Dlib.rs65 mod read; module
88 fn read<R: io::Read>(reader: &mut R, SampleFormat, bytes: u16, bits: u16) -> Result<Self>; in read() method
201 fn read<R: io::Read>(reader: &mut R, fmt: SampleFormat, bytes: u16, bits: u16) -> Result<i8> { in read() method
237 fn read<R: io::Read>(reader: &mut R, fmt: SampleFormat, bytes: u16, bits: u16) -> Result<i16> { in read() method
274 fn read<R: io::Read>(reader: &mut R, fmt: SampleFormat, bytes: u16, bits: u16) -> Result<i32> { in read() method
307 fn read<R: io::Read>(reader: &mut R, fmt: SampleFormat, bytes: u16, bits: u16) -> Result<Self> { in read() method
/aosp_15_r20/out/soong/.intermediates/system/tools/xsdc/tests/resources/nested_type/xsdc_nested_type_tests/gen/cpp/
Dnested_type.cpp25 std::optional<Employee> read(const char* configFile) { in read() function
101 Employee::Address::Extra Employee::Address::Extra::read(xmlNode *root) { in read() function in nested::type::Employee::Address::Extra
169 Employee::Address::ExtraAddress Employee::Address::ExtraAddress::read(xmlNode *root) { in read() function in nested::type::Employee::Address::ExtraAddress
276 Employee::Address Employee::Address::read(xmlNode *root) { in read() function in nested::type::Employee::Address
403 Employee Employee::read(xmlNode *root) { in read() function in nested::type::Employee
/aosp_15_r20/external/okio/okio/src/commonMain/kotlin/okio/
H A DFileHandle.kt63 fun read( in read() method in okio.FileHandle
80 fun read(fileOffset: Long, sink: Buffer, byteCount: Long): Long { in read() method
424 override fun read(sink: Buffer, byteCount: Long): Long { in read() method in okio.FileHandle.FileHandleSource
/aosp_15_r20/external/apache-commons-compress/src/main/java/org/apache/commons/compress/utils/
H A DChecksumVerifyingInputStream.java51 public int read() throws IOException { in read() method in ChecksumVerifyingInputStream
73 public int read(final byte[] b) throws IOException { in read() method in ChecksumVerifyingInputStream
84 public int read(final byte[] b, final int off, final int len) throws IOException { in read() method in ChecksumVerifyingInputStream
/aosp_15_r20/external/apache-commons-io/src/main/java/org/apache/commons/io/input/
H A DUnsynchronizedFilterInputStream.java171 public int read() throws IOException { in read() method in UnsynchronizedFilterInputStream
184 public int read(final byte[] buffer) throws IOException { in read() method in UnsynchronizedFilterInputStream
200 public int read(final byte[] buffer, final int offset, final int count) throws IOException { in read() method in UnsynchronizedFilterInputStream
/aosp_15_r20/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/file/common/internal/
H A DLazyByteArrayInputStream.java76 public int read() throws IOException { in read() method in LazyByteArrayInputStream
82 public int read(byte[] b) throws IOException { in read() method in LazyByteArrayInputStream
88 public int read(byte[] b, int off, int len) throws IOException { in read() method in LazyByteArrayInputStream
/aosp_15_r20/external/aws-sdk-java-v2/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/internal/response/
H A DAbortableInputStreamSubscriber.java48 public int read() throws IOException { in read() method in AbortableInputStreamSubscriber
53 public int read(byte[] b, int off, int len) throws IOException { in read() method in AbortableInputStreamSubscriber
58 public int read(byte[] b) throws IOException { in read() method in AbortableInputStreamSubscriber
/aosp_15_r20/device/google/trout/hal/dumpstate/1.1/config/
Ddumpstate_hal_configuration_V1_0.cpp107 Service Service::read(xmlNode* root) { in read() function in dumpstate::hal::configuration::V1_0::Service
142 Services Services::read(xmlNode* root) { in read() function in dumpstate::hal::configuration::V1_0::Services
172 SystemLogs SystemLogs::read(xmlNode* root) { in read() function in dumpstate::hal::configuration::V1_0::SystemLogs
228 DumpstateHalConfiguration DumpstateHalConfiguration::read(xmlNode* root) { in read() function in dumpstate::hal::configuration::V1_0::DumpstateHalConfiguration
/aosp_15_r20/packages/providers/MediaProvider/src/com/android/providers/media/util/
DXmpDataParser.java278 public int read(byte[] b) throws IOException { in read() method in XmpDataParser.ByteCountingInputStream
283 public int read(byte[] b, int off, int len) throws IOException { in read() method in XmpDataParser.ByteCountingInputStream
284 final int read = mWrapped.read(b, off, len); in read() local
298 public int read() throws IOException { in read() method in XmpDataParser.ByteCountingInputStream
/aosp_15_r20/external/jsoup/src/test/java/org/jsoup/helper/
H A DDataUtilTest.java243 public int read() throws IOException { in read() method in DataUtilTest.VaryingReadInputStream
247 public int read(byte[] b) throws IOException { in read() method in DataUtilTest.VaryingReadInputStream
251 public int read(byte[] b, int off, int len) throws IOException { in read() method in DataUtilTest.VaryingReadInputStream
274 String read = new String(byteBuffer.array()); in handlesUnlimitedRead() local
/aosp_15_r20/external/mobile-data-download/javatests/com/google/android/libraries/mobiledatadownload/file/openers/
H A DStreamMutationOpenerAndroidTest.java81 String read = new String(ByteStreams.toByteArray(in), UTF_8); in interleaveMutations_withoutLocking_lacksIsolation() local
113 String read = new String(ByteStreams.toByteArray(in), UTF_8); in run() local
155 String read = new String(ByteStreams.toByteArray(in), UTF_8); in interleaveMutations_withLocking() local
179 String read = new String(ByteStreams.toByteArray(in), UTF_8); in run() local
/aosp_15_r20/out/soong/.intermediates/frameworks/base/services/core/xsd/default-permissions/gen/cpp/
Dcom_android_server_pm_permission_configfile.cpp38 std::optional<Exceptions> read(const char* configFile) { in read() function
124 Exception Exception::read(xmlNode *root) { in read() function in com::android::server::pm::permission::configfile::Exception
176 Permission Permission::read(xmlNode *root) { in read() function in com::android::server::pm::permission::configfile::Permission
212 Exceptions Exceptions::read(xmlNode *root) { in read() function in com::android::server::pm::permission::configfile::Exceptions
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/datasource/src/main/java/com/google/android/exoplayer2/upstream/
H A DDataSourceInputStream.java66 public int read() throws IOException { in read() method in DataSourceInputStream
72 public int read(byte[] buffer) throws IOException { in read() method in DataSourceInputStream
77 public int read(byte[] buffer, int offset, int length) throws IOException { in read() method in DataSourceInputStream
/aosp_15_r20/external/apache-http/src/org/apache/http/impl/io/
H A DContentLengthInputStream.java143 public int read() throws IOException { in read() method in ContentLengthInputStream
167 public int read (byte[] b, int off, int len) throws java.io.IOException { in read() method in ContentLengthInputStream
192 public int read(byte[] b) throws IOException { in read() method in ContentLengthInputStream
/aosp_15_r20/libcore/ojluni/src/main/java/java/io/
H A DInputStreamReader.java156 public int read(CharBuffer target) throws IOException { in read() method in InputStreamReader
168 public int read() throws IOException { in read() method in InputStreamReader
176 public int read(char[] cbuf, int off, int len) throws IOException { in read() method in InputStreamReader
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/io/
DInputStreamReader.java156 public int read(CharBuffer target) throws IOException { in read() method in InputStreamReader
168 public int read() throws IOException { in read() method in InputStreamReader
176 public int read(char[] cbuf, int off, int len) throws IOException { in read() method in InputStreamReader
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/0/libcore/ojluni/src/main/java/java/io/
DInputStreamReader.java156 public int read(CharBuffer target) throws IOException { in read() method in InputStreamReader
168 public int read() throws IOException { in read() method in InputStreamReader
176 public int read(char[] cbuf, int off, int len) throws IOException { in read() method in InputStreamReader
/aosp_15_r20/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/file/
H A DMonitorInputStream.java56 public int read() throws IOException { in read() method in MonitorInputStream
68 public int read(byte[] b) throws IOException { in read() method in MonitorInputStream
79 public int read(byte[] b, int off, int len) throws IOException { in read() method in MonitorInputStream
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/datasource/src/main/java/com/google/android/exoplayer2/upstream/
H A DDataSourceInputStream.java66 public int read() throws IOException { in read() method in DataSourceInputStream
72 public int read(byte[] buffer) throws IOException { in read() method in DataSourceInputStream
77 public int read(byte[] buffer, int offset, int length) throws IOException { in read() method in DataSourceInputStream
/aosp_15_r20/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/brotli/
H A DBrotliCompressorInputStream.java56 public int read(final byte[] b) throws IOException { in read() method in BrotliCompressorInputStream
76 public int read() throws IOException { in read() method in BrotliCompressorInputStream
83 public int read(final byte[] buf, final int off, final int len) throws IOException { in read() method in BrotliCompressorInputStream
/aosp_15_r20/libcore/support/src/test/java/tests/support/
H A DSupport_StringReader.java118 public int read() throws IOException { in read() method in Support_StringReader
148 public int read(char buf[], int offset, int count) throws IOException { in read() method in Support_StringReader
160 int read = end - pos; in read() local
/aosp_15_r20/libcore/ojluni/annotations/mmodule/java/io/
H A DFileInputStream.annotated.java44 public int read() throws java.io.IOException { throw new RuntimeException("Stub!"); } in read() method in FileInputStream
46 public int read(byte[] b) throws java.io.IOException { throw new RuntimeException("Stub!"); } in read() method in FileInputStream
48 public int read(byte[] b, int off, int len) throws java.io.IOException { throw new RuntimeException… in read() method in FileInputStream
/aosp_15_r20/external/tink/java_src/src/main/java/com/google/crypto/tink/streamingaead/
H A DInputStreamDecrypter.java121 public synchronized int read() throws IOException { in read() method in InputStreamDecrypter
131 public synchronized int read(byte[] b) throws IOException { in read() method in InputStreamDecrypter
137 public synchronized int read(byte[] b, int offset, int len) throws IOException { in read() method in InputStreamDecrypter
/aosp_15_r20/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/zstandard/
H A DZstdCompressorInputStream.java57 public int read(final byte[] b) throws IOException { in read() method in ZstdCompressorInputStream
77 public int read() throws IOException { in read() method in ZstdCompressorInputStream
84 public int read(final byte[] buf, final int off, final int len) throws IOException { in read() method in ZstdCompressorInputStream

1...<<11121314151617181920>>...266