Home
last modified time | relevance | path

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

12345678910>>...29

/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/data/tree_construction/
Dtests23.dat2 <p><font size=4><font color=red><font size=4><font size=4><font size=4><font size=4><font size=4><f…
12 | <font>
14 | <font>
16 | <font>
18 | <font>
20 | <font>
22 | <font>
24 | <font>
26 | <font>
29 | <font>
[all …]
/external/harfbuzz_ng/src/
Dhb-font.cc48 hb_font_get_font_h_extents_nil (hb_font_t *font, in hb_font_get_font_h_extents_nil() argument
57 hb_font_get_font_h_extents_parent (hb_font_t *font, in hb_font_get_font_h_extents_parent() argument
62 hb_bool_t ret = font->parent->get_font_h_extents (metrics); in hb_font_get_font_h_extents_parent()
64 metrics->ascender = font->parent_scale_y_distance (metrics->ascender); in hb_font_get_font_h_extents_parent()
65 metrics->descender = font->parent_scale_y_distance (metrics->descender); in hb_font_get_font_h_extents_parent()
66 metrics->line_gap = font->parent_scale_y_distance (metrics->line_gap); in hb_font_get_font_h_extents_parent()
72 hb_font_get_font_v_extents_nil (hb_font_t *font, in hb_font_get_font_v_extents_nil() argument
81 hb_font_get_font_v_extents_parent (hb_font_t *font, in hb_font_get_font_v_extents_parent() argument
86 hb_bool_t ret = font->parent->get_font_v_extents (metrics); in hb_font_get_font_v_extents_parent()
88 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-ft.cc111 hb_ft_font_set_load_flags (hb_font_t *font, int load_flags) in hb_ft_font_set_load_flags() argument
113 if (font->immutable) in hb_ft_font_set_load_flags()
116 if (font->destroy != (hb_destroy_func_t) _hb_ft_font_destroy) in hb_ft_font_set_load_flags()
119 hb_ft_font_t *ft_font = (hb_ft_font_t *) font->user_data; in hb_ft_font_set_load_flags()
134 hb_ft_font_get_load_flags (hb_font_t *font) in hb_ft_font_get_load_flags() argument
136 if (font->destroy != (hb_destroy_func_t) _hb_ft_font_destroy) in hb_ft_font_get_load_flags()
139 const hb_ft_font_t *ft_font = (const hb_ft_font_t *) font->user_data; in hb_ft_font_get_load_flags()
145 hb_ft_font_get_face (hb_font_t *font) in hb_ft_font_get_face() argument
147 if (font->destroy != (hb_destroy_func_t) _hb_ft_font_destroy) in hb_ft_font_get_face()
150 const hb_ft_font_t *ft_font = (const hb_ft_font_t *) font->user_data; in hb_ft_font_get_face()
[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/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/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()
178 SkPaint font; in TestPaintProps() local
179 font.setTextEncoding(SkPaint::kGlyphID_TextEncoding); in TestPaintProps()
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/ref/
Dref.css6 /* Century Schoolbook font is very similar to Computer Modern Math: cmmi */
7 .math { font-family: "Century Schoolbook", serif; }
8 .math i { font-family: "Century Schoolbook", serif;
9 font-weight: bold }
10 .boldmath { font-family: "Century Schoolbook", serif;
11 font-weight: bold }
20 small.xtiny { font-size : xx-small; }
21 small.tiny { font-size : x-small; }
22 small.scriptsize { font-size : smaller; }
23 small.footnotesize { font-size : small; }
[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/mesa3d/src/gallium/state_trackers/vega/
Dtext.c48 static VGboolean del_glyph(struct vg_font *font, in del_glyph() argument
54 cso_hash_take(font->glyphs, (unsigned) glyphIndex); in del_glyph()
61 static void add_glyph(struct vg_font *font, in add_glyph() argument
71 del_glyph(font, glyphIndex); in add_glyph()
79 cso_hash_insert(font->glyphs, (unsigned) glyphIndex, glyph); in add_glyph()
82 static struct vg_glyph *get_glyph(struct vg_font *font, in get_glyph() argument
87 iter = cso_hash_find(font->glyphs, (unsigned) glyphIndex); in get_glyph()
135 struct vg_font *font; in font_create() local
137 font = CALLOC_STRUCT(vg_font); in font_create()
138 vg_init_object(&font->base, ctx, VG_OBJECT_FONT); in font_create()
[all …]
Dapi_text.c52 struct vg_font *font = handle_to_font(f); in vegaDestroyFont() local
64 font_destroy(font); in vegaDestroyFont()
67 void vegaSetGlyphToPath(VGFont font, in vegaSetGlyphToPath() argument
78 if (font == VG_INVALID_HANDLE || in vegaSetGlyphToPath()
79 !vg_context_is_object_valid(ctx, VG_OBJECT_FONT, font)) { in vegaSetGlyphToPath()
95 f = handle_to_font(font); in vegaSetGlyphToPath()
101 void vegaSetGlyphToImage(VGFont font, in vegaSetGlyphToImage() argument
111 if (font == VG_INVALID_HANDLE || in vegaSetGlyphToImage()
112 !vg_context_is_object_valid(ctx, VG_OBJECT_FONT, font)) { in vegaSetGlyphToImage()
128 f = handle_to_font(font); in vegaSetGlyphToImage()
[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/chromium-trace/catapult/third_party/flot/
Djquery.flot.canvas.js91 context.fillStyle = info.font.color;
92 context.font = info.font.definition;
147 Canvas.prototype.getTextInfo = function(layer, text, font, angle, width) { argument
150 return getTextInfo.call(this, layer, text, font, angle, width);
161 if (typeof font === "object") {
162 …textStyle = font.style + " " + font.variant + " " + font.weight + " " + font.size + "px " + font.f…
164 textStyle = font;
190 if (typeof font !== "object") {
194 .addClass(typeof font === "string" ? font : null)
197 font = { variable
[all …]
Djquery.flot.canvas.min.js7font.color;context.font=info.font.definition;updateStyles=false}for(var i=0,position;position=posi… argument
/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/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/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/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/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/llvm/docs/_ocamldoc/
Dstyle.css5 a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp, selector
8 { margin: 0; padding: 0; border: 0 none; outline: 0; font-size: 100%;
9 font-weight: inherit; font-style:inherit; font-family:inherit;
17 body { font: normal 10pt/1.375em helvetica, arial, sans-serif; text-align:left;
21 b { font-weight: bold }
22 em { font-style: italic }
24 tt, code, pre { font-family: WorkAroundWebKitAndMozilla, monospace;
25 font-size: 1em; }
26 pre code { font-size : inherit; }
30 { font-size : 0.813em; line-height:0; margin-left:0.4ex;}
[all …]
/external/chromium-trace/catapult/third_party/Paste/docs/
Ddefault.css13 font-family: Arial, sans-serif;
19 font-family: Times New Roman, Times, serif;
48 font-style: normal;
49 font-family: monospace;
50 font-weight: bold;
62 font-weight: bold;
79 font-weight: bold;
80 font-family: sans-serif;
89 font-weight: bold;
90 font-family: sans-serif;
[all …]
/external/icu/icu4c/
Dicu4c.css10 font-size: 1em;
11 font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
47 font-family: Georgia, "Times New Roman", Times, serif;
58 font-weight: 700;
59 font-size: 20pt;
61 font-size: 2em;
62 font-weight: bold;
69 font-weight: 700;
70 font-size: 2em;
90 font-size: 1.5em;
[all …]

12345678910>>...29