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

123

/external/sfntly/cpp/src/sfntly/table/core/
H A Dfont_header_table.cc122 return down_cast<FontHeaderTable*>(GetTable())->TableVersion();
130 return down_cast<FontHeaderTable*>(GetTable())->FontRevision();
138 return down_cast<FontHeaderTable*>(GetTable())->ChecksumAdjustment();
146 return down_cast<FontHeaderTable*>(GetTable())->MagicNumber();
154 return down_cast<FontHeaderTable*>(GetTable())->FlagsAsInt();
162 return down_cast<FontHeaderTable*>(GetTable())->UnitsPerEm();
170 return down_cast<FontHeaderTable*>(GetTable())->Created();
178 return down_cast<FontHeaderTable*>(GetTable())->Modified();
186 return down_cast<FontHeaderTable*>(GetTable())->XMin();
194 return down_cast<FontHeaderTable*>(GetTable())
[all...]
H A Dhorizontal_metrics_table.cc126 down_cast<HorizontalMetricsTable*>(this->GetTable());
134 down_cast<HorizontalMetricsTable*>(this->GetTable());
/external/sfntly/cpp/src/sfntly/table/
H A Dtable_based_table_builder.cc44 FontDataTablePtr table = static_cast<FontDataTable*>(GetTable());
62 Table* TableBasedTableBuilder::GetTable() { function in class:sfntly::TableBasedTableBuilder
H A Dtable_based_table_builder.h39 // C++ port: renamed table() to GetTable()
40 virtual Table* GetTable();
/external/chromium_org/chrome/browser/webdata/
H A Dlogins_table.cc25 return static_cast<LoginsTable*>(db->GetTable(GetKey()));
H A Dweb_intents_table.cc37 return static_cast<WebIntentsTable*>(db->GetTable(GetKey()));
H A Dtoken_service_table.cc27 return static_cast<TokenServiceTable*>(db->GetTable(GetKey()));
/external/chromium_org/content/renderer/pepper/
H A Dpepper_truetype_font.h42 virtual int32_t GetTable(uint32_t table_tag,
H A Dpepper_truetype_font_linux.cc29 virtual int32_t GetTable(uint32_t table_tag,
129 int32_t PepperTrueTypeFontLinux::GetTable(uint32_t table_tag, function in class:content::__anon8053::PepperTrueTypeFontLinux
H A Dpepper_truetype_font_host.cc90 font_->GetTable(table, offset, max_data_length, &data));
/external/chromium_org/ppapi/thunk/
H A Dppb_truetype_font_api.h26 virtual int32_t GetTable(uint32_t table,
H A Dppb_truetype_font_dev_thunk.cc87 int32_t GetTable(PP_Resource font, function in namespace:ppapi::thunk::__anon9645
93 VLOG(4) << "PPB_TrueTypeFont_Dev::GetTable()";
97 return enter.SetResult(enter.object()->GetTable(table,
111 &GetTable
/external/sfntly/cpp/src/test/
H A Dcmap_editing_test.cc59 CMapTablePtr cmap_table = down_cast<CMapTable*>(font->GetTable(Tag::cmap));
76 CMapTablePtr cmap_table = down_cast<CMapTable*>(font->GetTable(Tag::cmap));
94 down_cast<CMapTable*>(font->GetTable(Tag::cmap));
H A Dotf_basic_editing_test.cc76 down_cast<FontHeaderTable*>(font->GetTable(Tag::head));
81 TablePtr post = font->GetTable(Tag::post);
H A Dbitmap_table_test.cc55 EblcTablePtr bitmap_loca = down_cast<EblcTable*>(font->GetTable(Tag::EBLC));
56 EbdtTablePtr bitmap_table = down_cast<EbdtTable*>(font->GetTable(Tag::EBDT));
103 EblcTablePtr bitmap_loca = down_cast<EblcTable*>(font->GetTable(Tag::EBLC));
166 down_cast<EblcTable*>(new_font->GetTable(Tag::EBLC));
178 EblcTablePtr original_loca = down_cast<EblcTable*>(font->GetTable(Tag::EBLC));
H A Dserialization_test.cc68 TablePtr original_table = original->GetTable(TTF_KNOWN_TAGS[i]);
69 TablePtr serialized_table = serialized->GetTable(TTF_KNOWN_TAGS[i]);
133 TablePtr original_table = original->GetTable(BITMAP_KNOWN_TAGS[i]);
134 TablePtr serialized_table = serialized->GetTable(BITMAP_KNOWN_TAGS[i]);
/external/chromium_org/components/webdata/common/
H A Dweb_database.h40 WebDatabaseTable* GetTable(WebDatabaseTable::TypeKey key);
/external/sfntly/cpp/src/sample/subtly/
H A Dstats.cc38 TablePtr table = font->GetTable(tag);
53 Ptr<FontDataTable> new_table = new_font->GetTable(it->first);
H A Dfont_info.cc79 FontDataTable* FontInfo::GetTable(FontId font_id, int32_t tag) { function in class:subtly::FontInfo
85 return it->second->GetTable(tag);
129 Ptr<CMapTable> cmap_table = down_cast<CMapTable*>(font_->GetTable(Tag::cmap));
136 loca_table_ = down_cast<LocaTable*>(font_->GetTable(Tag::loca));
137 glyph_table_ = down_cast<GlyphTable*>(font_->GetTable(Tag::glyf));
H A Dfont_assembler.cc159 down_cast<LocaTable*>(font_info_->GetTable(it->first, Tag::loca));
172 (font_info_->GetTable(font_info_->fonts()->begin()->first, Tag::loca));
189 (font_info_->GetTable(font_id, Tag::loca));
196 (font_info_->GetTable(font_id, Tag::glyf));
/external/sfntly/cpp/src/sfntly/tools/subsetter/
H A Dglyph_table_subsetter.cc46 GlyphTablePtr glyph_table = down_cast<GlyphTable*>(font->GetTable(Tag::glyf));
47 LocaTablePtr loca_table = down_cast<LocaTable*>(font->GetTable(Tag::loca));
/external/chromium_org/ppapi/proxy/
H A Dtruetype_font_resource.h43 virtual int32_t GetTable(
/external/chromium_org/ppapi/tests/
H A Dtest_truetype_font.cc97 RUN_TEST(GetTable, filter);
311 cc1.WaitForResult(font.GetTable(MAKE_TABLE_TAG('c', 'm', 'a', 'p'),
321 cc2.WaitForResult(font.GetTable(0 /* table_tag */,
366 cc3.WaitForResult(font.GetTable(MAKE_TABLE_TAG('c', 'm', 'a', 'p'),
380 cc.WaitForResult(font.GetTable(MAKE_TABLE_TAG('z', 'z', 'z', 'z'),
387 // GetTable on an invalid resource should fail with a bad resource error
392 ppb_truetype_font_interface_->GetTable(
405 cc.WaitForResult(font.GetTable(MAKE_TABLE_TAG('c', 'm', 'a', 'p'),
415 cc.WaitForResult(font.GetTable(MAKE_TABLE_TAG('c', 'm', 'a', 'p'),
426 cc.WaitForResult(font.GetTable(MAKE_TABLE_TA
[all...]
/external/chromium_org/ppapi/api/dev/
H A Dppb_truetype_font_dev.idl230 * can be used to request specific tables using GetTable.
258 * completion of GetTable.
263 int32_t GetTable([in] PP_Resource font,
/external/chromium_org/ppapi/cpp/dev/
H A Dtruetype_font_dev.cc142 int32_t TrueTypeFont_Dev::GetTable( function in class:pp::TrueTypeFont_Dev
148 return get_interface<PPB_TrueTypeFont_Dev_0_1>()->GetTable(

Completed in 802 milliseconds

123