Searched refs:face (Results 1 - 25 of 505) sorted by relevance

1234567891011>>

/external/freetype/src/base/
H A Dftfntfmt.c28 FT_Get_Font_Format( FT_Face face )
33 if ( face )
34 FT_FACE_FIND_SERVICE( face, result, FONT_FORMAT );
43 FT_Get_X11_Font_Format( FT_Face face )
48 if ( face )
49 FT_FACE_FIND_SERVICE( face, result, FONT_FORMAT );
H A Dfttype1.c29 FT_Get_PS_Font_Info( FT_Face face,
36 if ( !face )
42 FT_FACE_FIND_SERVICE( face, service, POSTSCRIPT_INFO );
45 error = service->ps_get_font_info( face, afont_info );
56 FT_Has_PS_Glyph_Names( FT_Face face )
62 if ( face )
64 FT_FACE_FIND_SERVICE( face, service, POSTSCRIPT_INFO );
67 result = service->ps_has_glyph_names( face );
77 FT_Get_PS_Font_Private( FT_Face face,
84 if ( !face )
[all...]
H A Dftwinfnt.c29 FT_Get_WinFNT_Header( FT_Face face,
36 if ( !face )
42 FT_FACE_LOOKUP_SERVICE( face, service, WINFNT );
45 error = service->get_header( face, header );
/external/pdfium/core/include/fxge/
H A Dfx_freetype.h57 #define FXFT_Open_Face(library, args, index, face) \
58 FT_Open_Face((FT_Library)(library), args, index, (FT_Face*)(face))
59 #define FXFT_Done_Face(face) FT_Done_Face((FT_Face)(face))
62 #define FXFT_New_Memory_Face(library, base, size, index, face) \
63 FT_New_Memory_Face((FT_Library)(library), base, size, index, (FT_Face*)(face))
64 #define FXFT_New_Face(library, filename, index, face) \
65 FT_New_Face((FT_Library)(library), filename, index, (FT_Face*)(face))
66 #define FXFT_Get_Face_FreeType(face) ((FT_Face)face)
[all...]
/external/freetype/src/sfnt/
H A Dttkern.h33 tt_face_load_kern( TT_Face face,
37 tt_face_done_kern( TT_Face face ); variable
40 tt_face_get_kerning( TT_Face face,
44 #define TT_FACE_HAS_KERNING( face ) ( (face)->kern_avail_bits != 0 )
H A Dttload.h33 tt_face_lookup_table( TT_Face face,
37 tt_face_goto_table( TT_Face face,
44 tt_face_load_font_dir( TT_Face face,
49 tt_face_load_any( TT_Face face,
57 tt_face_load_head( TT_Face face,
62 tt_face_load_cmap( TT_Face face,
67 tt_face_load_maxp( TT_Face face,
72 tt_face_load_name( TT_Face face,
77 tt_face_load_os2( TT_Face face,
82 tt_face_load_post( TT_Face face,
91 tt_face_free_name( TT_Face face ); variable
[all...]
H A Dttbdf.h32 tt_face_free_bdf_props( TT_Face face ); variable
36 tt_face_find_bdf_prop( TT_Face face,
/external/pdfium/third_party/freetype/src/sfnt/
H A Dttkern.h33 tt_face_load_kern( TT_Face face,
37 tt_face_done_kern( TT_Face face ); variable
40 tt_face_get_kerning( TT_Face face,
44 #define TT_FACE_HAS_KERNING( face ) ( (face)->kern_avail_bits != 0 )
H A Dttload.h33 tt_face_lookup_table( TT_Face face,
37 tt_face_goto_table( TT_Face face,
44 tt_face_load_font_dir( TT_Face face,
49 tt_face_load_any( TT_Face face,
57 tt_face_load_head( TT_Face face,
62 tt_face_load_cmap( TT_Face face,
67 tt_face_load_maxp( TT_Face face,
72 tt_face_load_name( TT_Face face,
77 tt_face_load_os2( TT_Face face,
82 tt_face_load_post( TT_Face face,
91 tt_face_free_name( TT_Face face ); variable
[all...]
H A Dttbdf.h32 tt_face_free_bdf_props( TT_Face face ); variable
36 tt_face_find_bdf_prop( TT_Face face,
/external/skia/src/core/
H A DSkTypefacePriv.h19 static inline SkTypeface* ref_or_default(SkTypeface* face) { argument
20 return face ? SkRef(face) : SkTypeface::RefDefault();
31 SkAutoResolveDefaultTypeface(SkTypeface* face) argument
32 : INHERITED(ref_or_default(face)) {}
/external/pdfium/third_party/freetype/src/base/
H A Dftxf86.c28 FT_Get_X11_Font_Format( FT_Face face )
33 if ( face )
34 FT_FACE_FIND_SERVICE( face, result, XF86_NAME );
H A Dftpfr.c27 ft_pfr_check( FT_Face face )
32 if ( face )
33 FT_FACE_LOOKUP_SERVICE( face, service, PFR_METRICS );
42 FT_Get_PFR_Metrics( FT_Face face,
52 if ( !face )
55 service = ft_pfr_check( face );
58 error = service->get_metrics( face,
71 *aoutline_resolution = face->units_per_EM;
74 *ametrics_resolution = face->units_per_EM;
77 if ( face
[all...]
H A Dfttype1.c29 FT_Get_PS_Font_Info( FT_Face face,
36 if ( !face )
42 FT_FACE_FIND_SERVICE( face, service, POSTSCRIPT_INFO );
45 error = service->ps_get_font_info( face, afont_info );
56 FT_Has_PS_Glyph_Names( FT_Face face )
62 if ( face )
64 FT_FACE_FIND_SERVICE( face, service, POSTSCRIPT_INFO );
67 result = service->ps_has_glyph_names( face );
77 FT_Get_PS_Font_Private( FT_Face face,
84 if ( !face )
[all...]
H A Dftgxval.c38 FT_TrueTypeGX_Validate( FT_Face face,
47 if ( !face )
59 FT_FACE_FIND_GLOBAL_SERVICE( face, service, GX_VALIDATE );
62 error = service->validate( face,
75 FT_TrueTypeGX_Free( FT_Face face, argument
81 if ( !face )
84 memory = FT_FACE_MEMORY( face );
91 FT_ClassicKern_Validate( FT_Face face,
99 if ( !face )
111 FT_FACE_FIND_GLOBAL_SERVICE( face, servic
126 FT_ClassicKern_Free( FT_Face face, FT_Bytes table ) argument
[all...]
H A Dftwinfnt.c29 FT_Get_WinFNT_Header( FT_Face face,
36 if ( !face )
42 FT_FACE_LOOKUP_SERVICE( face, service, WINFNT );
45 error = service->get_header( face, header );
H A Dftcid.c27 FT_Get_CID_Registry_Ordering_Supplement( FT_Face face,
40 if ( face )
45 FT_FACE_FIND_SERVICE( face, service, CID );
48 error = service->get_ros( face, &r, &o, &s );
65 FT_Get_CID_Is_Internally_CID_Keyed( FT_Face face,
72 if ( face )
77 FT_FACE_FIND_SERVICE( face, service, CID );
80 error = service->get_is_cid( face, &ic);
91 FT_Get_CID_From_Glyph_Index( FT_Face face,
99 if ( face )
[all...]
/external/freetype/src/truetype/
H A Dttpload.c53 /* face :: A handle to the target face object. */
62 tt_face_load_loca( TT_Face face,
71 error = face->goto_table( face, TTAG_glyf, stream, &face->glyf_len );
76 face->glyf_len = 0;
81 error = face->goto_table( face, TTAG_loca, stream, &table_len );
88 if ( face
578 tt_face_get_device_metrics( TT_Face face, FT_UInt ppem, FT_UInt gindex ) argument
[all...]
H A Dttpload.h31 tt_face_load_loca( TT_Face face,
35 tt_face_get_location( TT_Face face,
40 tt_face_done_loca( TT_Face face ); variable
43 tt_face_load_cvt( TT_Face face,
47 tt_face_load_fpgm( TT_Face face,
52 tt_face_load_prep( TT_Face face,
57 tt_face_load_hdmx( TT_Face face,
62 tt_face_free_hdmx( TT_Face face ); variable
66 tt_face_get_device_metrics( TT_Face face,
/external/pdfium/third_party/freetype/src/truetype/
H A Dttpload.c53 /* face :: A handle to the target face object. */
62 tt_face_load_loca( TT_Face face,
71 error = face->goto_table( face, TTAG_glyf, stream, &face->glyf_len );
76 face->glyf_len = 0;
81 error = face->goto_table( face, TTAG_loca, stream, &table_len );
88 if ( face
578 tt_face_get_device_metrics( TT_Face face, FT_UInt ppem, FT_UInt gindex ) argument
[all...]
H A Dttpload.h31 tt_face_load_loca( TT_Face face,
35 tt_face_get_location( TT_Face face,
40 tt_face_done_loca( TT_Face face ); variable
43 tt_face_load_cvt( TT_Face face,
47 tt_face_load_fpgm( TT_Face face,
52 tt_face_load_prep( TT_Face face,
57 tt_face_load_hdmx( TT_Face face,
62 tt_face_free_hdmx( TT_Face face ); variable
66 tt_face_get_device_metrics( TT_Face face,
/external/harfbuzz_ng/src/
H A Dhb-face.h50 typedef hb_blob_t * (*hb_reference_table_func_t) (hb_face_t *face, hb_tag_t tag, void *user_data);
62 hb_face_reference (hb_face_t *face);
65 hb_face_destroy (hb_face_t *face);
68 hb_face_set_user_data (hb_face_t *face,
76 hb_face_get_user_data (hb_face_t *face,
80 hb_face_make_immutable (hb_face_t *face);
83 hb_face_is_immutable (hb_face_t *face);
87 hb_face_reference_table (hb_face_t *face,
91 hb_face_reference_blob (hb_face_t *face);
94 hb_face_set_index (hb_face_t *face,
[all...]
H A Dhb-face.cc87 hb_face_t *face; local
89 if (!reference_table_func || !(face = hb_object_create<hb_face_t> ())) {
95 face->reference_table_func = reference_table_func;
96 face->user_data = user_data;
97 face->destroy = destroy;
99 face->upem = 0;
100 face->num_glyphs = (unsigned int) -1;
102 return face;
134 _hb_face_for_data_reference_table (hb_face_t *face HB_UNUSED, hb_tag_t tag, void *user_data)
166 hb_face_t *face; local
212 hb_face_reference(hb_face_t *face) argument
226 hb_face_destroy(hb_face_t *face) argument
263 hb_face_set_user_data(hb_face_t *face, hb_user_data_key_t *key, void * data, hb_destroy_func_t destroy, hb_bool_t replace) argument
284 hb_face_get_user_data(hb_face_t *face, hb_user_data_key_t *key) argument
299 hb_face_make_immutable(hb_face_t *face) argument
318 hb_face_is_immutable(hb_face_t *face) argument
336 hb_face_reference_table(hb_face_t *face, hb_tag_t tag) argument
353 hb_face_reference_blob(hb_face_t *face) argument
368 hb_face_set_index(hb_face_t *face, unsigned int index) argument
388 hb_face_get_index(hb_face_t *face) argument
403 hb_face_set_upem(hb_face_t *face, unsigned int upem) argument
423 hb_face_get_upem(hb_face_t *face) argument
447 hb_face_set_glyph_count(hb_face_t *face, unsigned int glyph_count) argument
467 hb_face_get_glyph_count(hb_face_t *face) argument
[all...]
/external/freetype/include/
H A Dftfntfmt.h61 /* Return a string describing the format of a given face. Possible */
68 /* face :: */
69 /* Input face handle. */
79 FT_Get_Font_Format( FT_Face face ); variable
84 FT_Get_X11_Font_Format( FT_Face face ); variable
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_texture.h36 * in the given face.
39 * \param face Cubemap face.
45 void util_map_texcoords2d_onto_cubemap(unsigned face,

Completed in 398 milliseconds

1234567891011>>