Home
last modified time | relevance | path

Searched refs:Unread (Results 1 – 8 of 8) sorted by relevance

/external/sfntly/cpp/src/sfntly/port/
Dmemory_input_stream.cc122 void MemoryInputStream::Unread(ByteVector* b) { in Unread() function in sfntly::MemoryInputStream
123 Unread(b, 0, b->size()); in Unread()
126 void MemoryInputStream::Unread(ByteVector* b, int32_t offset, int32_t length) { in Unread() function in sfntly::MemoryInputStream
Dfile_input_stream.cc130 void FileInputStream::Unread(ByteVector* b) { in Unread() function in sfntly::FileInputStream
131 Unread(b, 0, b->size()); in Unread()
134 void FileInputStream::Unread(ByteVector* b, int32_t offset, int32_t length) { in Unread() function in sfntly::FileInputStream
Dinput_stream.h43 virtual void Unread(ByteVector* b) = 0;
44 virtual void Unread(ByteVector* b, int32_t offset, int32_t length) = 0;
Dfile_input_stream.h43 virtual void Unread(ByteVector* b);
44 virtual void Unread(ByteVector* b, int32_t offset, int32_t length);
Dmemory_input_stream.h43 virtual void Unread(ByteVector* b);
44 virtual void Unread(ByteVector* b, int32_t offset, int32_t length);
/external/sfntly/cpp/src/test/
Dmemory_io_test.cc78 is.Unread(&b); in TestMemoryInputStream()
Dfile_io_test.cc81 is.Unread(&b3); in TestFileInputStream()
/external/sfntly/cpp/src/sfntly/
Dfont_factory.cc199 pbis->Unread(&tag); in IsCollection()