HomeSort by relevance Sort by last modified time
    Searched refs:Unread (Results 1 - 16 of 16) sorted by null

  /external/sfntly/cpp/src/sfntly/port/
file_input_stream.h 43 virtual void Unread(ByteVector* b);
44 virtual void Unread(ByteVector* b, int32_t offset, int32_t length);
input_stream.h 43 virtual void Unread(ByteVector* b) = 0;
44 virtual void Unread(ByteVector* b, int32_t offset, int32_t length) = 0;
memory_input_stream.h 43 virtual void Unread(ByteVector* b);
44 virtual void Unread(ByteVector* b, int32_t offset, int32_t length);
memory_input_stream.cc 122 void MemoryInputStream::Unread(ByteVector* b) {
123 Unread(b, 0, b->size());
126 void MemoryInputStream::Unread(ByteVector* b, int32_t offset, int32_t length) {
file_input_stream.cc 130 void FileInputStream::Unread(ByteVector* b) {
131 Unread(b, 0, b->size());
134 void FileInputStream::Unread(ByteVector* b, int32_t offset, int32_t length) {
  /external/sfntly/cpp/src/test/
memory_io_test.cc 78 is.Unread(&b);
file_io_test.cc 78 // Unread test
81 is.Unread(&b3);
  /external/sfntly/cpp/src/sfntly/
font_factory.cc 199 pbis->Unread(&tag);
  /prebuilts/go/darwin-x86/src/image/jpeg/
reader.go 99 // The n least significant bits of a form the unread bits, to be read in MSB to
104 n int32 // the number of unread bits in a.
111 // has to be able to unread more than 1 byte, due to byte stuffing.
153 // should only be called when there are no unread bytes in d.bytes.
156 panic("jpeg: fill called when unread bytes exist")
250 // Unread the overshot bytes, if any.
277 // Unread the overshot bytes, if any.
  /prebuilts/go/linux-x86/src/image/jpeg/
reader.go 99 // The n least significant bits of a form the unread bits, to be read in MSB to
104 n int32 // the number of unread bits in a.
111 // has to be able to unread more than 1 byte, due to byte stuffing.
153 // should only be called when there are no unread bytes in d.bytes.
156 panic("jpeg: fill called when unread bytes exist")
250 // Unread the overshot bytes, if any.
277 // Unread the overshot bytes, if any.
  /prebuilts/go/darwin-x86/src/bytes/
buffer.go 21 lastRead readOp // last read operation, so that Unread* can work correctly.
50 // Bytes returns a slice of length b.Len() holding the unread portion of the buffer.
57 // String returns the contents of the unread portion of the buffer
69 // empty returns whether the unread portion of the buffer is empty.
72 // Len returns the number of bytes of the unread portion of the buffer;
80 // Truncate discards all but the first n unread bytes from the buffer
373 // it is stricter than UnreadByte, which will unread the last byte
  /prebuilts/go/linux-x86/src/bytes/
buffer.go 21 lastRead readOp // last read operation, so that Unread* can work correctly.
50 // Bytes returns a slice of length b.Len() holding the unread portion of the buffer.
57 // String returns the contents of the unread portion of the buffer
69 // empty returns whether the unread portion of the buffer is empty.
72 // Len returns the number of bytes of the unread portion of the buffer;
80 // Truncate discards all but the first n unread bytes from the buffer
373 // it is stricter than UnreadByte, which will unread the last byte
  /prebuilts/go/darwin-x86/src/bufio/
bufio_test.go 280 t.Fatalf("incorrect rune after unread: got %c, want %c", r1, r2)
312 t.Fatalf("incorrect byte after unread: got %q, want %q", b1, b2)
335 // Unread one byte if there is one.
341 // Test that we cannot unread any further.
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/xml/
xml.go 961 // Unread a single byte.
    [all...]
  /prebuilts/go/linux-x86/src/bufio/
bufio_test.go 280 t.Fatalf("incorrect rune after unread: got %c, want %c", r1, r2)
312 t.Fatalf("incorrect byte after unread: got %q, want %q", b1, b2)
335 // Unread one byte if there is one.
341 // Test that we cannot unread any further.
    [all...]
  /prebuilts/go/linux-x86/src/encoding/xml/
xml.go 961 // Unread a single byte.
    [all...]

Completed in 407 milliseconds