Lines Matching defs:ex
101 // for calculated values (through 'em' and 'ex'). ('ex' is currently not read.)
102 // The following properties can depend on 'em' and 'ex':
289 // 'font-size'/'font' must be before properties that need to know em, ex size (SPILength,
386 // // 'font-size' must be before properties that need to know em, ex size (SPILength, SPILengthOrNormal)
1525 case SP_CSS_UNIT_EX: return "ex";
1894 double ex, bool only_with_units = false)
1899 double wd = g_ascii_strtod(w, &units) * ex;
1905 // 'e' matches 'em' or 'ex'
1919 sp_css_attr_scale_property_list(SPCSSAttr *css, gchar const *property, double ex)
1931 double wd = g_ascii_strtod(w, &units) * ex;
1949 * Scale any properties that may hold <length> by ex.
1952 sp_css_attr_scale(SPCSSAttr *css, double ex)
1954 sp_css_attr_scale_property_single(css, "baseline-shift", ex);
1955 sp_css_attr_scale_property_single(css, "stroke-width", ex);
1956 sp_css_attr_scale_property_list (css, "stroke-dasharray", ex);
1957 sp_css_attr_scale_property_single(css, "stroke-dashoffset", ex);
1958 sp_css_attr_scale_property_single(css, "font-size", ex);
1959 sp_css_attr_scale_property_single(css, "kerning", ex);
1960 sp_css_attr_scale_property_single(css, "letter-spacing", ex);
1961 sp_css_attr_scale_property_single(css, "word-spacing", ex);
1962 sp_css_attr_scale_property_single(css, "line-height", ex, true);