HomeSort by relevance Sort by last modified time
    Searched full:face (Results 1 - 25 of 367) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/freetype/src/truetype/
ttpload.c 53 /* 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->header.Index_To_Loc_Format != 0
    [all...]
ttpload.h 31 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,
ttobjs.c 145 /* Compare the face with a list of well-known `tricky' fonts. */
169 /* Note that we only check the face name at the moment; it might */
185 /* Initialize a given TrueType face object. */
190 /* face_index :: The index of the font face in the resource. */
197 /* face :: The newly built face object. */
212 TT_Face face = (TT_Face)ttface; local
225 error = sfnt->init_face( stream, face, face_index, num_params, params );
232 if ( face->format_tag != 0x00010000L && /* MS fonts */
233 face->format_tag != 0x00020000L && /* CJK fonts for Win 3.1 *
338 TT_Face face = (TT_Face)ttface; local
405 TT_Face face = (TT_Face)size->root.face; local
490 TT_Face face = (TT_Face)size->root.face; local
545 TT_Face face = (TT_Face)ftsize->face; local
589 TT_Face face = (TT_Face)ftsize->face; local
685 TT_Face face = (TT_Face)size->root.face; local
793 TT_Face face; local
    [all...]
  /external/freetype/src/sfnt/
ttload.h 33 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...]
sfobjs.c 123 /* face :: A handle to the source face object. */
135 tt_face_get_name( TT_Face face,
139 FT_Memory memory = face->root.memory;
157 rec = face->name_table.names;
158 for ( n = 0; n < face->num_names; n++, rec++ )
231 rec = face->name_table.names + found_win;
255 rec = face->name_table.names + found_apple;
260 rec = face->name_table.names + found_unicode;
268 FT_Stream stream = face->name_table.stream
    [all...]
ttmtx.c 51 /* Load the `hmtx' or `vmtx' table into a face object. */
54 /* face :: A handle to the target face object. */
66 tt_face_load_hmtx( TT_Face face,
79 ptable_offset = &face->vert_metrics_offset;
80 ptable_size = &face->vert_metrics_size;
85 ptable_offset = &face->horz_metrics_offset;
86 ptable_size = &face->horz_metrics_size;
89 error = face->goto_table( face, tag, stream, &table_size )
    [all...]
ttkern.h 33 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 )
sfdriver.c 69 get_sfnt_table( TT_Face face,
78 table = &face->header;
82 table = &face->horizontal;
86 table = face->vertical_info ? &face->vertical : 0;
90 table = face->os2.version == 0xFFFFU ? 0 : &face->os2;
94 table = &face->postscript;
98 table = &face->max_profile;
102 table = face->pclt.Version ? &face->pclt : 0
    [all...]
ttload.c 48 /* face :: A face object handle. */
56 tt_face_lookup_table( TT_Face face,
67 face,
73 entry = face->dir_tables;
74 limit = entry + face->num_tables;
112 /* face :: A face object handle. */
125 tt_face_goto_table( TT_Face face,
134 table = tt_face_lookup_table( face, tag )
    [all...]
ttsbit.h 31 tt_face_load_eblc( TT_Face face,
35 tt_face_free_eblc( TT_Face face ); variable
39 tt_face_set_sbit_strike( TT_Face face,
44 tt_face_load_strike_metrics( TT_Face face,
50 tt_find_sbit_image( TT_Face face,
65 tt_face_load_sbit_image( TT_Face face,
ttkern.c 44 tt_face_load_kern( TT_Face face,
56 error = face->goto_table( face, TTAG_kern, stream, &table_size );
68 if ( FT_FRAME_EXTRACT( table_size, face->kern_table ) )
75 face->kern_table_size = table_size;
77 p = face->kern_table;
157 face->num_kern_tables = nn;
158 face->kern_avail_bits = avail;
159 face->kern_order_bits = ordered;
167 tt_face_done_kern( TT_Face face )
    [all...]
  /external/freetype/src/base/
ftmm.c 36 ft_face_get_mm_service( FT_Face face,
44 if ( !face )
49 if ( FT_HAS_MULTIPLE_MASTERS( face ) )
51 FT_FACE_LOOKUP_SERVICE( face,
66 FT_Get_Multi_Master( FT_Face face,
73 error = ft_face_get_mm_service( face, &service );
78 error = service->get_mm( face, amaster );
88 FT_Get_MM_Var( FT_Face face,
95 error = ft_face_get_mm_service( face, &service );
100 error = service->get_mm_var( face, amaster )
    [all...]
ftadvanc.c 25 _ft_face_scale_advances( FT_Face face,
37 if ( face->size == NULL )
41 scale = face->size->metrics.y_scale;
43 scale = face->size->metrics.x_scale;
70 FT_Get_Advance( FT_Face face,
78 if ( !face )
81 if ( gindex >= (FT_UInt)face->num_glyphs )
84 func = face->driver->clazz->get_advances;
90 error = func( face, gindex, 1, flags, padvance );
92 return _ft_face_scale_advances( face, padvance, 1, flags )
    [all...]
ftsnames.c 34 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->stream
    [all...]
ftxf86.c 28 FT_Get_X11_Font_Format( FT_Face face )
33 if ( face )
34 FT_FACE_FIND_SERVICE( face, result, XF86_NAME );
ftwinfnt.c 28 FT_Get_WinFNT_Header( FT_Face face,
37 if ( face != NULL )
39 FT_FACE_LOOKUP_SERVICE( face, service, WINFNT );
43 error = service->get_header( face, header );
ftobjs.c 222 /**** FACE, SIZE & GLYPH SLOT OBJECTS ****/
233 FT_Driver driver = slot->face->driver;
263 FT_Memory memory = FT_FACE_MEMORY( slot->face );
294 FT_Memory memory = FT_FACE_MEMORY( slot->face );
343 FT_Driver driver = slot->face->driver;
372 FT_New_GlyphSlot( FT_Face face,
382 if ( !face || !face->driver )
385 driver = face->driver;
392 slot->face = face
1075 FT_Face face = 0; local
1919 FT_Face face = 0; local
2332 FT_Face face; local
2968 FT_Face face = cmap->charmap.face; local
2984 FT_Face face = cmap->charmap.face; local
3032 FT_Face face; local
3496 FT_Face face; local
3520 FT_Face face; local
3543 FT_Face face; local
3619 FT_Face face = slot->face; local
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
FaceDetector_FaceTest.java 29 import android.media.FaceDetector.Face;
34 @TestTargetClass(Face.class)
80 List<Face> detectedFaces = mActivity.getDetectedFaces();
82 Face face = detectedFaces.get(0); local
84 face.getMidPoint(eyesMP);
87 assertTrue(face.confidence() >= goodConfidence);
89 assertEquals(eyesDistance, face.eyesDistance(), tolerance);
94 face.pose(FaceDetector.Face.EULER_X)
    [all...]
  /external/freetype/src/autofit/
afloader.h 30 FT_Face face; /* current face */ member in struct:AF_LoaderRec_
31 AF_FaceGlobals globals; /* current face globals */
52 FT_Face face );
61 FT_Face face,
  /external/freetype/include/freetype/internal/
sfnt.h 37 /* First part of the SFNT face object initialization. This finds */
38 /* the face in a SFNT file or collection, and load its format tag in */
39 /* face->format_tag. */
44 /* face :: A handle to the target face object. */
68 TT_Face face,
80 /* Second part of the SFNT face object initialization. This loads */
82 /* face object. */
87 /* face :: A handle to the target face object. *
    [all...]
  /external/freetype/src/cff/
cffcmap.c 36 TT_Face face = (TT_Face)FT_CMAP_FACE( cmap ); local
37 CFF_Font cff = (CFF_Font)face->extra.data;
123 cff_sid_to_glyph_name( TT_Face face,
126 CFF_Font cff = (CFF_Font)face->extra.data;
137 cff_sid_free_glyph_name( TT_Face face,
140 FT_Memory memory = FT_FACE_MEMORY( face );
150 TT_Face face = (TT_Face)FT_CMAP_FACE( unicodes ); local
151 FT_Memory memory = FT_FACE_MEMORY( face );
152 CFF_Font cff = (CFF_Font)face->extra.data;
166 (FT_Pointer)face );
173 FT_Face face = FT_CMAP_FACE( unicodes ); local
186 TT_Face face = (TT_Face)FT_CMAP_FACE( unicodes ); local
199 TT_Face face = (TT_Face)FT_CMAP_FACE( unicodes ); local
    [all...]
  /cts/tests/assets/webkit/
fonts.html 23 <font face="Standard">Standard ABCdef123</font><br/>
24 <font face="Fixed">Fixed ABCdef123</font><br/>
25 <font face="Sans-Serif">Sans Serif ABCdef123</font><br/>
26 <font face="Serif">Serif ABCdef123</font><br/>
27 <font face="Cursive">Cursive ABCdef123</font><br/>
28 <font face="Fantasy">Fantasy ABCdef123</font><br/>
  /external/freetype/include/freetype/internal/services/
svmm.h 29 * A service used to manage multiple-masters data in a given face.
39 (*FT_Get_MM_Func)( FT_Face face,
43 (*FT_Get_MM_Var_Func)( FT_Face face,
47 (*FT_Set_MM_Design_Func)( FT_Face face,
52 (*FT_Set_Var_Design_Func)( FT_Face face,
57 (*FT_Set_MM_Blend_Func)( FT_Face face,
  /external/freetype/include/freetype/
ftpfr.h 58 * Return the outline and metrics resolutions of a given PFR face.
61 * face :: Handle to the input face. It can be a non-PFR face.
65 * Outline resolution. This is equivalent to `face->units_per_EM'
75 * `face->size->x_scale', but for metrics only. Optional (parameter
86 * If the input face is not a PFR, this function will return an error.
90 FT_Get_PFR_Metrics( FT_Face face,
103 * Return the kerning pair corresponding to two glyphs in a PFR face.
108 * face :: A handle to the input face
    [all...]
  /external/clearsilver/contrib/
cs-mode.el 3 '("<\\?cs[^\\?]*\\?>" 0 font-lock-keyword-face t)
4 '("<\\?cs +\\(call\\|each\\|if\\|alt\\|var\\|include\\)" 1 font-lock-keyword-face t)
5 '("<\\?cs +\\(/each\\|/if\\|/alt\\|/var\\|/include\\)" 1 font-lock-keyword-face t)
8 '("<\\?cs +var:\\([_0-9a-zA-Z\.]+\\)[^\\?]+\\?>" 1 font-lock-variable-name-face t)
9 '("<\\?cs +alt:\\([_0-9a-zA-Z\.]+\\)[^\\?]+\\?>" 1 font-lock-variable-name-face t)
10 '("<\\?cs +each:\\([_0-9a-zA-Z\.]+\\)[^\\?]+\\?>" 1 font-lock-variable-name-face t)
13 '("<\\?cs[^\"\\?]+\\(\"[^\"]+\"\\)[^\\?]+\\?>" 1 font-lock-string-face t)

Completed in 50 milliseconds

1 2 3 4 5 6 7 8 91011>>