OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ByteVector
(Results
1 - 25
of
112
) sorted by null
1
2
3
4
5
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
file_input_stream.h
37
virtual int32_t Read(
ByteVector
* b);
38
virtual int32_t Read(
ByteVector
* b, int32_t offset, int32_t length);
43
virtual void Unread(
ByteVector
* b);
44
virtual void Unread(
ByteVector
* b, int32_t offset, int32_t length);
input_stream.h
35
virtual int32_t Read(
ByteVector
* b) = 0;
36
virtual int32_t Read(
ByteVector
* b, int32_t offset, int32_t length) = 0;
43
virtual void Unread(
ByteVector
* b) = 0;
44
virtual void Unread(
ByteVector
* b, int32_t offset, int32_t length) = 0;
memory_input_stream.h
37
virtual int32_t Read(
ByteVector
* b);
38
virtual int32_t Read(
ByteVector
* b, int32_t offset, int32_t length);
43
virtual void Unread(
ByteVector
* b);
44
virtual void Unread(
ByteVector
* b, int32_t offset, int32_t length);
output_stream.h
32
virtual void Write(
ByteVector
* buffer) = 0;
38
virtual void Write(
ByteVector
* buffer, int32_t offset, int32_t length) = 0;
memory_output_stream.h
37
virtual void Write(
ByteVector
* buffer);
38
virtual void Write(
ByteVector
* buffer, int32_t offset, int32_t length);
memory_input_stream.cc
73
int32_t MemoryInputStream::Read(
ByteVector
* b) {
77
int32_t MemoryInputStream::Read(
ByteVector
* b, int32_t offset, int32_t length) {
122
void MemoryInputStream::Unread(
ByteVector
* b) {
126
void MemoryInputStream::Unread(
ByteVector
* b, int32_t offset, int32_t length) {
/external/sfntly/cpp/src/sfntly/port/
file_input_stream.h
37
virtual int32_t Read(
ByteVector
* b);
38
virtual int32_t Read(
ByteVector
* b, int32_t offset, int32_t length);
43
virtual void Unread(
ByteVector
* b);
44
virtual void Unread(
ByteVector
* b, int32_t offset, int32_t length);
input_stream.h
35
virtual int32_t Read(
ByteVector
* b) = 0;
36
virtual int32_t Read(
ByteVector
* b, int32_t offset, int32_t length) = 0;
43
virtual void Unread(
ByteVector
* b) = 0;
44
virtual void Unread(
ByteVector
* b, int32_t offset, int32_t length) = 0;
memory_input_stream.h
37
virtual int32_t Read(
ByteVector
* b);
38
virtual int32_t Read(
ByteVector
* b, int32_t offset, int32_t length);
43
virtual void Unread(
ByteVector
* b);
44
virtual void Unread(
ByteVector
* b, int32_t offset, int32_t length);
output_stream.h
32
virtual void Write(
ByteVector
* buffer) = 0;
38
virtual void Write(
ByteVector
* buffer, int32_t offset, int32_t length) = 0;
memory_output_stream.h
37
virtual void Write(
ByteVector
* buffer);
38
virtual void Write(
ByteVector
* buffer, int32_t offset, int32_t length);
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
font_input_stream.h
70
virtual int32_t Read(
ByteVector
* buffer);
71
virtual int32_t Read(
ByteVector
* buffer, int32_t offset, int32_t length);
font_output_stream.h
54
virtual void Write(
ByteVector
* b);
55
virtual void Write(
ByteVector
* b, int32_t off, int32_t len);
writable_font_data.h
45
static CALLER_ATTACH WritableFontData* CreateWritableFontData(
ByteVector
* b);
70
virtual int32_t WriteBytes(int32_t index,
ByteVector
* b);
83
ByteVector
* b,
/external/sfntly/cpp/src/sfntly/data/
font_input_stream.h
70
virtual int32_t Read(
ByteVector
* buffer);
71
virtual int32_t Read(
ByteVector
* buffer, int32_t offset, int32_t length);
font_output_stream.h
54
virtual void Write(
ByteVector
* b);
55
virtual void Write(
ByteVector
* b, int32_t off, int32_t len);
writable_font_data.h
45
static CALLER_ATTACH WritableFontData* CreateWritableFontData(
ByteVector
* b);
70
virtual int32_t WriteBytes(int32_t index,
ByteVector
* b);
83
ByteVector
* b,
/external/chromium_org/third_party/sfntly/cpp/src/test/
test_font_utils.h
34
void LoadFile(const char* input_file_path,
ByteVector
* input_buffer);
open_type_data_test.cc
27
ByteVector
bytes;
46
ByteVector
source_bytes(1024);
53
ByteVector
destination_bytes(1024);
file_io_test.cc
39
ByteVector
b1;
49
ByteVector
b2;
79
ByteVector
b3;
100
ByteVector
b1;
111
ByteVector
b2;
139
ByteVector
feat_data;
memory_io_test.cc
37
ByteVector
test_buffer;
51
ByteVector
b;
85
ByteVector
test_buffer;
/external/sfntly/cpp/src/test/
test_font_utils.h
34
void LoadFile(const char* input_file_path,
ByteVector
* input_buffer);
open_type_data_test.cc
27
ByteVector
bytes;
46
ByteVector
source_bytes(1024);
53
ByteVector
destination_bytes(1024);
file_io_test.cc
39
ByteVector
b1;
49
ByteVector
b2;
79
ByteVector
b3;
100
ByteVector
b1;
111
ByteVector
b2;
139
ByteVector
feat_data;
memory_io_test.cc
37
ByteVector
test_buffer;
51
ByteVector
b;
85
ByteVector
test_buffer;
Completed in 606 milliseconds
1
2
3
4
5