OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MemoryByteArray
(Results
1 - 7
of
7
) sorted by null
/external/sfntly/cpp/src/sfntly/data/
memory_byte_array.cc
23
MemoryByteArray
::
MemoryByteArray
(int32_t length)
27
MemoryByteArray
::
MemoryByteArray
(byte_t* b, int32_t filled_length)
32
MemoryByteArray
::~
MemoryByteArray
() {
36
int32_t
MemoryByteArray
::CopyTo(OutputStream* os,
44
void
MemoryByteArray
::Init() {
51
void
MemoryByteArray
::InternalPut(int32_t index, byte_t b) {
56
int32_t
MemoryByteArray
::InternalPut(int32_t index
[
all
...]
memory_byte_array.h
24
class
MemoryByteArray
: public ByteArray, public RefCounted<
MemoryByteArray
> {
26
// Construct a new
MemoryByteArray
with a new array of the size given. It is
28
explicit
MemoryByteArray
(int32_t length);
31
//explicit
MemoryByteArray
(ByteVector* b);
33
// Construct a new
MemoryByteArray
using byte array.
40
MemoryByteArray
(byte_t* b, int32_t filled_length);
42
virtual ~
MemoryByteArray
();
writable_font_data.cc
37
ba = new
MemoryByteArray
(length);
readable_font_data.cc
43
ByteArrayPtr ba = new
MemoryByteArray
(b->size());
/external/sfntly/cpp/src/test/
open_type_data_test.cc
31
ByteArrayPtr array = new
MemoryByteArray
(&(bytes[0]), bytes.size());
50
ByteArrayPtr source_array = new
MemoryByteArray
(&(source_bytes[0]), 1024);
55
new
MemoryByteArray
(&(destination_bytes[0]), 1024);
byte_array_test.cc
94
ByteArrayPtr fixed_copy = new
MemoryByteArray
(ba->Length());
119
ByteArrayPtr ba = new
MemoryByteArray
(size);
font_data_test.cc
306
ByteArrayPtr ba = new
MemoryByteArray
(size);
317
ByteArrayPtr ba = new
MemoryByteArray
(size);
321
ByteArrayPtr temp = new
MemoryByteArray
(size);
Completed in 694 milliseconds