Lines Matching defs:style

102  * The semantics for when a CSS style should overide visual attributes
175 * Fetches the style to use to render the given type
253 Style style = getResolvedStyle(cacheLookup.toString(),
255 return style;
276 Style style = getResolvedStyle(selector);
277 return style;
285 * a result of parsing a <style> tag.
316 * result of encountering an HTML style attribute.
352 * Removes a named style previously added to the document.
354 * @param nm the name of the style to remove
374 ResolvedStyle style = values.nextElement();
375 style.removeStyle(rule);
387 * any previously added style sheets. An added StyleSheet will never
388 * override the rules of the receiving style sheet.
430 // The following is used to import style sheets.
455 * Imports a style sheet from <code>url</code>. The resulting rules
1234 * Returns the style that linked attributes should be added to. This
1235 * will create the style if necessary.
1253 * Returns the resolved style for <code>selector</code>. This will
1254 * create the resolved style, if necessary.
1267 * Returns the resolved style for <code>selector</code>. This will
1268 * create the resolved style, if necessary.
1314 Style style = parentMapping.getStyle();
1315 if (style != null) {
1422 // Get the AttributeSet from linked style sheets.
1447 * the style is being asked for. The
1663 ResolvedStyle style = values.nextElement();
1664 if (style.matches(selectorName)) {
1665 style.insertStyle(newStyle, specificity);
2245 * Draws the bullet icon specified by the list-style-image argument.
2793 * <code>style</code> will be added before any extended styles, that
2796 synchronized void insertStyle(Style style, int specificity) {
2806 insertAttributeSetAt(style, counter);
2811 * Removes a previously added style. This will do nothing if
2812 * <code>style</code> is not referenced by the receiver.
2814 synchronized void removeStyle(Style style) {
2818 if (attrs[counter] == style) {
2845 * Removes the style at <code>index</code> +
3038 public void setStyle(Style style) {
3039 this.style = style;
3046 return style;
3117 private Style style;
3145 /** Where the style sheet was found. Used for relative imports. */
3255 // base that style sheet was loaded from. For the time
3305 /** True if the attributes are coming from a linked/imported style. */