Home
last modified time | relevance | path

Searched refs:opsz (Results 1 – 12 of 12) sorted by relevance

/external/fonttools/Tests/feaLib/data/
DSTAT_test.fea13 DesignAxis opsz 0 {
30 location opsz 8; # comment here
36 location opsz 11 9 12;
42 location opsz 16.7 12 24;
47 location opsz 72 24 72;
DSTAT_test_elidedFallbackNameID.fea7 DesignAxis opsz 0 {
20 location opsz 8; # comment here
25 location opsz 11 9 12;
30 location opsz 16.7 12 24;
34 location opsz 72 24 72;
DSTAT_bad.fea11 DesignAxis opsz 0 { badtag "Optical Size"; }; #'badtag' instead of 'name' is incorrect
17 location opsz 8 5 9;
23 location opsz 11 9 12;
29 location opsz 16.7 12 24;
34 location opsz 72 24 72;
/external/google-fonts/fraunces/fonts/
DWebFonts Report.txt4 Frances-Italic[GOOF,WONK,opsz,wght].ttf
6 …rs/spencercharles/Documents/Git Repositories/Fraunces/fonts/Frances-Italic[GOOF,WONK,opsz,wght].ttf
15 Fraunces[GOOF,WONK,opsz,wght].ttf
17 source: /Users/spencercharles/Documents/Git Repositories/Fraunces/fonts/Fraunces[GOOF,WONK,opsz,wgh…
/external/harfbuzz_ng/test/shaping/data/text-rendering-tests/tests/
DCVAR-2.tests1 …--remove-default-ignorables --font-funcs=ft --variations=wght=28,wdth=100,opsz=72:U+0068,U+006F,U+…
2 …--remove-default-ignorables --font-funcs=ft --variations=wght=94,wdth=100,opsz=72:U+0068,U+006F,U+…
3 …-remove-default-ignorables --font-funcs=ft --variations=wght=194,wdth=100,opsz=72:U+0068,U+006F,U+…
DCVAR-1.tests1 …--remove-default-ignorables --font-funcs=ft --variations=wght=28,wdth=100,opsz=72:U+0068,U+006F,U+…
2 …--remove-default-ignorables --font-funcs=ft --variations=wght=94,wdth=100,opsz=72:U+0068,U+006F,U+…
3 …-remove-default-ignorables --font-funcs=ft --variations=wght=194,wdth=100,opsz=72:U+0068,U+006F,U+…
/external/google-fonts/fraunces/
DREADME.md15 Optical Size | opsz | 9 to 144 | 36 | Labeled 9, 36, 72, and 144 in instances.
18 …ntrols substitution of "wonky" characters. Automatically substitutes when opsz > 18. Not listed in…
20 ### `opsz` (Optical Size) Axis
22 The `opsz` axis ties together changes in contrast, x-height, spacing, and character widths. As `ops…
/external/skia/src/ports/
DSkTypeface_mac_ct.cpp162 static void add_opsz_attr(CFMutableDictionaryRef attr, double opsz) { in add_opsz_attr() argument
164 CFNumberCreate(kCFAllocatorDefault, kCFNumberDoubleType, &opsz)); in add_opsz_attr()
180 OpszVariation opsz) in SkCTFontCreateExactCopy() argument
187 if (opsz.isSet) { in SkCTFontCreateExactCopy()
188 add_opsz_attr(attr.get(), opsz.value); in SkCTFontCreateExactCopy()
200 SkUniqueCFRef<CFTypeRef> opsz(CTFontCopyAttribute(baseFont, SkCTFontOpticalSizeAttribute)); in SkCTFontCreateExactCopy() local
202 if (!opsz || in SkCTFontCreateExactCopy()
203 CFGetTypeID(opsz.get()) != CFNumberGetTypeID() || in SkCTFontCreateExactCopy()
204 !CFNumberGetValue(static_cast<CFNumberRef>(opsz.get()),kCFNumberDoubleType,&opsz_val) || in SkCTFontCreateExactCopy()
1112 OpszVariation opsz; in SkCTVariationFromSkFontArguments() local
[all …]
DSkTypeface_mac_ct.h55 OpszVariation opsz; member
61 OpszVariation opsz);
DSkFontMgr_mac_ct.cpp205 OpszVariation opsz; in ctvariation_from_skfontdata() local
262 opsz.isSet = true; in ctvariation_from_skfontdata()
263 opsz.value = value; in ctvariation_from_skfontdata()
270 return { SkUniqueCFRef<CFDictionaryRef>(std::move(dict)), nullptr, opsz }; in ctvariation_from_skfontdata()
630 return SkTypeface_Mac::Make(std::move(ctVariant), ctVariation.opsz, std::move(stream)); in onMakeFromStreamArgs()
668 return SkTypeface_Mac::Make(std::move(ctVariant), ctVariation.opsz, in onMakeFromFontData()
/external/skia/site/docs/dev/design/raster_tragedy/
D_index.md47 font selection or 'opsz', automatically, or through hinting) then correct linear blending tends
131 'opsz' axis. The presence of an 'opsz' axis is like the type designer giving really good
133 will have a 'opsz' axis. Since we don't always have an 'opsz' what can be done to prevent small
/external/scapy/scapy/layers/
Dinet.py257 opsz = (pkt.dataofs-5)*4
258 if opsz < 0:
260 opsz = 0
261 return s[opsz:],self.m2i(pkt,s[:opsz])