Lines Matching +refs:val +refs:changes
1143 gdouble val;
1160 /* TODO: Consider calculating val unconditionally, i.e. drop the first `if' line, and
1161 get rid of the `else val = 0.0'. Similarly below and in sp-string.cpp. */
1164 val = style->font_size.computed * style->letter_spacing.value;
1166 val = style->font_size.computed * style->letter_spacing.value * 0.5;
1168 val = 0.0;
1171 val = style->letter_spacing.computed;
1189 val += zby;
1196 style->letter_spacing.value = val / style->font_size.computed;
1198 style->letter_spacing.value = val / style->font_size.computed * 2;
1201 style->letter_spacing.computed = val;
1209 g_snprintf(string_val, sizeof(string_val), "%f", val);
1811 * for instance, have different width, so moving them out of tspans changes
1838 visible text-decoration changes on white spaces should not be subject
1908 every child. Returns true if any changes were made to the tree.
1910 All the tidy operators return true if they made changes, and alter their
1931 bool changes = false;
1939 changes |= tidy_xml_tree_recursively(child, has_text_decoration);
1945 changes = true;
1953 return changes;