Home
last modified time | relevance | path

Searched refs:char_name (Results 1 – 8 of 8) sorted by relevance

/external/freetype/src/type42/
Dt42objs.c116 const FT_String* char_name = in T42_Open_Face() local
121 type1->encoding.char_name [charcode] = ".notdef"; in T42_Open_Face()
123 if ( char_name ) in T42_Open_Face()
129 if ( ft_strcmp( char_name, glyph_name ) == 0 ) in T42_Open_Face()
132 type1->encoding.char_name [charcode] = glyph_name; in T42_Open_Face()
440 FT_FREE( type1->encoding.char_name ); in T42_Face_Done()
Dt42parse.c360 FT_FREE( encode->char_name ); in t42_parse_encoding()
367 FT_NEW_ARRAY( encode->char_name, count ) || in t42_parse_encoding()
/external/toybox/toys/pending/
Dstty.c258 static int set_special_character(struct termios *new, int *i, char *char_name) in set_special_character() argument
264 if (!strcmp(chars[j].name, char_name)) { in set_special_character()
274 xprintf("setting %s to %s (%02x)\n", char_name, arg, ch); in set_special_character()
/external/freetype/include/freetype/internal/
Dt1types.h80 const FT_String** char_name; member
/external/freetype/src/type1/
Dt1load.c1493 FT_FREE( encode->char_name ); in parse_encoding()
1500 FT_NEW_ARRAY( encode->char_name, array_size ) || in parse_encoding()
2644 const FT_String* char_name = in T1_Open_Face() local
2649 type1->encoding.char_name [charcode] = ".notdef"; in T1_Open_Face()
2651 if ( char_name ) in T1_Open_Face()
2657 if ( ft_strcmp( char_name, glyph_name ) == 0 ) in T1_Open_Face()
2660 type1->encoding.char_name [charcode] = glyph_name; in T1_Open_Face()
Dt1driver.c330 retval = ft_strlen( type1->encoding.char_name[idx] ) + 1; in t1_ps_get_font_value()
333 ft_memcpy( value, (void *)( type1->encoding.char_name[idx] ), in t1_ps_get_font_value()
Dt1objs.c257 FT_FREE( type1->encoding.char_name ); in T1_Face_Done()
/external/freetype/
DChangeLog.201913 (T1_Done_Face): Free `char_name' table to avoid a memory leak.