/external/chromium_org/third_party/sfntly/cpp/src/sample/subtly/ |
merger.cc | 25 #include "subtly/font_info.h" 58 Ptr<FontInfo> font_info = new FontInfo; local 59 font_info->set_fonts(&fonts_); 73 font_info->chars_to_glyph_ids()->insert( 76 font_info->resolved_glyph_ids()->insert( 81 font_info->chars_to_glyph_ids()->size(), 82 font_info->resolved_glyph_ids()->size()); 85 return font_info.Detach();
|
subsetter.cc | 26 #include "subtly/font_info.h" 49 Ptr<FontInfo> font_info; local 50 font_info.Attach(info_builder->GetFontInfo()); 51 if (!font_info) { 60 Ptr<FontAssembler> font_assembler = new FontAssembler(font_info,
|
font_assembler.h | 23 #include "subtly/font_info.h" 38 // font_info is the FontInfo which will be used for the new font 41 FontAssembler(FontInfo* font_info, sfntly::IntegerSet* table_blacklist); 42 explicit FontAssembler(FontInfo* font_info);
|
font_info.cc | 17 #include "subtly/font_info.h" 160 Ptr<FontInfo> font_info = new FontInfo; local 161 font_info->set_chars_to_glyph_ids(chars_to_glyph_ids); 162 font_info->set_resolved_glyph_ids(resolved_glyph_ids); 165 font_info->set_fonts(font_id_map); 169 return font_info.Detach();
|
font_assembler.cc | 33 #include "subtly/font_info.h" 38 FontAssembler::FontAssembler(FontInfo* font_info, 41 font_info_ = font_info; 45 FontAssembler::FontAssembler(FontInfo* font_info) 47 font_info_ = font_info;
|
/external/sfntly/cpp/src/sample/subtly/ |
merger.cc | 25 #include "subtly/font_info.h" 58 Ptr<FontInfo> font_info = new FontInfo; local 59 font_info->set_fonts(&fonts_); 73 font_info->chars_to_glyph_ids()->insert( 76 font_info->resolved_glyph_ids()->insert( 81 font_info->chars_to_glyph_ids()->size(), 82 font_info->resolved_glyph_ids()->size()); 85 return font_info.Detach();
|
subsetter.cc | 26 #include "subtly/font_info.h" 49 Ptr<FontInfo> font_info; local 50 font_info.Attach(info_builder->GetFontInfo()); 51 if (!font_info) { 60 Ptr<FontAssembler> font_assembler = new FontAssembler(font_info,
|
font_assembler.h | 23 #include "subtly/font_info.h" 38 // font_info is the FontInfo which will be used for the new font 41 FontAssembler(FontInfo* font_info, sfntly::IntegerSet* table_blacklist); 42 explicit FontAssembler(FontInfo* font_info);
|
font_info.cc | 17 #include "subtly/font_info.h" 160 Ptr<FontInfo> font_info = new FontInfo; local 161 font_info->set_chars_to_glyph_ids(chars_to_glyph_ids); 162 font_info->set_resolved_glyph_ids(resolved_glyph_ids); 165 font_info->set_fonts(font_id_map); 169 return font_info.Detach();
|
font_assembler.cc | 33 #include "subtly/font_info.h" 38 FontAssembler::FontAssembler(FontInfo* font_info, 41 font_info_ = font_info; 45 FontAssembler::FontAssembler(FontInfo* font_info) 47 font_info_ = font_info;
|
/external/chromium_org/ui/gfx/ |
platform_font_win.cc | 56 // Sets style properties on |font_info| based on |font_style|. 57 void SetLogFontStyle(int font_style, LOGFONT* font_info) { 58 font_info->lfUnderline = (font_style & gfx::Font::UNDERLINE) != 0; 59 font_info->lfItalic = (font_style & gfx::Font::ITALIC) != 0; 60 font_info->lfWeight = (font_style & gfx::Font::BOLD) ? FW_BOLD : FW_NORMAL; 113 LOGFONT font_info; local 114 GetObject(GetNativeFont(), sizeof(LOGFONT), &font_info); local 115 font_info.lfHeight = height; 116 SetLogFontStyle(style, &font_info); 118 HFONT hfont = CreateFontIndirect(&font_info); 126 LOGFONT font_info; local 127 GetObject(GetNativeFont(), sizeof(LOGFONT), &font_info); local 206 LOGFONT font_info; local 290 LOGFONT font_info; local [all...] |
/external/chromium_org/third_party/freetype/src/cff/ |
cffdrivr.c | 330 if ( cff && cff->font_info == NULL ) 333 PS_FontInfoRec *font_info = NULL; local 337 if ( FT_ALLOC( font_info, sizeof ( *font_info ) ) ) 340 font_info->version = cff_index_get_sid_string( cff, 342 font_info->notice = cff_index_get_sid_string( cff, 344 font_info->full_name = cff_index_get_sid_string( cff, 346 font_info->family_name = cff_index_get_sid_string( cff, 348 font_info->weight = cff_index_get_sid_string( cff, 350 font_info->italic_angle = dict->italic_angle [all...] |
cfftypes.h | 267 PS_FontInfoRec* font_info; /* font info dictionary */ member in struct:CFF_FontRec_
|
cffload.c | [all...] |
/external/freetype/src/cff/ |
cffdrivr.c | 330 if ( cff && cff->font_info == NULL ) 333 PS_FontInfoRec *font_info = NULL; local 337 if ( FT_ALLOC( font_info, sizeof ( *font_info ) ) ) 340 font_info->version = cff_index_get_sid_string( cff, 342 font_info->notice = cff_index_get_sid_string( cff, 344 font_info->full_name = cff_index_get_sid_string( cff, 346 font_info->family_name = cff_index_get_sid_string( cff, 348 font_info->weight = cff_index_get_sid_string( cff, 350 font_info->italic_angle = dict->italic_angle [all...] |
cfftypes.h | 267 PS_FontInfoRec* font_info; /* font info dictionary */ member in struct:CFF_FontRec_
|
cffload.c | [all...] |
/external/chromium_org/third_party/freetype/include/freetype/internal/ |
t1types.h | 95 PS_FontInfoRec font_info; /* font info dictionary */ member in struct:T1_FontRec_
|
/external/freetype/include/freetype/internal/ |
t1types.h | 95 PS_FontInfoRec font_info; /* font info dictionary */ member in struct:T1_FontRec_
|
/external/chromium_org/third_party/freetype/include/freetype/ |
t1tables.h | 361 PS_FontInfoRec font_info; member in struct:CID_FaceInfoRec_
|
/external/freetype/include/freetype/ |
t1tables.h | 361 PS_FontInfoRec font_info; member in struct:CID_FaceInfoRec_
|