HomeSort by relevance Sort by last modified time
    Searched refs:font_id (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/ppapi/thunk/
ppb_browser_font_trusted_thunk.cc 36 PP_Bool Describe(PP_Resource font_id,
39 EnterBrowserFont enter(font_id, true);
44 PP_Bool DrawTextAt(PP_Resource font_id,
51 EnterBrowserFont enter(font_id, true);
58 int32_t MeasureText(PP_Resource font_id,
60 EnterBrowserFont enter(font_id, true);
64 uint32_t CharacterOffsetForPixel(PP_Resource font_id,
67 EnterBrowserFont enter(font_id, true);
73 int32_t PixelOffsetForCharacter(PP_Resource font_id,
76 EnterBrowserFont enter(font_id, true)
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/sample/subtly/
font_info.h 40 GlyphId(int32_t glyph_id, FontId font_id);
48 FontId font_id() const { return font_id_; } function in class:subtly::GlyphId
49 void set_font_id(const FontId font_id) { font_id_ = font_id; }
74 // font_id or NULL if there is no such font/table.
75 // font_id is the id of the font that contains the table
77 virtual sfntly::FontDataTable* GetTable(FontId font_id, int32_t tag);
78 // Gets the table map of the font whose id is font_id
104 FontSourcedInfoBuilder(sfntly::Font* font, FontId font_id);
106 FontId font_id,
    [all...]
font_info.cc 41 GlyphId::GlyphId(int32_t glyph_id, FontId font_id)
43 font_id_(font_id) {
79 FontDataTable* FontInfo::GetTable(FontId font_id, int32_t tag) {
82 FontIdMap::iterator it = fonts_->find(font_id);
88 const TableMap* FontInfo::GetTableMap(FontId font_id) {
91 FontIdMap::iterator it = fonts_->find(font_id);
112 FontSourcedInfoBuilder::FontSourcedInfoBuilder(Font* font, FontId font_id)
114 font_id_(font_id),
120 FontId font_id,
123 font_id_(font_id),
    [all...]
font_assembler.cc 185 int32_t font_id = it->font_id(); local
189 (font_info_->GetTable(font_id, Tag::loca));
196 (font_info_->GetTable(font_id, Tag::glyf));
  /external/sfntly/cpp/src/sample/subtly/
font_info.h 40 GlyphId(int32_t glyph_id, FontId font_id);
48 FontId font_id() const { return font_id_; } function in class:subtly::GlyphId
49 void set_font_id(const FontId font_id) { font_id_ = font_id; }
74 // font_id or NULL if there is no such font/table.
75 // font_id is the id of the font that contains the table
77 virtual sfntly::FontDataTable* GetTable(FontId font_id, int32_t tag);
78 // Gets the table map of the font whose id is font_id
104 FontSourcedInfoBuilder(sfntly::Font* font, FontId font_id);
106 FontId font_id,
    [all...]
font_info.cc 41 GlyphId::GlyphId(int32_t glyph_id, FontId font_id)
43 font_id_(font_id) {
79 FontDataTable* FontInfo::GetTable(FontId font_id, int32_t tag) {
82 FontIdMap::iterator it = fonts_->find(font_id);
88 const TableMap* FontInfo::GetTableMap(FontId font_id) {
91 FontIdMap::iterator it = fonts_->find(font_id);
112 FontSourcedInfoBuilder::FontSourcedInfoBuilder(Font* font, FontId font_id)
114 font_id_(font_id),
120 FontId font_id,
123 font_id_(font_id),
    [all...]
font_assembler.cc 185 int32_t font_id = it->font_id(); local
189 (font_info_->GetTable(font_id, Tag::loca));
196 (font_info_->GetTable(font_id, Tag::glyf));
  /external/chromium_org/content/common/mac/
font_loader.h 35 uint32 font_id; member in struct:FontLoader::Result
43 // and |result->font_id| are not zero.
46 // |result->font_id| - unique identifier for the on-disk file we load for
  /external/pdfium/core/include/thirdparties/freetype/freetype/internal/
t1types.h 121 FT_Long font_id; member in struct:T1_FontRec_
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/internal/
t1types.h 121 FT_Long font_id; member in struct:T1_FontRec_
  /external/chromium_org/third_party/freetype/include/freetype/internal/
t1types.h 121 FT_Long font_id; member in struct:T1_FontRec_
  /external/freetype/include/internal/
t1types.h 121 FT_Long font_id; member in struct:T1_FontRec_
  /external/chromium_org/third_party/freetype/src/pfr/
pfrload.c 457 if ( phy_font->font_id != NULL )
460 if ( FT_ALLOC( phy_font->font_id, len + 1 ) )
464 FT_MEM_COPY( phy_font->font_id, p, len );
465 phy_font->font_id[len] = 0;
671 FT_FREE( phy_font->font_id );
  /external/freetype/src/pfr/
pfrload.c 457 if ( phy_font->font_id != NULL )
460 if ( FT_ALLOC( phy_font->font_id, len + 1 ) )
464 FT_MEM_COPY( phy_font->font_id, p, len );
465 phy_font->font_id[len] = 0;
671 FT_FREE( phy_font->font_id );
  /external/chromium_org/content/renderer/
renderer_webkitplatformsupport_impl.cc 204 uint32* font_id);
549 NSFont* src_font, CGFontRef* out, uint32* font_id) {
554 src_font_descriptor, &font_data_size, &font_data, font_id))) {
556 *font_id = 0;
561 *font_id == 0) {
565 *font_id = 0;
    [all...]
  /external/chromium_org/content/ppapi_plugin/
ppapi_webkitplatformsupport_impl.cc 90 uint32_t* font_id) {
  /external/chromium_org/content/browser/renderer_host/
render_message_filter.cc 677 if (result->font_data_size == 0 || result->font_id == 0) {
679 result->font_id = 0;
685 reply, result->font_data_size, handle, result->font_id);
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/font_settings/
font_settings_api.cc 297 new base::StringValue(params->details.font_id));
  /external/pdfium/core/src/fpdfapi/fpdf_font/
fpdf_font.cpp 398 int font_id = _PDF_GetStandardFontName(fontname); local
399 if (font_id < 0) {
403 CPDF_Font* pFont = pFontGlobals->Find(pDoc, font_id);
413 pFontGlobals->Set(pDoc, font_id, pFont);
    [all...]
  /external/chromium_org/pdf/pdfium/
pdfium_engine.cc 260 unsigned long GetFontData(struct _FPDF_SYSFONTINFO*, void* font_id,
269 long res_id = reinterpret_cast<long>(font_id);
275 void DeleteFont(struct _FPDF_SYSFONTINFO*, void* font_id) {
276 long res_id = reinterpret_cast<long>(font_id);
    [all...]

Completed in 521 milliseconds