/external/sfntly/cpp/src/sfntly/table/ |
subtable.cc | 17 #include "sfntly/table/subtable.h" 21 * SubTable class 23 SubTable::~SubTable() {} 25 SubTable::SubTable(ReadableFontData* data, ReadableFontData* master_data) 30 SubTable::SubTable(ReadableFontData* data) 35 * SubTable::Builder class 37 SubTable::Builder::~Builder() [all...] |
subtable.h | 28 class SubTable : public FontDataTable { 35 // @param data the data for the subtable being built 49 virtual ~SubTable(); 53 // subtable. 57 SubTable(ReadableFontData* data, ReadableFontData* master_data); 61 explicit SubTable(ReadableFontData* data); 66 // The data for the whole table in which this subtable is contained.
|
/external/sfntly/cpp/src/sfntly/table/bitmap/ |
glyph_metrics.cc | 25 : SubTable(data) { 32 : SubTable::Builder(data) { 36 : SubTable::Builder(data) {
|
glyph_metrics.h | 20 #include "sfntly/table/subtable.h" 24 class GlyphMetrics : public SubTable { 29 class Builder : public SubTable::Builder {
|
bitmap_glyph.cc | 40 : SubTable(data), format_(format) { 72 : SubTable::Builder(data), format_(format) { 76 : SubTable::Builder(data), format_(format) {
|
bitmap_glyph.h | 23 #include "sfntly/table/subtable.h" 27 class BitmapGlyph : public SubTable { 75 class Builder : public SubTable::Builder {
|
index_sub_table.cc | 68 : SubTable(data), 138 throw IllegalArgumentException("Invalid index subtable format"); 182 throw IllegalArgumentException("Invalid Index Subtable Format"); 213 : SubTable::Builder(data_size), 225 : SubTable::Builder(data_size), 236 : SubTable::Builder(data), 245 : SubTable::Builder(data),
|
ebsc_table.h | 50 class BitmapScaleTable : public SubTable,
|
bitmap_size_table.h | 31 class BitmapSizeTable : public SubTable, 34 class Builder : public SubTable::Builder, 66 // Gets the subtable array offset as set in the original table as read from 69 // @return the subtable array offset 72 // Sets the subtable array offset. This is used only during the building 74 // @param offset the offset to the index subtable array 77 // Gets the subtable array size as set in the original table as read from 80 // @return the subtable array size 83 // Sets the subtable size. This is used only during the building process 85 // @param size the offset to the index subtable arra [all...] |
index_sub_table.h | 23 #include "sfntly/table/subtable.h" 28 class IndexSubTable : public SubTable { 40 class Builder : public SubTable::Builder { 69 // subtable.
|
ebsc_table.cc | 45 : SubTable(data) {
|
bitmap_size_table.cc | 88 IndexSubTable* subtable = SearchIndexSubTables(glyph_id); local 89 if (subtable == NULL) { 92 return subtable->GlyphOffset(glyph_id); 96 IndexSubTable* subtable = SearchIndexSubTables(glyph_id); local 97 if (subtable == NULL) { 100 return subtable->GlyphLength(glyph_id); 112 IndexSubTable* subtable = SearchIndexSubTables(glyph_id); local 113 if (subtable == NULL) { 116 return subtable->image_format(); 121 : SubTable(data, master_data) 160 IndexSubTable* subtable = (*subtable_list)[index]; local 339 IndexSubTable::Builder* subtable = SearchIndexSubTables(glyph_id); local 347 IndexSubTable::Builder* subtable = SearchIndexSubTables(glyph_id); local 355 IndexSubTable::Builder* subtable = SearchIndexSubTables(glyph_id); local 437 IndexSubTable::Builder* subtable = subtable_list->at(index); local [all...] |
/external/sfntly/cpp/src/sfntly/table/truetype/ |
glyph_table.h | 23 #include "sfntly/table/subtable.h" 39 class Glyph : public SubTable { 48 class Builder : public SubTable::Builder {
|
glyph_table.cc | 229 return SubTable::Padding(); 257 : SubTable(data), 287 : SubTable::Builder(data) { 291 : SubTable::Builder(data) {
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
otTables.py | 371 # I don't need to calculate the change in the subtable offset due to the change in the coverage table size. 372 # Allows packing more rules in subtable. 440 # Allows packing more rules in subtable. 475 # For each subtable format there is a class. However, we don't really distinguish 515 an offset from a lookup to a subtable overflowed. 522 SubTable offset list 523 SubTable[0] and contents 525 SubTable[n] and contents 528 SubTable offset list 529 SubTable[0] and content [all...] |
otConverters.py | 22 elif name == "SubTable": 23 converterClass = SubTable 36 if name in ["SubTable", "ExtSubTable"]: 268 class SubTable(Table): 274 class ExtSubTable(LTable, SubTable): 277 writer.Extension = 1 # actually, mere presence of the field flags it as an Ext Subtable writer.
|
/external/sfntly/cpp/src/sfntly/table/core/ |
cmap_table.h | 28 #include "sfntly/table/subtable.h" 33 // CMap subtable formats 118 class CMap : public SubTable { 121 class Builder : public SubTable::Builder { 193 // subtable plus one, or to zero if the cmap subtable is not 194 // language-specific. For example, a Mac OS Turkish cmap subtable must set 196 // Mac OS Roman cmap subtable must set this field to 0, since Mac OS Roman
|
cmap_table.cc | 235 : SubTable(data), format_(format), cmap_id_(cmap_id) { 303 : SubTable::Builder(data), 312 : SubTable::Builder(data), [all...] |
/external/fonttools/Lib/fontTools/ |
subset.py | 799 for st in self.SubTable: 806 for st in self.SubTable: 813 self.SubTable = [st for st in self.SubTable if st and st.subset_glyphs(s)] 814 self.SubTableCount = len(self.SubTable) 820 for st in self.SubTable: 827 for s in self.SubTable: 832 return _uniq_sort(sum((st.collect_lookups() for st in self.SubTable 837 return any(st.may_have_non_1to1() for st in self.SubTable if st) [all...] |
merge.py | 480 subtable = otTables.SingleSubst() 481 subtable.mapping = dups 486 synthLookup.SubTable = [subtable] 582 for st in self.SubTable:
|
/external/noto-fonts/emoji-compat/ |
createfont.py | 480 for subtable in lookup.SubTable: 481 if hasattr(subtable, 'ligatures'): 482 for name, ligatures in subtable.ligatures.iteritems():
|
/frameworks/base/tools/fonts/ |
fontchain_lint.py | 133 for subtable in lookup.SubTable: 134 ligatures = subtable.ligatures
|