Searched refs:face (Results 26 - 50 of 505) sorted by relevance

1234567891011>>

/external/pdfium/core/src/fxge/apple/
H A Dfx_mac_imp.cpp35 static void GetJapanesePreference(CFX_ByteString& face, int weight, int picth_family) argument
37 if (face.Find("Gothic") >= 0) {
38 face = JAPAN_GOTHIC;
42 face = JAPAN_GOTHIC;
44 face = JAPAN_MINCHO;
49 CFX_ByteString face = cstr_face; local
52 if (face == CFX_ByteStringC(Base14Substs[iBaseFont].m_pName)) {
53 face = Base14Substs[iBaseFont].m_pSubstName;
58 return GetFont(face);
61 if (m_FontList.Lookup(face,
[all...]
/external/freetype/src/base/
H A Dftadvanc.c27 _ft_face_scale_advances( FT_Face face, argument
39 if ( face->size == NULL )
43 scale = face->size->metrics.y_scale;
45 scale = face->size->metrics.x_scale;
72 FT_Get_Advance( FT_Face face,
80 if ( !face )
86 if ( gindex >= (FT_UInt)face->num_glyphs )
89 func = face->driver->clazz->get_advances;
95 error = func( face, gindex, 1, flags, padvance );
97 return _ft_face_scale_advances( face, padvanc
[all...]
H A Dftfstype.c28 FT_Get_FSType_Flags( FT_Face face )
34 if ( face )
39 FT_FACE_FIND_SERVICE( face, service, POSTSCRIPT_INFO );
46 if ( !service->ps_get_font_extra( face, &extra ) &&
54 if ( ( os2 = (TT_OS2*)FT_Get_Sfnt_Table( face, FT_SFNT_OS2 ) ) != NULL &&
H A Dftsnames.c34 FT_Get_Sfnt_Name_Count( FT_Face face )
36 return ( face && FT_IS_SFNT( face ) ) ? ((TT_Face)face)->num_names : 0;
43 FT_Get_Sfnt_Name( FT_Face face,
50 if ( aname && face && FT_IS_SFNT( face ) )
52 TT_Face ttface = (TT_Face)face;
63 FT_Memory memory = face->memory;
64 FT_Stream stream = face
[all...]
H A Dftgasp.c25 FT_Get_Gasp( FT_Face face,
31 if ( face && FT_IS_SFNT( face ) )
33 TT_Face ttface = (TT_Face)face;
H A Dftmm.c38 ft_face_get_mm_service( FT_Face face, argument
46 if ( !face )
51 if ( FT_HAS_MULTIPLE_MASTERS( face ) )
53 FT_FACE_LOOKUP_SERVICE( face,
68 FT_Get_Multi_Master( FT_Face face,
75 /* check of `face' delayed to `ft_face_get_mm_service' */
80 error = ft_face_get_mm_service( face, &service );
85 error = service->get_mm( face, amaster );
95 FT_Get_MM_Var( FT_Face face,
102 /* check of `face' delaye
[all...]
/external/freetype/src/sfnt/
H A Dttsbit.h31 tt_face_load_sbit( TT_Face face,
35 tt_face_free_sbit( TT_Face face ); variable
39 tt_face_set_sbit_strike( TT_Face face,
44 tt_face_load_strike_metrics( TT_Face face,
49 tt_face_load_sbit_image( TT_Face face,
H A Dsfobjs.c132 /* face :: A handle to the source face object. */
144 tt_face_get_name( TT_Face face, argument
148 FT_Memory memory = face->root.memory;
166 rec = face->name_table.names;
167 for ( n = 0; n < face->num_names; n++, rec++ )
240 rec = face->name_table.names + found_win;
264 rec = face->name_table.names + found_apple;
269 rec = face->name_table.names + found_unicode;
277 FT_Stream stream = face
[all...]
H A Dsfobjs.h33 TT_Face face,
40 TT_Face face,
46 sfnt_done_face( TT_Face face ); variable
H A Dttmtx.h32 tt_face_load_hhea( TT_Face face,
38 tt_face_load_hmtx( TT_Face face,
44 tt_face_get_metrics( TT_Face face,
H A Dttmtx.c44 /* Load the `hmtx' or `vmtx' table into a face object. */
47 /* face :: A handle to the target face object. */
57 tt_face_load_hmtx( TT_Face face,
70 ptable_offset = &face->vert_metrics_offset;
71 ptable_size = &face->vert_metrics_size;
76 ptable_offset = &face->horz_metrics_offset;
77 ptable_size = &face->horz_metrics_size;
80 error = face->goto_table( face, ta
205 tt_face_get_metrics( TT_Face face, FT_Bool vertical, FT_UInt gindex, FT_Short *abearing, FT_UShort *aadvance ) argument
[all...]
/external/pdfium/third_party/freetype/src/base/
H A Dftadvanc.c27 _ft_face_scale_advances( FT_Face face, argument
39 if ( face->size == NULL )
43 scale = face->size->metrics.y_scale;
45 scale = face->size->metrics.x_scale;
72 FT_Get_Advance( FT_Face face,
80 if ( !face )
86 if ( gindex >= (FT_UInt)face->num_glyphs )
89 func = face->driver->clazz->get_advances;
95 error = func( face, gindex, 1, flags, padvance );
97 return _ft_face_scale_advances( face, padvanc
[all...]
H A Dftfstype.c28 FT_Get_FSType_Flags( FT_Face face )
34 if ( face )
39 FT_FACE_FIND_SERVICE( face, service, POSTSCRIPT_INFO );
46 if ( !service->ps_get_font_extra( face, &extra ) &&
54 if ( ( os2 = (TT_OS2*)FT_Get_Sfnt_Table( face, FT_SFNT_OS2 ) ) != NULL &&
H A Dftotval.c29 FT_OpenType_Validate( FT_Face face,
41 if ( !face )
57 FT_FACE_FIND_GLOBAL_SERVICE( face, service, OPENTYPE_VALIDATE );
60 error = service->validate( face,
76 FT_OpenType_Free( FT_Face face, argument
82 if ( !face )
85 memory = FT_FACE_MEMORY( face );
H A Dftsnames.c34 FT_Get_Sfnt_Name_Count( FT_Face face )
36 return ( face && FT_IS_SFNT( face ) ) ? ((TT_Face)face)->num_names : 0;
43 FT_Get_Sfnt_Name( FT_Face face,
50 if ( aname && face && FT_IS_SFNT( face ) )
52 TT_Face ttface = (TT_Face)face;
63 FT_Memory memory = face->memory;
64 FT_Stream stream = face
[all...]
H A Dftgasp.c25 FT_Get_Gasp( FT_Face face,
31 if ( face && FT_IS_SFNT( face ) )
33 TT_Face ttface = (TT_Face)face;
H A Dftmm.c38 ft_face_get_mm_service( FT_Face face, argument
46 if ( !face )
51 if ( FT_HAS_MULTIPLE_MASTERS( face ) )
53 FT_FACE_LOOKUP_SERVICE( face,
68 FT_Get_Multi_Master( FT_Face face,
75 /* check of `face' delayed to `ft_face_get_mm_service' */
80 error = ft_face_get_mm_service( face, &service );
85 error = service->get_mm( face, amaster );
95 FT_Get_MM_Var( FT_Face face,
102 /* check of `face' delaye
[all...]
/external/pdfium/third_party/freetype/src/sfnt/
H A Dttsbit.h31 tt_face_load_sbit( TT_Face face,
35 tt_face_free_sbit( TT_Face face ); variable
39 tt_face_set_sbit_strike( TT_Face face,
44 tt_face_load_strike_metrics( TT_Face face,
49 tt_face_load_sbit_image( TT_Face face,
H A Dsfobjs.c132 /* face :: A handle to the source face object. */
144 tt_face_get_name( TT_Face face, argument
148 FT_Memory memory = face->root.memory;
166 rec = face->name_table.names;
167 for ( n = 0; n < face->num_names; n++, rec++ )
240 rec = face->name_table.names + found_win;
264 rec = face->name_table.names + found_apple;
269 rec = face->name_table.names + found_unicode;
277 FT_Stream stream = face
[all...]
H A Dsfobjs.h33 TT_Face face,
40 TT_Face face,
46 sfnt_done_face( TT_Face face ); variable
H A Dttmtx.h32 tt_face_load_hhea( TT_Face face,
38 tt_face_load_hmtx( TT_Face face,
44 tt_face_get_metrics( TT_Face face,
/external/harfbuzz_ng/src/
H A Dhb-ot-layout.h52 hb_ot_layout_has_glyph_classes (hb_face_t *face);
63 hb_ot_layout_get_glyph_class (hb_face_t *face,
67 hb_ot_layout_get_glyphs_in_class (hb_face_t *face,
75 hb_ot_layout_get_attach_points (hb_face_t *face,
100 hb_ot_layout_table_get_script_tags (hb_face_t *face,
107 hb_ot_layout_table_find_script (hb_face_t *face,
114 hb_ot_layout_table_choose_script (hb_face_t *face,
121 hb_ot_layout_table_get_feature_tags (hb_face_t *face,
128 hb_ot_layout_script_get_language_tags (hb_face_t *face,
136 hb_ot_layout_script_find_language (hb_face_t *face,
[all...]
/external/freetype/include/
H A Dftcid.h63 * face ::
64 * A handle to the input face.
68 * The registry, as a C~string, owned by the face.
71 * The ordering, as a C~string, owned by the face.
87 FT_Get_CID_Registry_Ordering_Supplement( FT_Face face,
99 * Retrieve the type of the input face, CID keyed or not. In
104 * face ::
105 * A handle to the input face.
109 * The type of the face as an @FT_Bool.
122 FT_Get_CID_Is_Internally_CID_Keyed( FT_Face face,
[all...]
/external/pdfium/third_party/freetype/include/
H A Dftcid.h62 * face ::
63 * A handle to the input face.
67 * The registry, as a C~string, owned by the face.
70 * The ordering, as a C~string, owned by the face.
86 FT_Get_CID_Registry_Ordering_Supplement( FT_Face face,
98 * Retrieve the type of the input face, CID keyed or not. In
103 * face ::
104 * A handle to the input face.
108 * The type of the face as an @FT_Bool.
121 FT_Get_CID_Is_Internally_CID_Keyed( FT_Face face,
[all...]
/external/freetype/src/autofit/
H A Dafindic.c37 FT_Face face )
40 FT_CharMap oldmap = face->charmap;
43 metrics->units_per_em = face->units_per_EM;
45 if ( FT_Select_Charmap( face, FT_ENCODING_UNICODE ) )
46 face->charmap = NULL;
49 af_cjk_metrics_init_widths( metrics, face );
52 af_cjk_metrics_init_blues( metrics, face, af_cjk_blue_chars );
54 af_cjk_metrics_check_digits( metrics, face );
57 FT_Set_Charmap( face, oldmap );

Completed in 416 milliseconds

1234567891011>>