HomeSort by relevance Sort by last modified time
    Searched refs:ByteVector (Results 1 - 25 of 148) sorted by null

1 2 3 4 5 6

  /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);
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) {
memory_output_stream.cc 27 void MemoryOutputStream::Write(ByteVector* buffer) {
31 void MemoryOutputStream::Write(ByteVector* buffer,
file_input_stream.cc 79 int32_t FileInputStream::Read(ByteVector* b) {
83 int32_t FileInputStream::Read(ByteVector* b, int32_t offset, int32_t length) {
130 void FileInputStream::Unread(ByteVector* b) {
134 void FileInputStream::Unread(ByteVector* b, int32_t offset, int32_t length) {
  /external/annotation-tools/asmx/core/org/objectweb/asm/
ByteVector.class 
  /external/annotation-tools/asmx/src/org/objectweb/asm/
ByteVector.java 38 public class ByteVector {
51 * Constructs a new {@link ByteVector ByteVector} with a default initial
54 public ByteVector() {
59 * Constructs a new {@link ByteVector ByteVector} with the given initial
64 public ByteVector(final int initialSize) {
75 public ByteVector putByte(final int b) {
93 ByteVector put11(final int b1, final int b2) {
112 public ByteVector putShort(final int s)
    [all...]
Attribute.java 153 protected ByteVector write(
160 ByteVector v = new ByteVector();
244 final ByteVector out)
248 ByteVector b = attr.write(cw, code, len, maxStack, maxLocals);
TypePath.java 139 ByteVector out = new ByteVector(n);
  /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,
byte_array.h 58 virtual int32_t Get(int32_t index, ByteVector* b);
80 virtual int32_t Put(int32_t index, ByteVector* b);
  /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;
byte_array_test.cc 35 void ReadByteArrayWithBuffer(ByteArray* ba, ByteVector* buffer, ByteVector* b) {
47 ByteVector* b) {
65 ByteVector b1, b2;
70 ByteVector buffer(buffer_size);
chrome_subsetter.cc 36 sfntly::ByteVector input_buffer;
font_parsing_test.cc 35 ByteVector input_buffer;
65 ByteVector b;
82 ByteVector b1, b2;
117 ByteVector input_buffer;
  /external/sfntly/cpp/src/sfntly/
font_factory.h 59 void LoadFonts(ByteVector* b, FontArray* output);
75 void LoadFontsForBuilding(ByteVector* b, FontBuilderArray* output);
font.h 152 void SetDigest(ByteVector* digest);
229 ByteVector digest_;
239 ByteVector* digest() { return &digest_; }
303 Font(int32_t sfnt_version, ByteVector* digest);
341 ByteVector digest_;

Completed in 109 milliseconds

1 2 3 4 5 6