Searched refs:Unread (Results 1 – 8 of 8) sorted by relevance
/external/sfntly/cpp/src/sfntly/port/ |
D | memory_input_stream.cc | 122 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
|
D | file_input_stream.cc | 130 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
|
D | input_stream.h | 43 virtual void Unread(ByteVector* b) = 0; 44 virtual void Unread(ByteVector* b, int32_t offset, int32_t length) = 0;
|
D | file_input_stream.h | 43 virtual void Unread(ByteVector* b); 44 virtual void Unread(ByteVector* b, int32_t offset, int32_t length);
|
D | memory_input_stream.h | 43 virtual void Unread(ByteVector* b); 44 virtual void Unread(ByteVector* b, int32_t offset, int32_t length);
|
/external/sfntly/cpp/src/test/ |
D | memory_io_test.cc | 78 is.Unread(&b); in TestMemoryInputStream()
|
D | file_io_test.cc | 81 is.Unread(&b3); in TestFileInputStream()
|
/external/sfntly/cpp/src/sfntly/ |
D | font_factory.cc | 199 pbis->Unread(&tag); in IsCollection()
|