Home
last modified time | relevance | path

Searched refs:readFrom (Results 1 – 18 of 18) sorted by relevance

/external/turbine/java/com/google/turbine/parse/
DStreamLexer.java38 private int readFrom; field in StreamLexer
54 private void readFrom() { in readFrom() method in StreamLexer
56 readFrom = reader.position(); in readFrom()
69 return reader.readString(readFrom, reader.position()); in stringValue()
256 readFrom(); in next()
305 readFrom(); in next()
309 readFrom(); in next()
364 readFrom(); in next()
980 readFrom(); in identifier()
/external/syzkaller/vendor/golang.org/x/net/http2/
Ddatabuffer.go83 readFrom := b.bytesFromFirstChunk()
84 n := copy(p, readFrom)
/external/protobuf/java/core/src/test/java/com/google/protobuf/
DByteStringTest.java177 ByteString.readFrom(new ByteArrayInputStream(new byte[0])); in testReadFrom_emptyStream()
189 ByteString byteString = ByteString.readFrom(eis); in testReadFrom_mutating()
256 ByteString.readFrom(new FailStream()); in testReadFrom_IOExceptions()
270 ByteString byteString = ByteString.readFrom(new ReluctantStream(data)); in testReadFrom_reluctantStream()
288 ByteString b = ByteString.readFrom(new ReluctantStream(bytes), chunkSize); in assertReadFromReluctantStream()
298 ByteString byteString = ByteString.readFrom(new AvailableStream(data)); in testReadFrom_available()
306 ByteString.readFrom(new ByteArrayInputStream(bytes)); in assertReadFrom()
/external/jarjar/src/main/com/tonicsystems/jarjar/util/
DClassHeaderReader.java131 bin.readFrom(b, items[index]); in readClass()
180 public void readFrom(byte[] buf, int pos) { in readFrom() method in ClassHeaderReader.MyByteArrayInputStream
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DByteString.java417 public static ByteString readFrom(InputStream streamToDrain) in readFrom() method
419 return readFrom(streamToDrain, MIN_READ_FROM_CHUNK_SIZE, MAX_READ_FROM_CHUNK_SIZE); in readFrom()
443 public static ByteString readFrom(InputStream streamToDrain, int chunkSize) in readFrom() method
445 return readFrom(streamToDrain, chunkSize, chunkSize); in readFrom()
449 public static ByteString readFrom(InputStream streamToDrain, int minChunkSize, in readFrom() method
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DDexBackedAnnotationElement.java48 this.value = DexBackedEncodedValue.readFrom(reader); in DexBackedAnnotationElement()
DDexBackedMethodImplementation.java83 Instruction instruction = DexBackedInstruction.readFrom(reader); in getInstructions()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
DStaticInitialValueIterator.java75 return DexBackedEncodedValue.readFrom(reader); in getNextOrNull()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/value/
DDexBackedArrayEncodedValue.java74 return DexBackedEncodedValue.readFrom(dexReader); in getValue()
DDexBackedEncodedValue.java45 public static EncodedValue readFrom(@Nonnull DexReader reader) { in readFrom() method in DexBackedEncodedValue
/external/okhttp/okio/okio/src/main/java/okio/
DBuffer.java226 public Buffer readFrom(InputStream in) throws IOException {
227 readFrom(in, Long.MAX_VALUE, true);
232 public Buffer readFrom(InputStream in, long byteCount) throws IOException {
234 readFrom(in, byteCount, false);
238 private void readFrom(InputStream in, long byteCount, boolean forever) throws IOException {
/external/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/
DBuffer.java228 public Buffer readFrom(InputStream in) throws IOException {
229 readFrom(in, Long.MAX_VALUE, true);
234 public Buffer readFrom(InputStream in, long byteCount) throws IOException {
236 readFrom(in, byteCount, false);
240 private void readFrom(InputStream in, long byteCount, boolean forever) throws IOException {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DDexBackedInstruction.java60 public static Instruction readFrom(@Nonnull DexReader reader) { in readFrom() method in DexBackedInstruction
/external/okhttp/okio/okio/src/test/java/okio/
DBufferTest.java281 buffer.readFrom(in); in readFromStream()
289 buffer.readFrom(in); in readFromSpanningSegments()
297 buffer.readFrom(in, 10); in readFromStreamWithCount()
/external/guava/guava/src/com/google/common/hash/
DBloomFilter.java444 public static <T> BloomFilter<T> readFrom(InputStream in, Funnel<T> funnel) throws IOException {
/external/grpc-grpc-java/interop-testing/src/main/java/io/grpc/testing/integration/
DTestServiceImpl.java446 buffer = ByteString.readFrom(inputStream);
/external/guava/guava-tests/test/com/google/common/hash/
DBloomFilterTest.java458 assertEquals(bf, BloomFilter.readFrom(new ByteArrayInputStream(out.toByteArray()), funnel)); in testCustomSerialization()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
DCodeItem.java121 Instruction instruction = DexBackedInstruction.readFrom(reader); in makeAnnotator()