/external/pdfium/third_party/freetype/src/cid/ |
D | cidgload.c | 147 decoder->font_matrix = dict->font_matrix; in cid_load_glyph() 281 FT_Matrix font_matrix; in cid_slot_load_glyph() local 328 font_matrix = decoder.font_matrix; in cid_slot_load_glyph() 352 internal->glyph_matrix = font_matrix; in cid_slot_load_glyph() 380 if ( font_matrix.xx != 0x10000L || font_matrix.yy != 0x10000L || in cid_slot_load_glyph() 381 font_matrix.xy != 0 || font_matrix.yx != 0 ) in cid_slot_load_glyph() 383 FT_Outline_Transform( &cidglyph->outline, &font_matrix ); in cid_slot_load_glyph() 386 font_matrix.xx ); in cid_slot_load_glyph() 388 font_matrix.yy ); in cid_slot_load_glyph()
|
D | cidload.c | 167 matrix = &dict->font_matrix; in cid_parse_font_matrix()
|
/external/pdfium/third_party/freetype/src/type1/ |
D | t1gload.c | 72 decoder->font_matrix = type1->font_matrix; in T1_Parse_Glyph_And_Get_Char_String() 283 FT_Matrix font_matrix; in T1_Load_Glyph() local 362 font_matrix = decoder.font_matrix; in T1_Load_Glyph() 390 internal->glyph_matrix = font_matrix; in T1_Load_Glyph() 429 if ( font_matrix.xx != 0x10000L || font_matrix.yy != 0x10000L || in T1_Load_Glyph() 430 font_matrix.xy != 0 || font_matrix.yx != 0 ) in T1_Load_Glyph() 432 FT_Outline_Transform( &t1glyph->outline, &font_matrix ); in T1_Load_Glyph() 435 font_matrix.xx ); in T1_Load_Glyph() 437 font_matrix.yy ); in T1_Load_Glyph()
|
D | t1driver.c | 197 if ( idx < sizeof ( type1->font_matrix ) / in t1_ps_get_font_value() 198 sizeof ( type1->font_matrix.xx ) ) in t1_ps_get_font_value() 209 val = type1->font_matrix.xx; in t1_ps_get_font_value() 212 val = type1->font_matrix.xy; in t1_ps_get_font_value() 215 val = type1->font_matrix.yx; in t1_ps_get_font_value() 218 val = type1->font_matrix.yy; in t1_ps_get_font_value()
|
D | t1load.c | 1118 FT_Matrix* matrix = &face->type1.font_matrix; in t1_parse_font_matrix()
|
/external/freetype/src/cff/ |
D | cffobjs.c | 641 FT_Matrix* matrix = &dict->font_matrix; in cff_face_init() 690 FT_Matrix_Multiply_Scaled( &top->font_matrix, in cff_face_init() 691 &sub->font_matrix, in cff_face_init() 694 &top->font_matrix, in cff_face_init() 705 sub->font_matrix = top->font_matrix; in cff_face_init() 711 matrix = &sub->font_matrix; in cff_face_init()
|
D | cffgload.c | 2619 FT_Matrix font_matrix; in cff_slot_load() local 2777 font_matrix = cff->subfonts[fd_index]->font_dict.font_matrix; in cff_slot_load() 2790 font_matrix = cff->top_font.font_dict.font_matrix; in cff_slot_load() 2944 internal->glyph_matrix = font_matrix; in cff_slot_load() 3017 if ( !( font_matrix.xx == 0x10000L && in cff_slot_load() 3018 font_matrix.yy == 0x10000L && in cff_slot_load() 3019 font_matrix.xy == 0 && in cff_slot_load() 3020 font_matrix.yx == 0 ) ) in cff_slot_load() 3021 FT_Outline_Transform( &glyph->root.outline, &font_matrix ); in cff_slot_load() 3030 FT_Vector_Transform( &advance, &font_matrix ); in cff_slot_load() [all …]
|
D | cfftoken.h | 37 CFF_FIELD_CALLBACK( 0x107, font_matrix, "FontMatrix" )
|
D | cfftypes.h | 119 FT_Matrix font_matrix; member
|
D | cffload.c | 1327 top->font_matrix.xx = 0x10000L; in cff_subfont_load() 1328 top->font_matrix.yy = 0x10000L; in cff_subfont_load()
|
D | cffparse.c | 510 FT_Matrix* matrix = &dict->font_matrix; in cff_parse_font_matrix()
|
/external/pdfium/third_party/freetype/src/cff/ |
D | cffobjs.c | 646 FT_Matrix* matrix = &dict->font_matrix; in cff_face_init() 695 FT_Matrix_Multiply_Scaled( &top->font_matrix, in cff_face_init() 696 &sub->font_matrix, in cff_face_init() 699 &top->font_matrix, in cff_face_init() 710 sub->font_matrix = top->font_matrix; in cff_face_init() 716 matrix = &sub->font_matrix; in cff_face_init()
|
D | cffgload.c | 2619 FT_Matrix font_matrix; in cff_slot_load() local 2777 font_matrix = cff->subfonts[fd_index]->font_dict.font_matrix; in cff_slot_load() 2790 font_matrix = cff->top_font.font_dict.font_matrix; in cff_slot_load() 2944 internal->glyph_matrix = font_matrix; in cff_slot_load() 3017 if ( font_matrix.xx != 0x10000L || font_matrix.yy != 0x10000L || in cff_slot_load() 3018 font_matrix.xy != 0 || font_matrix.yx != 0 ) in cff_slot_load() 3020 FT_Outline_Transform( &glyph->root.outline, &font_matrix ); in cff_slot_load() 3023 font_matrix.xx ); in cff_slot_load() 3025 font_matrix.yy ); in cff_slot_load()
|
D | cfftoken.h | 37 CFF_FIELD_CALLBACK( 0x107, font_matrix, "FontMatrix" )
|
D | cfftypes.h | 119 FT_Matrix font_matrix; member
|
D | cffload.c | 1327 top->font_matrix.xx = 0x10000L; in cff_subfont_load() 1328 top->font_matrix.yy = 0x10000L; in cff_subfont_load()
|
D | cffparse.c | 510 FT_Matrix* matrix = &dict->font_matrix; in cff_parse_font_matrix()
|
/external/harfbuzz_ng/util/ |
D | helper-cairo.cc | 104 cairo_matrix_t ctm, font_matrix; in helper_cairo_create_scaled_font() local 108 cairo_matrix_init_scale (&font_matrix, in helper_cairo_create_scaled_font() 116 &font_matrix, in helper_cairo_create_scaled_font()
|
/external/pdfium/third_party/freetype/include/freetype/internal/ |
D | t1types.h | 118 FT_Matrix font_matrix; member
|
D | psaux.h | 682 FT_Matrix font_matrix; member
|
/external/freetype/include/internal/ |
D | t1types.h | 118 FT_Matrix font_matrix; member
|
D | psaux.h | 682 FT_Matrix font_matrix; member
|
/external/pdfium/third_party/freetype/include/freetype/ |
D | t1tables.h | 352 FT_Matrix font_matrix; member
|
/external/freetype/include/ |
D | t1tables.h | 352 FT_Matrix font_matrix; member
|