Home
last modified time | relevance | path

Searched refs:GetTable (Results 1 - 25 of 25) sorted by relevance

/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/core/
H A Dfont_header_table.cc122 return down_cast<FontHeaderTable*>(GetTable())->TableVersion(); in TableVersion()
130 return down_cast<FontHeaderTable*>(GetTable())->FontRevision(); in FontRevision()
138 return down_cast<FontHeaderTable*>(GetTable())->ChecksumAdjustment(); in ChecksumAdjustment()
146 return down_cast<FontHeaderTable*>(GetTable())->MagicNumber(); in MagicNumber()
154 return down_cast<FontHeaderTable*>(GetTable())->FlagsAsInt(); in FlagsAsInt()
162 return down_cast<FontHeaderTable*>(GetTable())->UnitsPerEm(); in UnitsPerEm()
170 return down_cast<FontHeaderTable*>(GetTable())->Created(); in Created()
178 return down_cast<FontHeaderTable*>(GetTable())->Modified(); in Modified()
186 return down_cast<FontHeaderTable*>(GetTable())->XMin(); in XMin()
194 return down_cast<FontHeaderTable*>(GetTable()) in YMin()
[all...]
H A Dhorizontal_metrics_table.cc126 down_cast<HorizontalMetricsTable*>(this->GetTable()); in SetNumberOfHMetrics()
134 down_cast<HorizontalMetricsTable*>(this->GetTable()); in SetNumGlyphs()
H A Dhorizontal_device_metrics_table.cc110 down_cast<HorizontalDeviceMetricsTable*>(GetTable()); in SetNumGlyphs()
/third_party/skia/third_party/externals/sfntly/cpp/src/sample/subtly/
H A Dfont_info.cc79 FontDataTable* FontInfo::GetTable(FontId font_id, int32_t tag) { in GetTable() function in subtly::FontInfo
85 return it->second->GetTable(tag); in GetTable()
129 Ptr<CMapTable> cmap_table = down_cast<CMapTable*>(font_->GetTable(Tag::cmap)); in Initialize()
136 loca_table_ = down_cast<LocaTable*>(font_->GetTable(Tag::loca)); in Initialize()
137 glyph_table_ = down_cast<GlyphTable*>(font_->GetTable(Tag::glyf)); in Initialize()
H A Dfont_assembler.cc159 down_cast<LocaTable*>(font_info_->GetTable(it->first, Tag::loca)); in AssembleGlyphAndLocaTables()
172 (font_info_->GetTable(font_info_->fonts()->begin()->first, Tag::loca)); in AssembleGlyphAndLocaTables()
189 (font_info_->GetTable(font_id, Tag::loca)); in AssembleGlyphAndLocaTables()
196 (font_info_->GetTable(font_id, Tag::glyf)); in AssembleGlyphAndLocaTables()
H A Dstats.cc38 TablePtr table = font->GetTable(tag); in TableSizePercent()
53 Ptr<FontDataTable> new_table = new_font->GetTable(it->first); in PrintComparison()
H A Dfont_info.h77 virtual sfntly::FontDataTable* GetTable(FontId font_id, int32_t tag);
/third_party/skia/third_party/externals/sfntly/cpp/src/test/
H A Dserialization_test.cc68 TablePtr original_table = original->GetTable(TTF_KNOWN_TAGS[i]); in TestSerialization()
69 TablePtr serialized_table = serialized->GetTable(TTF_KNOWN_TAGS[i]); in TestSerialization()
133 TablePtr original_table = original->GetTable(BITMAP_KNOWN_TAGS[i]); in TestSerializationBitmap()
134 TablePtr serialized_table = serialized->GetTable(BITMAP_KNOWN_TAGS[i]); in TestSerializationBitmap()
H A Dcmap_editing_test.cc59 CMapTablePtr cmap_table = down_cast<CMapTable*>(font->GetTable(Tag::cmap)); in TEST()
76 CMapTablePtr cmap_table = down_cast<CMapTable*>(font->GetTable(Tag::cmap)); in TEST()
94 down_cast<CMapTable*>(font->GetTable(Tag::cmap)); in TEST()
H A Dbitmap_table_test.cc55 EblcTablePtr bitmap_loca = down_cast<EblcTable*>(font->GetTable(Tag::EBLC)); in CommonReadingTest()
56 EbdtTablePtr bitmap_table = down_cast<EbdtTable*>(font->GetTable(Tag::EBDT)); in CommonReadingTest()
110 EblcTablePtr bitmap_loca = down_cast<EblcTable*>(font->GetTable(Tag::EBLC)); in TestReadingBitmapTable()
173 down_cast<EblcTable*>(new_font->GetTable(Tag::EBLC)); in TestIndexFormatConversion()
185 EblcTablePtr original_loca = down_cast<EblcTable*>(font->GetTable(Tag::EBLC)); in TestIndexFormatConversion()
H A Dotf_basic_editing_test.cc87 down_cast<FontHeaderTable*>(font->GetTable(Tag::head)); in TestOTFBasicEditing()
92 TablePtr post = font->GetTable(Tag::post); in TestOTFBasicEditing()
H A Dname_editing_test.cc80 NameTablePtr name_table = down_cast<NameTable*>(font->GetTable(Tag::name)); in TestChangeOneName()
129 NameTablePtr name_table = down_cast<NameTable*>(font->GetTable(Tag::name)); in TestModifyNameTableAndRevert()
175 NameTablePtr name_table = down_cast<NameTable*>(font->GetTable(Tag::name)); in TestRemoveOneName()
H A Dhdmx_test.cc39 down_cast<HorizontalDeviceMetricsTable*>(font->GetTable(Tag::hdmx)); in TestReadingHdmxTable()
H A Dcmap_iterator_test.cc82 Ptr<CMapTable> cmap_table = down_cast<CMapTable*>(font->GetTable(Tag::cmap)); in SetUp()
H A Dcmap_test.cc124 down_cast<CMapTable*>(font->GetTable(Tag::cmap)); in CommonSetUp()
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/
H A Dtable_based_table_builder.cc44 FontDataTablePtr table = static_cast<FontDataTable*>(GetTable()); in Build()
62 Table* TableBasedTableBuilder::GetTable() { in GetTable() function in sfntly::TableBasedTableBuilder
H A Dtable_based_table_builder.h39 // C++ port: renamed table() to GetTable()
40 virtual Table* GetTable();
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/tools/subsetter/
H A Dglyph_table_subsetter.cc46 GlyphTablePtr glyph_table = down_cast<GlyphTable*>(font->GetTable(Tag::glyf)); in Subset()
47 LocaTablePtr loca_table = down_cast<LocaTable*>(font->GetTable(Tag::loca)); in Subset()
H A Dsubsetter.cc86 Table* table = font_->GetTable(*tag); in Subset()
/third_party/skia/third_party/externals/sfntly/cpp/src/sample/chromium/
H A Dsubsetter_impl.cc105 NameTablePtr name_table = down_cast<NameTable*>(font->GetTable(Tag::name)); in HasName()
578 EbdtTablePtr ebdt_table = down_cast<EbdtTable*>(font->GetTable(Tag::EBDT)); in SetupBitmapBuilders()
579 EblcTablePtr eblc_table = down_cast<EblcTable*>(font->GetTable(Tag::EBLC)); in SetupBitmapBuilders()
582 ebdt_table = down_cast<EbdtTable*>(font->GetTable(Tag::bdat)); in SetupBitmapBuilders()
583 eblc_table = down_cast<EblcTable*>(font->GetTable(Tag::bloc)); in SetupBitmapBuilders()
670 down_cast<GlyphTable*>(font_->GetTable(Tag::glyf)); in SubsetFont()
671 LocaTablePtr loca_table = down_cast<LocaTable*>(font_->GetTable(Tag::loca)); in SubsetFont()
803 Table* table = font_->GetTable(tag); in Subset()
/third_party/node/deps/v8/src/codegen/
H A Dcompilation-cache.cc41 Handle<CompilationCacheTable> CompilationSubCache::GetTable(int generation) { in GetTable() function in v8::internal::CompilationSubCache
99 Handle<CompilationCacheTable> table = GetTable(generation); in Remove()
179 Handle<CompilationCacheTable> table = GetTable(generation); in Lookup()
229 Handle<CompilationCacheTable> table = GetTable(generation); in Lookup()
263 Handle<CompilationCacheTable> table = GetTable(generation); in Lookup()
H A Dcompilation-cache.h37 Handle<CompilationCacheTable> GetTable(int generation);
41 return GetTable(kFirstGeneration); in GetFirstTable()
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/
H A Dfont.cc68 Table* Font::GetTable(int32_t tag) { in GetTable() function in sfntly::Font
108 TablePtr table = GetTable(tag); in BuildTableHeadersForSerialization()
150 TablePtr target_table = GetTable(record->tag()); in SerializeTables()
H A Dfont.h255 // C++ port: rename table() to GetTable()
256 Table* GetTable(int32_t tag);
/third_party/skia/third_party/externals/sfntly/cpp/src/test/autogenerated/
H A Dcmap_basic_test.cc71 cmap_table_ = down_cast<CMapTable*>(font->GetTable(Tag::cmap)); in SetUp()

Completed in 12 milliseconds