Home | History | Annotate | Download | only in css

Lines Matching full:important

272 bool CSSParser::parseValue(CSSMutableStyleDeclaration* declaration, int id, const String& string, bool important)
283 m_important = important;
422 void CSSParser::addProperty(int propId, PassRefPtr<CSSValue> value, bool important)
424 auto_ptr<CSSProperty> prop(new CSSProperty(propId, value, important, m_currentShorthand, m_implicitShorthand));
587 bool CSSParser::parseValue(int propId, bool important)
608 addProperty(propId, CSSInheritedValue::create(), important);
614 addProperty(propId, CSSInitialValue::createExplicit(), important);
622 addUnresolvedProperty(propId, important);
685 return parseContent(propId, important);
700 return parseShape(propId, important);
724 if (num != 1 || !parseValue(CSSPropertyOverflowX, important))
727 addProperty(CSSPropertyOverflowY, value, important);
805 return parseFontWeight(important);
812 if (!parseValue(properties[0], important))
815 addProperty(properties[1], value, important);
820 if (!parseValue(properties[0], important) || !parseValue(properties[1], important))
959 addProperty(propId1, val1.release(), important);
961 addProperty(propId2, val2.release(), important);
1050 return parseFontStyle(important);
1053 return parseFontVariant(important);
1109 return parseCounter(propId, 1, important);
1114 return parseCounter(propId, 0, important);
1165 case CSSPropertySrc: // Only used within @font-face, so cannot use inherit | initial or be !important. This is a list of urls or local references.
1205 addProperty(propId, values.release(), important);
1217 if (parseBorderImage(propId, important, result)) {
1218 addProperty(propId, result, important);
1245 addProperty(propId, val.release(), important);
1250 return parseBorderRadius(propId, important);
1259 return parseShadow(propId, important);
1265 return parseReflect(propId, important);
1310 return parseShorthand(propId, properties, 5, important);
1384 addProperty(propId, val, important);
1399 addProperty(propId1, val1.release(), important);
1401 addProperty(propId2, val2.release(), important);
1403 addProperty(propId3, val3.release(), important);
1424 addProperty(propId, val.release(), important);
1438 addProperty(propId1, val1.release(), important);
1440 addProperty(propId2, val2.release(), important);
1458 addProperty(propId, val.release(), important);
1468 if (!parseValue(properties[0], important))
1471 addProperty(properties[1], value, important);
1476 if (!parseValue(properties[0], important) || !parseValue(properties[1], important))
1607 return parseDashboardRegions(propId, important);
1620 return parseFillShorthand(propId, properties, 6, important);
1626 return parseFillShorthand(propId, properties, 5, important);
1633 return parseShorthand(propId, properties, 3, important);
1640 return parseShorthand(propId, properties, 3, important);
1647 return parseShorthand(propId, properties, 3, important);
1654 return parseShorthand(propId, properties, 3, important);
1661 return parseShorthand(propId, properties, 3, important);
1668 return parseShorthand(propId, properties, 3, important);
1675 return parse4Values(propId, properties, important);
1682 return parse4Values(propId, properties, important);
1689 return parse4Values(propId, properties, important);
1696 return parse4Values(propId, properties, important);
1703 return parse4Values(propId, properties, important);
1711 return parseFont(important);
1717 return parseShorthand(propId, properties, 3, important);
1721 return parseShorthand(propId, properties, 2, important);
1726 return parseShorthand(propId, properties, 3, important);
1730 return parseShorthand(propId, properties, 2, important);
1733 return parseAnimationShorthand(important);
1735 return parseTransitionShorthand(important);
1755 return parseSVGValue(propId, important);
1774 addProperty(propId, parsedValue.release(), important);
1809 bool CSSParser::parseFillShorthand(int propId, const int* properties, int numProperties, bool important)
1901 addProperty(CSSPropertyBackgroundPositionX, values[i].release(), important);
1903 addProperty(CSSPropertyBackgroundPositionY, positionYValue.release(), important);
1905 addProperty(CSSPropertyWebkitMaskPositionX, values[i].release(), important);
1907 addProperty(CSSPropertyWebkitMaskPositionY, positionYValue.release(), important);
1909 addProperty(CSSPropertyBackgroundRepeatX, values[i].release(), important);
1911 addProperty(CSSPropertyBackgroundRepeatY, repeatYValue.release(), important);
1913 addProperty(CSSPropertyWebkitMaskRepeatX, values[i].release(), important);
1915 addProperty(CSSPropertyWebkitMaskRepeatY, repeatYValue.release(), important);
1917 addProperty(properties[i], values[i].release(), important);
1921 addProperty(CSSPropertyBackgroundClip, clipValue.release(), important);
1923 addProperty(CSSPropertyWebkitMaskClip, clipValue.release(), important);
1946 bool CSSParser::parseAnimationShorthand(bool important)
2001 addProperty(properties[i], values[i].release(), important);
2006 bool CSSParser::parseTransitionShorthand(bool important)
2059 addProperty(properties[i], values[i].release(), important);
2064 bool CSSParser::parseShorthand(int propId, const int *properties, int numProperties, bool important)
2080 if (parseValue(properties[propIndex], important))
2095 addProperty(properties[i], CSSInitialValue::createImplicit(), important);
2102 bool CSSParser::parse4Values(int propId, const int *properties, bool important)
2119 if (!parseValue(properties[0], important))
2123 addProperty(properties[1], value, important);
2124 addProperty(properties[2], value, important);
2125 addProperty(properties[3], value, important);
2130 if (!parseValue(properties[0], important) || !parseValue(properties[1], important))
2134 addProperty(properties[2], value, important);
2136 addProperty(properties[3], value, important);
2141 if (!parseValue(properties[0], important) || !parseValue(properties[1], important) || !parseValue(properties[2], important))
2145 addProperty(properties[3], value, important);
2150 if (!parseValue(properties[0], important) || !parseValue(properties[1], important) ||
2151 !parseValue(properties[2], important) || !parseValue(properties[3], important))
2166 bool CSSParser::parseContent(int propId, bool important)
2218 addProperty(propId, values.release(), important);
2855 bool CSSParser::parseDashboardRegions(int propId, bool important)
2864 addProperty(propId, CSSPrimitiveValue::createIdentifier(value->id), important);
2973 addProperty(propId, CSSPrimitiveValue::create(firstRegion.release()), important);
3034 bool CSSParser::parseShape(int propId, bool important)
3076 addProperty(propId, CSSPrimitiveValue::create(rect.release()), important);
3084 bool CSSParser::parseFont(bool important)
3189 addProperty(CSSPropertyFont, font.release(), important);
3252 bool CSSParser::parseFontStyle(bool important)
3285 addProperty(CSSPropertyFontStyle, parsedValue.release(), important);
3292 addProperty(CSSPropertyFontStyle, values.release(), important);
3299 bool CSSParser::parseFontVariant(bool important)
3332 addProperty(CSSPropertyFontVariant, parsedValue.release(), important);
3339 addProperty(CSSPropertyFontVariant, values.release(), important);
3346 bool CSSParser::parseFontWeight(bool important)
3385 addProperty(CSSPropertyFontWeight, parsedValue.release(), important);
3392 addProperty(CSSPropertyFontWeight, values.release(), important);
3819 bool CSSParser::parseShadow(int propId, bool important)
3877 addProperty(propId, context.values.release(), important);
3886 bool CSSParser::parseReflect(int propId, bool important)
3925 if (!parseBorderImage(propId, important, mask))
3930 addProperty(propId, reflectValue.release(), important);
3999 PassRefPtr<CSSValue> commitBorderImage(CSSParser* p, bool important)
4042 p->parseValue(CSSPropertyBorderWidth, important);
4072 bool CSSParser::parseBorderImage(int propId, bool important, RefPtr<CSSValue>& result)
4116 result = context.commitBorderImage(this, important);
4135 bool CSSParser::parseBorderRadius(int propId, bool important)
4185 addProperty(CSSPropertyBorderTopLeftRadius, CSSPrimitiveValue::create(Pair::create(radii[0][0].release(), radii[1][0].release())), important);
4186 addProperty(CSSPropertyBorderTopRightRadius, CSSPrimitiveValue::create(Pair::create(radii[0][1].release(), radii[1][1].release())), important);
4187 addProperty(CSSPropertyBorderBottomRightRadius, CSSPrimitiveValue::create(Pair::create(radii[0][2].release(), radii[1][2].release())), important);
4188 addProperty(CSSPropertyBorderBottomLeftRadius, CSSPrimitiveValue::create(Pair::create(radii[0][3].release(), radii[1][3].release())), important);
4192 bool CSSParser::parseCounter(int propId, int defaultValue, bool important)
4227 addProperty(propId, list.release(), important);
5254 void CSSParser::addUnresolvedProperty(int propId, bool important)
5257 important);