HomeSort by relevance Sort by last modified time
    Searched refs:face (Results 26 - 50 of 193) sorted by null

12 3 4 5 6 7 8

  /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,
afglobal.c 67 FT_Face face; member in struct:AF_FaceGlobalsRec_
68 FT_Long glyph_count; /* same as face->num_glyphs */
76 /* Compute the script index of each glyph within a given face. */
82 FT_Face face = globals->face; local
83 FT_CharMap old_charmap = face->charmap;
93 error = FT_Select_Charmap( face, FT_ENCODING_UNICODE );
124 gindex = FT_Get_Char_Index( face, charcode );
135 charcode = FT_Get_Next_Char( face, charcode, &gindex );
152 FT_UInt gindex = FT_Get_Char_Index( face, i )
    [all...]
  /external/freetype/src/truetype/
ttgload.h 35 TT_Init_Glyph_Loading( TT_Face face ); variable
38 TT_Get_HMetrics( TT_Face face,
45 TT_Get_VMetrics( TT_Face face,
ttdriver.c 81 /* glyphs of the same face. */
84 /* face :: A handle to the source face object. */
112 TT_Face face = (TT_Face)ttface; local
113 SFNT_Service sfnt = (SFNT_Service)face->sfnt;
120 kerning->x = sfnt->get_kerning( face, left_glyph, right_glyph );
137 TT_Face face = (TT_Face) ttface; local
152 TT_Get_VMetrics( face, start + nn, check, &tsb, &ah );
164 TT_Get_HMetrics( face, start + nn, check, &lsb, &aw );
191 TT_Face ttface = (TT_Face)size->face;
292 FT_Face face = ttslot->face; local
    [all...]
ttgxvar.h 145 TT_Set_MM_Blend( TT_Face face,
150 TT_Set_Var_Design( TT_Face face,
155 TT_Get_MM_Var( TT_Face face,
160 tt_face_vary_cvt( TT_Face face,
165 TT_Vary_Get_Glyph_Deltas( TT_Face face,
  /external/webkit/WebCore/platform/graphics/gtk/
GlyphPageTreeNodeGtk.cpp 45 FT_Face face = cairo_ft_scaled_font_lock_face(fontData->platformData().m_scaledFont);
46 if (!face)
51 Glyph glyph = FcFreeTypeCharIndex(face, buffer[i]);
FontCustomPlatformData.cpp 59 FT_Face face; local
60 error = FT_New_Memory_Face(library, reinterpret_cast<const FT_Byte*>(buffer->data()), buffer->size(), 0, &face);
65 cairo_font_face_t* fontFace = cairo_ft_font_face_create_for_ft_face(face, 0);
  /external/freetype/src/sfnt/
ttpost.c 155 load_format_20( TT_Face face,
177 if ( num_glyphs > face->max_profile.numGlyphs )
244 TT_Post_20 table = &face->postscript_names.names.format_20;
273 load_format_25( TT_Face face,
288 if ( num_glyphs > face->max_profile.numGlyphs || num_glyphs > 258 )
318 TT_Post_25 table = &face->postscript_names.names.format_25;
336 load_post_names( TT_Face face )
343 /* get a stream for the face's resource */
344 stream = face->root.stream;
347 error = face->goto_table( face, TTAG_post, stream, 0 )
    [all...]
ttload.c 49 /* face :: A face object handle. */
57 tt_face_lookup_table( TT_Face face,
68 face,
74 entry = face->dir_tables;
75 limit = entry + face->num_tables;
114 /* face :: A face object handle. */
127 tt_face_goto_table( TT_Face face,
136 table = tt_face_lookup_table( face, tag )
    [all...]
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/include/freetype/
ftxf86.h 64 /* Return a string describing the format of a given face, using values */
70 /* face :: */
71 /* Input face handle. */
77 FT_Get_X11_Font_Format( FT_Face face ); variable
ftadvanc.h 89 /* face :: The source @FT_Face handle. */
117 FT_Get_Advance( FT_Face face,
134 /* face :: The source @FT_Face handle. */
165 FT_Get_Advances( FT_Face face,
ftmm.h 235 /* face :: A handle to the source face. */
244 FT_Get_Multi_Master( FT_Face face,
257 /* face :: A handle to the source face. */
268 FT_Get_MM_Var( FT_Face face,
284 /* face :: A handle to the source face. */
296 FT_Set_MM_Design_Coordinates( FT_Face face,
311 /* face :: A handle to the source face. *
    [all...]
freetype.h 382 /* A handle to a given typographic face object. A face object models */
386 /* Each face object also owns a single @FT_GlyphSlot object, as well */
389 /* Use @FT_New_Face or @FT_Open_Face to create a new face object from */
395 /* See @FT_FaceRec for the publicly accessible fields of a given face */
407 /* A handle to an object used to model a face scaled to a given */
422 /* activated at any given time per face. */
439 /* face. */
460 /* parent's face. Some font formats may provide several charmaps per */
463 /* Each face object owns zero or more charmaps, but only one of them *
737 FT_Face face; member in struct:FT_CharMapRec_
1396 FT_Face face; \/* parent face object *\/ member in struct:FT_SizeRec_
1607 FT_Face face; member in struct:FT_GlyphSlotRec_
2046 FT_Reference_Face( FT_Face face ); variable
2069 FT_Done_Face( FT_Face face ); variable
2955 FT_Get_Postscript_Name( FT_Face face ); variable
3335 FT_Get_FSType_Flags( FT_Face face ); variable
3484 FT_Face_GetVariantSelectors( FT_Face face ); variable
3878 FT_Face_CheckTrueTypePatents( FT_Face face ); variable
    [all...]
  /external/freetype/include/freetype/internal/services/
svpsinfo.h 33 (*PS_GetFontInfoFunc)( FT_Face face,
37 (*PS_GetFontExtraFunc)( FT_Face face,
41 (*PS_HasGlyphNamesFunc)( FT_Face face );
44 (*PS_GetFontPrivateFunc)( FT_Face face,
svwinfnt.h 32 (*FT_WinFnt_GetHeaderFunc)( FT_Face face,
svgxval.h 41 (*gxv_validate_func)( FT_Face face,
48 (*ckern_validate_func)( FT_Face face,
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,
svcid.h 30 (*FT_CID_GetRegistryOrderingSupplementFunc)( FT_Face face,
35 (*FT_CID_GetIsInternallyCIDKeyedFunc)( FT_Face face,
38 (*FT_CID_GetCIDFromGlyphIndexFunc)( FT_Face face,
svsfnt.h 40 (*FT_SFNT_TableLoadFunc)( FT_Face face,
50 (*FT_SFNT_TableGetFunc)( FT_Face face,
58 (*FT_SFNT_TableInfoFunc)( FT_Face face,
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
GLShape.java 29 public void addFace(GLFace face) {
30 mFaceList.add(face);
33 public void setFaceColor(int face, GLColor color) {
34 mFaceList.get(face).setColor(color);
40 GLFace face = iter.next(); local
41 face.putIndices(buffer);
49 GLFace face = iter.next(); local
50 count += face.getIndexCount();
  /external/freetype/src/base/
ftobjs.c 221 /**** FACE, SIZE & GLYPH SLOT OBJECTS ****/
232 FT_Driver driver = slot->face->driver;
262 FT_Memory memory = FT_FACE_MEMORY( slot->face );
293 FT_Memory memory = FT_FACE_MEMORY( slot->face );
342 FT_Driver driver = slot->face->driver;
371 FT_New_GlyphSlot( FT_Face face,
381 if ( !face || !face->driver )
384 driver = face->driver;
391 slot->face = face
1098 FT_Face face = 0; local
1969 FT_Face face = NULL; local
2402 FT_Face face; local
3068 FT_Face face = cmap->charmap.face; local
3084 FT_Face face = cmap->charmap.face; local
3132 FT_Face face; local
3599 FT_Face face; local
3623 FT_Face face; local
3646 FT_Face face; local
3722 FT_Face face = slot->face; local
    [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;
138 TT_Face face = (TT_Face)FT_CMAP_FACE( unicodes ); local
139 FT_Memory memory = FT_FACE_MEMORY( face );
140 CFF_Font cff = (CFF_Font)face->extra.data;
155 (FT_Pointer)face );
162 FT_Face face = FT_CMAP_FACE( unicodes ); local
163 FT_Memory memory = FT_FACE_MEMORY( face );
175 TT_Face face = (TT_Face)FT_CMAP_FACE( unicodes ); local
188 TT_Face face = (TT_Face)FT_CMAP_FACE( unicodes ); local
    [all...]
  /external/freetype/src/psaux/
t1cmap.c 38 T1_Face face = (T1_Face)FT_CMAP_FACE( cmap ); local
39 FT_Service_PsCMaps psnames = (FT_Service_PsCMaps)face->psnames;
42 cmap->num_glyphs = face->type1.num_glyphs;
43 cmap->glyph_names = (const char* const*)face->type1.glyph_names;
177 T1_Face face = (T1_Face)FT_CMAP_FACE( cmap ); local
178 T1_Encoding encoding = &face->type1.encoding;
267 t1_get_glyph_name( T1_Face face,
270 return face->type1.glyph_names[idx];
277 T1_Face face = (T1_Face)FT_CMAP_FACE( unicodes ); local
278 FT_Memory memory = FT_FACE_MEMORY( face );
294 FT_Face face = FT_CMAP_FACE( unicodes ); local
307 T1_Face face = (T1_Face)FT_CMAP_FACE( unicodes ); local
319 T1_Face face = (T1_Face)FT_CMAP_FACE( unicodes ); 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...]

Completed in 109 milliseconds

12 3 4 5 6 7 8