Home
last modified time | relevance | path

Searched refs:ReadUByte (Results 1 – 7 of 7) sorted by relevance

/external/sfntly/cpp/src/sfntly/data/
Dreadable_font_data.cc62 int32_t ReadableFontData::ReadUByte(int32_t index) { in ReadUByte() function in sfntly::ReadableFontData
94 return ReadUByte(index); in ReadChar()
98 int32_t b1 = ReadUByte(index); in ReadUShort()
101 int32_t b2 = ReadUByte(index + 1); in ReadUShort()
111 int32_t b2 = ReadUByte(index + 1); in ReadShort()
120 int32_t b1 = ReadUByte(index); in ReadUInt24()
123 int32_t b2 = ReadUByte(index + 1); in ReadUInt24()
126 int32_t b3 = ReadUByte(index + 2); in ReadUInt24()
133 int32_t b1 = ReadUByte(index); in ReadULong()
136 int32_t b2 = ReadUByte(index + 1); in ReadULong()
[all …]
Dreadable_font_data.h81 virtual int32_t ReadUByte(int32_t index);
/external/sfntly/cpp/src/sfntly/table/core/
Dhorizontal_device_metrics_table.cc44 return data_->ReadUByte(Offset::kRecords + record_index * RecordSize() + in PixelSize()
55 return data_->ReadUByte(Offset::kRecords + record_index * RecordSize() + in MaxWidth()
68 return data_->ReadUByte(Offset::kRecords + record_index * RecordSize() + in Width()
Dcmap_table.cc351 return data_->ReadUByte(character + Offset::kFormat0GlyphIdArray); in GlyphId()
/external/sfntly/cpp/src/test/
Dendian_test.cc44 EXPECT_EQ(rfd->ReadUByte(4), 202); in TestEndian()
Dopen_type_data_test.cc35 EXPECT_EQ(0xff, data->ReadUByte(0)); in TestOTFRead()
/external/sfntly/cpp/src/sfntly/table/truetype/
Dglyph_table.cc455 data_->ReadUByte(x_coordinates_offset_ + x_byte_index); in ParseData()
478 data_->ReadUByte(y_coordinates_offset_ + y_byte_index); in ParseData()
502 return data_->ReadUByte(flags_offset_ + index * DataSize::kBYTE); in FlagAsInt()