/external/sfntly/cpp/src/sfntly/table/core/ |
D | font_header_table.cc | 122 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())->YMin(); in YMin() [all …]
|
D | horizontal_metrics_table.cc | 126 down_cast<HorizontalMetricsTable*>(this->GetTable()); in SetNumberOfHMetrics() 134 down_cast<HorizontalMetricsTable*>(this->GetTable()); in SetNumGlyphs()
|
D | horizontal_device_metrics_table.cc | 110 down_cast<HorizontalDeviceMetricsTable*>(GetTable()); in SetNumGlyphs()
|
/external/pdfium/third_party/lcms/src/ |
D | cmscgats.c | 1006 TABLE* GetTable(cmsIT8* it8) in GetTable() function 1332 return GetTable((cmsIT8*) hIT8)->SheetType; in cmsIT8GetSheetType() 1337 TABLE* t = GetTable((cmsIT8*) hIT8); in cmsIT8SetSheetType() 1351 return AddToList(it8, &GetTable(it8)->HeaderList, "# ", NULL, Val, WRITE_UNCOOKED) != NULL; in cmsIT8SetComment() 1362 return AddToList(it8, &GetTable(it8)->HeaderList, Key, NULL, Val, WRITE_STRINGIFY) != NULL; in cmsIT8SetPropertyStr() 1372 return AddToList(it8, &GetTable(it8)->HeaderList, cProp, NULL, Buffer, WRITE_UNCOOKED) != NULL; in cmsIT8SetPropertyDbl() 1382 … return AddToList(it8, &GetTable(it8)->HeaderList, cProp, NULL, Buffer, WRITE_HEXADECIMAL) != NULL; in cmsIT8SetPropertyHex() 1389 return AddToList(it8, &GetTable(it8)->HeaderList, Key, NULL, Buffer, WRITE_UNCOOKED) != NULL; in cmsIT8SetPropertyUncooked() 1396 return AddToList(it8, &GetTable(it8)->HeaderList, Key, SubKey, Buffer, WRITE_PAIR) != NULL; in cmsIT8SetPropertyMulti() 1405 if (IsAvailableOnList(GetTable(it8) -> HeaderList, Key, NULL, &p)) in cmsIT8GetProperty() [all …]
|
/external/sfntly/cpp/src/sample/subtly/ |
D | font_info.cc | 79 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()
|
D | font_assembler.cc | 159 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()
|
D | stats.cc | 38 TablePtr table = font->GetTable(tag); in TableSizePercent() 53 Ptr<FontDataTable> new_table = new_font->GetTable(it->first); in PrintComparison()
|
/external/sfntly/cpp/src/test/ |
D | bitmap_table_test.cc | 55 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() 103 EblcTablePtr bitmap_loca = down_cast<EblcTable*>(font->GetTable(Tag::EBLC)); in TestReadingBitmapTable() 166 down_cast<EblcTable*>(new_font->GetTable(Tag::EBLC)); in TestIndexFormatConversion() 178 EblcTablePtr original_loca = down_cast<EblcTable*>(font->GetTable(Tag::EBLC)); in TestIndexFormatConversion()
|
D | serialization_test.cc | 68 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()
|
D | cmap_editing_test.cc | 59 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()
|
D | name_editing_test.cc | 80 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()
|
D | otf_basic_editing_test.cc | 76 down_cast<FontHeaderTable*>(font->GetTable(Tag::head)); in TestOTFBasicEditing() 81 TablePtr post = font->GetTable(Tag::post); in TestOTFBasicEditing()
|
D | hdmx_test.cc | 39 down_cast<HorizontalDeviceMetricsTable*>(font->GetTable(Tag::hdmx)); in TestReadingHdmxTable()
|
/external/sfntly/cpp/src/sfntly/table/ |
D | table_based_table_builder.cc | 44 FontDataTablePtr table = static_cast<FontDataTable*>(GetTable()); in Build() 62 Table* TableBasedTableBuilder::GetTable() { in GetTable() function in sfntly::TableBasedTableBuilder
|
D | table_based_table_builder.h | 40 virtual Table* GetTable();
|
/external/v8/src/ |
D | compilation-cache.cc | 39 Handle<CompilationCacheTable> CompilationSubCache::GetTable(int generation) { in GetTable() function in v8::internal::CompilationSubCache 86 Handle<CompilationCacheTable> table = GetTable(generation); in Remove() 139 Handle<CompilationCacheTable> table = GetTable(generation); in Lookup() 194 Handle<CompilationCacheTable> table = GetTable(generation); in Lookup() 229 Handle<CompilationCacheTable> table = GetTable(generation); in Lookup()
|
D | compilation-cache.h | 38 Handle<CompilationCacheTable> GetTable(int generation); 42 return GetTable(kFirstGeneration); in GetFirstTable()
|
/external/sfntly/cpp/src/sfntly/tools/subsetter/ |
D | glyph_table_subsetter.cc | 46 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()
|
/external/sfntly/cpp/src/sample/chromium/ |
D | subsetter_impl.cc | 140 NameTablePtr name_table = down_cast<NameTable*>(font->GetTable(Tag::name)); in HasName() 608 EbdtTablePtr ebdt_table = down_cast<EbdtTable*>(font->GetTable(Tag::EBDT)); in SetupBitmapBuilders() 609 EblcTablePtr eblc_table = down_cast<EblcTable*>(font->GetTable(Tag::EBLC)); in SetupBitmapBuilders() 612 ebdt_table = down_cast<EbdtTable*>(font->GetTable(Tag::bdat)); in SetupBitmapBuilders() 613 eblc_table = down_cast<EblcTable*>(font->GetTable(Tag::bloc)); in SetupBitmapBuilders() 704 down_cast<GlyphTable*>(font_->GetTable(Tag::glyf)); in SubsetFont() 705 LocaTablePtr loca_table = down_cast<LocaTable*>(font_->GetTable(Tag::loca)); in SubsetFont() 833 Table* table = font_->GetTable(*i); in Subset()
|
/external/toolchain-utils/cros_utils/ |
D | tabulator_test.py | 83 table = tg.GetTable() 96 table = tg.GetTable()
|
D | html_tools.py | 83 def GetTable(headers, rows): function
|
/external/perfetto/src/traced/probes/ftrace/test/ |
D | cpu_reader_support.h | 37 ProtoTranslationTable* GetTable(const std::string& name);
|
D | cpu_reader_support.cc | 50 ProtoTranslationTable* GetTable(const std::string& name) { in GetTable() function
|
/external/perfetto/src/traced/probes/ftrace/ |
D | cpu_reader_fuzzer.cc | 46 ProtoTranslationTable* table = GetTable("synthetic"); in FuzzCpuReaderParsePage()
|
D | cpu_reader_unittest.cc | 336 ProtoTranslationTable* table = GetTable(test_case->name); in TEST() 451 ProtoTranslationTable* table = GetTable(test_case->name); in TEST() 488 ProtoTranslationTable* table = GetTable(test_case->name); in TEST() 515 ProtoTranslationTable* table = GetTable(test_case->name); in TEST() 568 ProtoTranslationTable* table = GetTable(test_case->name); in TEST() 664 ProtoTranslationTable* table = GetTable(test_case->name); in TEST() 909 ProtoTranslationTable* table = GetTable("android_seed_N2F62_3.10.49"); in TEST()
|