Lines Matching refs:css

169         if (css == null) {
170 css = new CSS();
504 css.addInternalCSSValue(attr, key, value);
514 Object iValue = css.getCssValue(key, value);
531 AttributeSet cssAttrSet = css.translateHTMLToCSS(htmlAttrSet);
555 if (css == null) {
558 css = new CSS();
568 Object cssValue = css.styleConstantsValueToCSSValue
571 Object cssKey = css.styleConstantsKeyToCSSKey
616 Object cssKey = css.styleConstantsKeyToCSSKey((StyleConstants)key);
741 Object cssKey = css.styleConstantsKeyToCSSKey
745 cssValue = css.styleConstantsValueToCSSValue
790 Object cssKey = css.styleConstantsKeyToCSSKey
808 Object cssKey = css.styleConstantsKeyToCSSKey
813 return css.cssValueToStyleConstantsValue
846 Object cssKey = css.styleConstantsKeyToCSSKey
864 Object cssKey = css.styleConstantsKeyToCSSKey
869 return css.cssValueToStyleConstantsValue
884 return css.getFont(this, a, 12, this);
896 Color c = css.getColor(a, CSS.Attribute.COLOR);
912 return css.getColor(a, CSS.Attribute.BACKGROUND_COLOR);
920 return new BoxPainter(a, css, this);
935 css.setBaseFontSize(sz);
944 css.setBaseFontSize(size);
955 return css.getPointSize(index, this);
963 return css.getPointSize(size, this);
1765 BoxPainter(AttributeSet a, CSS css, StyleSheet ss) {
1767 this.css = css;
1776 bgPainter = new BackgroundImagePainter(a, css, ss);
1796 Color color = css.getColor(a, CSS.Attribute.BORDER_COLOR);
1798 color = css.getColor(a, CSS.Attribute.COLOR);
1916 return css.getLength(a, key, ss);
1964 * @param cssMargin margin from css
2009 CSS css;
2464 BackgroundImagePainter(AttributeSet a, CSS css, StyleSheet ss) {
2476 hPosition *= css.getFontSize(a, 12, ss);
2482 vPosition *= css.getFontSize(a, 12, ss);
2645 In the case of an A tag, the css rules
2702 Object cssKey = css.styleConstantsKeyToCSSKey
2722 Object cssKey = css.styleConstantsKeyToCSSKey
2740 // didn't find it... try parent if it's a css attribute
2743 CSS.Attribute css = (CSS.Attribute) key;
2744 if (css.isInherited()) {
3130 private CSS css;