Home
last modified time | relevance | path

Searched refs:font (Results 1 – 25 of 788) sorted by relevance

12345678910>>...32

/external/harfbuzz_ng/src/
Dhb-font.cc39 hb_font_get_font_h_extents_nil (hb_font_t *font, in hb_font_get_font_h_extents_nil() argument
48 hb_font_get_font_h_extents_parent (hb_font_t *font, in hb_font_get_font_h_extents_parent() argument
53 hb_bool_t ret = font->parent->get_font_h_extents (metrics); in hb_font_get_font_h_extents_parent()
55 metrics->ascender = font->parent_scale_y_distance (metrics->ascender); in hb_font_get_font_h_extents_parent()
56 metrics->descender = font->parent_scale_y_distance (metrics->descender); in hb_font_get_font_h_extents_parent()
57 metrics->line_gap = font->parent_scale_y_distance (metrics->line_gap); in hb_font_get_font_h_extents_parent()
63 hb_font_get_font_v_extents_nil (hb_font_t *font, in hb_font_get_font_v_extents_nil() argument
72 hb_font_get_font_v_extents_parent (hb_font_t *font, in hb_font_get_font_v_extents_parent() argument
77 hb_bool_t ret = font->parent->get_font_v_extents (metrics); in hb_font_get_font_v_extents_parent()
79 metrics->ascender = font->parent_scale_x_distance (metrics->ascender); in hb_font_get_font_v_extents_parent()
[all …]
Dhb-font.h112 typedef hb_bool_t (*hb_font_get_font_extents_func_t) (hb_font_t *font, void *font_data,
119 typedef hb_bool_t (*hb_font_get_nominal_glyph_func_t) (hb_font_t *font, void *font_data,
123 typedef hb_bool_t (*hb_font_get_variation_glyph_func_t) (hb_font_t *font, void *font_data,
129 typedef hb_position_t (*hb_font_get_glyph_advance_func_t) (hb_font_t *font, void *font_data,
135 typedef hb_bool_t (*hb_font_get_glyph_origin_func_t) (hb_font_t *font, void *font_data,
142 typedef hb_position_t (*hb_font_get_glyph_kerning_func_t) (hb_font_t *font, void *font_data,
149 typedef hb_bool_t (*hb_font_get_glyph_extents_func_t) (hb_font_t *font, void *font_data,
153 typedef hb_bool_t (*hb_font_get_glyph_contour_point_func_t) (hb_font_t *font, void *font_data,
159 typedef hb_bool_t (*hb_font_get_glyph_name_func_t) (hb_font_t *font, void *font_data,
163 typedef hb_bool_t (*hb_font_get_glyph_from_name_func_t) (hb_font_t *font, void *font_data,
[all …]
Dhb-ot-math.cc78 hb_ot_math_get_constant (hb_font_t *font, in hb_ot_math_get_constant() argument
81 const OT::MATH &math = _get_math (font->face); in hb_ot_math_get_constant()
82 return math.get_constant(constant, font); in hb_ot_math_get_constant()
95 hb_ot_math_get_glyph_italics_correction (hb_font_t *font, in hb_ot_math_get_glyph_italics_correction() argument
98 const OT::MATH &math = _get_math (font->face); in hb_ot_math_get_glyph_italics_correction()
99 return math.get_math_glyph_info().get_italics_correction (glyph, font); in hb_ot_math_get_glyph_italics_correction()
112 hb_ot_math_get_glyph_top_accent_attachment (hb_font_t *font, in hb_ot_math_get_glyph_top_accent_attachment() argument
115 const OT::MATH &math = _get_math (font->face); in hb_ot_math_get_glyph_top_accent_attachment()
116 return math.get_math_glyph_info().get_top_accent_attachment (glyph, font); in hb_ot_math_get_glyph_top_accent_attachment()
154 hb_ot_math_get_glyph_kerning (hb_font_t *font, in hb_ot_math_get_glyph_kerning() argument
[all …]
Dhb-ot-math-table.hh39 inline hb_position_t get_x_value (hb_font_t *font, const void *base) const in get_x_value()
40 { return font->em_scale_x (value) + (base+deviceTable).get_x_delta (font); } in get_x_value()
41 inline hb_position_t get_y_value (hb_font_t *font, const void *base) const in get_y_value()
42 { return font->em_scale_y (value) + (base+deviceTable).get_y_delta (font); } in get_y_value()
81 hb_font_t *font) const in get_value()
91 …return font->em_scale_y (minHeight[constant - HB_OT_MATH_CONSTANT_DELIMITED_SUB_FORMULA_MIN_HEIGHT… in get_value()
97 return mathValueRecords[constant - HB_OT_MATH_CONSTANT_MATH_LEADING].get_x_value(font, this); in get_value()
146 return mathValueRecords[constant - HB_OT_MATH_CONSTANT_MATH_LEADING].get_y_value(font, this); in get_value()
177 hb_font_t *font) const in get_value()
180 return italicsCorrection[index].get_x_value (font, this); in get_value()
[all …]
Dhb-ft.cc122 hb_ft_font_set_load_flags (hb_font_t *font, int load_flags) in hb_ft_font_set_load_flags() argument
124 if (font->immutable) in hb_ft_font_set_load_flags()
127 if (font->destroy != (hb_destroy_func_t) _hb_ft_font_destroy) in hb_ft_font_set_load_flags()
130 hb_ft_font_t *ft_font = (hb_ft_font_t *) font->user_data; in hb_ft_font_set_load_flags()
145 hb_ft_font_get_load_flags (hb_font_t *font) in hb_ft_font_get_load_flags() argument
147 if (font->destroy != (hb_destroy_func_t) _hb_ft_font_destroy) in hb_ft_font_get_load_flags()
150 const hb_ft_font_t *ft_font = (const hb_ft_font_t *) font->user_data; in hb_ft_font_get_load_flags()
156 hb_ft_font_get_face (hb_font_t *font) in hb_ft_font_get_face() argument
158 if (font->destroy != (hb_destroy_func_t) _hb_ft_font_destroy) in hb_ft_font_get_face()
161 const hb_ft_font_t *ft_font = (const hb_ft_font_t *) font->user_data; in hb_ft_font_get_face()
[all …]
/external/swiftshader/third_party/LLVM/docs/CommandGuide/html/
Dmanpage.css5 body { font-family: Arial,Helvetica; }
14 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
15 color: #ff6600; font-size: 10pt;
18 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
19 color: #ffffff; font-size: 10pt;
22 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
23 color: #ffffff; font-size: xx-small;
26 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
27 color: #ffffff; font-size: xx-small;
30 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
[all …]
/external/swiftshader/third_party/LLVM/docs/CommandGuide/
Dmanpage.css5 body { font-family: Arial,Helvetica; }
14 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
15 color: #ff6600; font-size: 10pt;
18 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
19 color: #ffffff; font-size: 10pt;
22 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
23 color: #ffffff; font-size: xx-small;
26 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
27 color: #ffffff; font-size: xx-small;
30 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
[all …]
/external/freetype/src/cff/
Dcf2font.c242 cf2_font_setup( CF2_Font font, in cf2_font_setup() argument
246 CFF_Decoder* decoder = font->decoder; in cf2_font_setup()
254 CF2_Fixed boldenX = font->syntheticEmboldeningAmountX; in cf2_font_setup()
255 CF2_Fixed boldenY = font->syntheticEmboldeningAmountY; in cf2_font_setup()
265 font->error = FT_Err_Ok; in cf2_font_setup()
270 if ( font->lastSubfont != subFont ) in cf2_font_setup()
272 font->lastSubfont = subFont; in cf2_font_setup()
284 font->error = cf2_getNormalizedVector( decoder, in cf2_font_setup()
287 if ( font->error ) in cf2_font_setup()
305 font->blend.font = subFont->blend.font; in cf2_font_setup()
[all …]
/external/pdfium/third_party/freetype/src/cff/
Dcf2font.c241 cf2_font_setup( CF2_Font font, in cf2_font_setup() argument
245 CFF_Decoder* decoder = font->decoder; in cf2_font_setup()
250 CF2_Fixed boldenX = font->syntheticEmboldeningAmountX; in cf2_font_setup()
251 CF2_Fixed boldenY = font->syntheticEmboldeningAmountY; in cf2_font_setup()
258 font->error = FT_Err_Ok; in cf2_font_setup()
263 if ( font->lastSubfont != subFont ) in cf2_font_setup()
265 font->lastSubfont = subFont; in cf2_font_setup()
273 if ( font->ppem != ppem ) in cf2_font_setup()
275 font->ppem = ppem; in cf2_font_setup()
280 font->hinted = (FT_Bool)( font->renderingFlags & CF2_FlagsHinted ); in cf2_font_setup()
[all …]
Dcffload.c583 cff_index_get_name( CFF_Font font, in cff_index_get_name() argument
586 CFF_Index idx = &font->name_index; in cff_index_get_name()
612 cff_index_get_string( CFF_Font font, in cff_index_get_string() argument
615 return ( element < font->num_strings ) in cff_index_get_string()
616 ? (FT_String*)font->strings[element] in cff_index_get_string()
622 cff_index_get_sid_string( CFF_Font font, in cff_index_get_sid_string() argument
631 return cff_index_get_string( font, sid - 391 ); in cff_index_get_sid_string()
634 if ( !font->psnames ) in cff_index_get_sid_string()
638 return (FT_String *)font->psnames->adobe_std_strings( sid ); in cff_index_get_sid_string()
1304 cff_subfont_load( CFF_SubFont font, in cff_subfont_load() argument
[all …]
/external/abi-compliance-checker/modules/Internals/Styles/
DReport.css2 font-family:Arial, sans-serif;
15 font-size:1.625em;
20 font-size:1.25em;
24 font-weight:bold;
31 font-weight:bold;
37 font-size:0.875em;
47 font-size:0.875em;
54 font-size:0.875em;
58 font-weight:100;
62 font-size:0.875em;
[all …]
DSymbolsList.css2 font-family:Arial, sans-serif;
15 font-size:1.625em;
18 font-weight:bold;
23 font-weight:bold;
34 font-size:0.875em;
35 font-weight:bold;
39 font-size:0.94em;
43 font-size:0.875em;
44 font-weight:bold;
47 font-weight:normal;
[all …]
/external/fonttools/Lib/fontTools/ttLib/tables/
DotConverters.py67 def read(self, reader, font, tableDict): argument
71 def write(self, writer, font, tableDict, value, repeatIndex=None): argument
75 def xmlRead(self, attrs, content, font): argument
79 def xmlWrite(self, xmlWriter, font, value, name, attrs): argument
85 def xmlWrite(self, xmlWriter, font, value, name, attrs): argument
88 def xmlRead(self, attrs, content, font): argument
92 def xmlRead(self, attrs, content, font): argument
96 def read(self, reader, font, tableDict): argument
98 def write(self, writer, font, tableDict, value, repeatIndex=None): argument
102 def read(self, reader, font, tableDict): argument
[all …]
/external/skia/tests/
DTextBlobTest.cpp102 SkPaint font; in TestBounds() local
103 font.setTextEncoding(SkPaint::kGlyphID_TextEncoding); in TestBounds()
113 builder.allocRun(font, 16, 0, 0, &r1); in TestBounds()
120 builder.allocRunPosH(font, 16, 0, &r1); in TestBounds()
127 builder.allocRunPos(font, 16, &r1); in TestBounds()
137 builder.allocRun(font, 16, 0, 0, &r1); in TestBounds()
138 builder.allocRunPosH(font, 16, 0, &r2); in TestBounds()
139 builder.allocRunPos(font, 16, &r3); in TestBounds()
177 SkPaint font; in TestPaintProps() local
178 font.setTextEncoding(SkPaint::kGlyphID_TextEncoding); in TestPaintProps()
[all …]
/external/harfbuzz_ng/test/api/
Dtest-font.c113 _test_font_nil_funcs (hb_font_t *font) in _test_font_nil_funcs() argument
118 unsigned int upem = hb_face_get_upem (hb_font_get_face (font)); in _test_font_nil_funcs()
121 g_assert (!hb_font_get_glyph_contour_point (font, 17, 2, &x, &y)); in _test_font_nil_funcs()
125 x = hb_font_get_glyph_h_advance (font, 17); in _test_font_nil_funcs()
130 hb_font_get_glyph_extents (font, 17, &extents); in _test_font_nil_funcs()
137 g_assert (!hb_font_get_glyph (font, 17, 2, &glyph)); in _test_font_nil_funcs()
140 x = hb_font_get_glyph_h_kerning (font, 17, 19); in _test_font_nil_funcs()
149 hb_font_t *font; in _test_fontfuncs_nil() local
157 font = hb_font_create (face); in _test_fontfuncs_nil()
158 g_assert (font); in _test_fontfuncs_nil()
[all …]
/external/python/cpython2/Lib/lib-tk/test/test_tkinter/
Dtest_font.py3 import tkFont as font namespace
17 cls.font = font.Font(root=cls.root, name=fontname, exists=True)
19 cls.font = font.Font(root=cls.root, name=fontname, exists=False)
22 options = self.font.configure()
26 self.assertEqual(self.font.cget(key), options[key])
27 self.assertEqual(self.font[key], options[key])
30 self.assertIsInstance(self.font.cget(key), str)
31 self.assertIsInstance(self.font[key], str)
35 self.assertIsInstance(self.font.cget(key), sizetype)
36 self.assertIsInstance(self.font[key], sizetype)
[all …]
/external/libvncserver/libvncserver/
Dfont.c3 int rfbDrawChar(rfbScreenInfoPtr rfbScreen,rfbFontDataPtr font, in rfbDrawChar() argument
7 unsigned char* data=font->data+font->metaData[c*5]; in rfbDrawChar()
16 width=font->metaData[c*5+1]; in rfbDrawChar()
17 height=font->metaData[c*5+2]; in rfbDrawChar()
18 x+=font->metaData[c*5+3]; in rfbDrawChar()
19 y+=-font->metaData[c*5+4]-height+1; in rfbDrawChar()
37 void rfbDrawString(rfbScreenInfoPtr rfbScreen,rfbFontDataPtr font, in rfbDrawString() argument
41 x+=rfbDrawChar(rfbScreen,font,x,y,*string,colour); in rfbDrawString()
48 int rfbDrawCharWithClip(rfbScreenInfoPtr rfbScreen,rfbFontDataPtr font, in rfbDrawCharWithClip() argument
54 unsigned char* data=font->data+font->metaData[c*5]; in rfbDrawCharWithClip()
[all …]
/external/ImageMagick/www/Magick++/
Dmagick.css4 font-family: Candara, Sans-Serif;
7 font-size: 10pt;
14 font-weight: bold;
21 font-weight: bold;
27 font-family: monospace;
28 font-size: 90%;
40 font-family: monospace;
41 font-size: 90%;
49 font-family: Times, serif;
111 font-weight: bold;
[all …]
/external/swiftshader/third_party/LLVM/docs/
Ddoxygen.css2 font-family: Verdana,Geneva,Arial,Helvetica,sans-serif;
5 font-size: 90%;
9 font-size: 140%;
10 font-weight: bold;
13 font-size: 120%;
14 font-style: italic;
17 font-size: 100%;
19 CAPTION { font-weight: bold }
47 font-size: 70%;
51 font-weight: bold;
[all …]
/external/testng/eclipse-projects/beust.com/web/
Dsite.css3 .title { font-family: sans-serif; color: #99AACC;}
4 .bodyText { font-family: sans-serif; font-size: 9pt; color:#000000; }
5 .sub-header { font-family: sans-serif; font-style: normal; font-weight: bold; font-size: 9pt; color…
6 .log-text {font-family: sans-serif; font-style: normal; font-weight: lighter; font-size: 8pt; color…
7 .big-header { font-family: sans-serif; font-style: normal; font-weight: bold; font-size: 9pt; color…
/external/harfbuzz_ng/test/shaping/tests/
Dspaces.tests1 fonts/sha1sum/1c2c3fc37b2d4c3cb2ef726c6cdaaabd4b7f3eb9.ttf:--font-funcs=ot:U+0020:[gid1=0+560]
2 fonts/sha1sum/1c2c3fc37b2d4c3cb2ef726c6cdaaabd4b7f3eb9.ttf:--font-funcs=ot:U+00A0:[gid1=0+560]
3 fonts/sha1sum/1c2c3fc37b2d4c3cb2ef726c6cdaaabd4b7f3eb9.ttf:--font-funcs=ot:U+1680:[gid0=0+692]
4 fonts/sha1sum/1c2c3fc37b2d4c3cb2ef726c6cdaaabd4b7f3eb9.ttf:--font-funcs=ot:U+2000:[gid1=0+1024]
5 fonts/sha1sum/1c2c3fc37b2d4c3cb2ef726c6cdaaabd4b7f3eb9.ttf:--font-funcs=ot:U+2001:[gid1=0+2048]
6 fonts/sha1sum/1c2c3fc37b2d4c3cb2ef726c6cdaaabd4b7f3eb9.ttf:--font-funcs=ot:U+2002:[gid1=0+1024]
7 fonts/sha1sum/1c2c3fc37b2d4c3cb2ef726c6cdaaabd4b7f3eb9.ttf:--font-funcs=ot:U+2003:[gid1=0+2048]
8 fonts/sha1sum/1c2c3fc37b2d4c3cb2ef726c6cdaaabd4b7f3eb9.ttf:--font-funcs=ot:U+2004:[gid1=0+683]
9 fonts/sha1sum/1c2c3fc37b2d4c3cb2ef726c6cdaaabd4b7f3eb9.ttf:--font-funcs=ot:U+2005:[gid1=0+512]
10 fonts/sha1sum/1c2c3fc37b2d4c3cb2ef726c6cdaaabd4b7f3eb9.ttf:--font-funcs=ot:U+2006:[gid1=0+341]
[all …]
/external/testng/src/main/resources/
Dtestng-reports.css50 font-size: 25px;
51 font-family: Times;
57 font-family: monospace;
58 font-size: 18px;
95 font-size: 12px;
96 font-family: monospace;
108 font-size: 14px;
109 font-family: monospace;
114 font-family: monospace;
115 font-size: 12px;
[all …]
/external/autotest/frontend/client/src/autotest/public/
Dafeclient.css1 @font-face {
2 font-family: 'Open Sans';
3 font-style: normal;
4 font-weight: 300;
8 @font-face {
9 font-family: 'Roboto';
10 font-style: normal;
11 font-weight: 300;
15 @font-face {
16 font-family: 'Roboto';
[all …]
/external/shflags/doc/
Drst2html.css46 font-weight: bold }
53 font-weight: bold ;
65 font-weight: bold ;
66 font-family: sans-serif }
72 font-weight: bold ;
73 font-family: sans-serif }
87 font-style: italic }
90 font-weight: bold ;
91 font-style: normal }
99 font-size: smaller }
[all …]
/external/fmtlib/doc/bootstrap/
Dtype.less11 font-family: @headings-font-family;
12 font-weight: @headings-font-weight;
18 font-weight: normal;
32 font-size: 65%;
43 font-size: 75%;
47 h1, .h1 { font-size: @font-size-h1; }
48 h2, .h2 { font-size: @font-size-h2; }
49 h3, .h3 { font-size: @font-size-h3; }
50 h4, .h4 { font-size: @font-size-h4; }
51 h5, .h5 { font-size: @font-size-h5; }
[all …]

12345678910>>...32