• Home
  • Raw
  • Download

Lines Matching refs:propId

422 void CSSParser::addProperty(int propId, PassRefPtr<CSSValue> value, bool important)  in addProperty()  argument
424 …auto_ptr<CSSProperty> prop(new CSSProperty(propId, value, important, m_currentShorthand, m_implici… in addProperty()
587 bool CSSParser::parseValue(int propId, bool important) in parseValue() argument
608 addProperty(propId, CSSInheritedValue::create(), important); in parseValue()
614 addProperty(propId, CSSInitialValue::createExplicit(), important); in parseValue()
622 addUnresolvedProperty(propId, important); in parseValue()
629 switch (static_cast<CSSPropertyID>(propId)) { in parseValue()
685 return parseContent(propId, important); in parseValue()
700 return parseShape(propId, important); in parseValue()
723 ShorthandScope scope(this, propId); in parseValue()
833 …if (propId == CSSPropertyOutlineColor && (id == CSSValueInvert || id == CSSValueWebkitFocusRingCol… in parseValue()
951 if (parseFillProperty(propId, propId1, propId2, val1, val2)) { in parseValue()
953 if (propId == CSSPropertyBackgroundPosition || in parseValue()
954 propId == CSSPropertyBackgroundRepeat || in parseValue()
955 propId == CSSPropertyWebkitMaskPosition || in parseValue()
956 propId == CSSPropertyWebkitMaskRepeat) { in parseValue()
957 shorthandScope.set(new ShorthandScope(this, propId)); in parseValue()
1109 return parseCounter(propId, 1, important); in parseValue()
1114 return parseCounter(propId, 0, important); in parseValue()
1205 addProperty(propId, values.release(), important); in parseValue()
1217 if (parseBorderImage(propId, important, result)) { in parseValue()
1218 addProperty(propId, result, important); in parseValue()
1245 addProperty(propId, val.release(), important); in parseValue()
1250 return parseBorderRadius(propId, important); in parseValue()
1259 return parseShadow(propId, important); in parseValue()
1265 return parseReflect(propId, important); in parseValue()
1310 return parseShorthand(propId, properties, 5, important); in parseValue()
1384 addProperty(propId, val, important); in parseValue()
1398 if (parseTransformOrigin(propId, propId1, propId2, propId3, val1, val2, val3)) { in parseValue()
1424 addProperty(propId, val.release(), important); in parseValue()
1437 if (parsePerspectiveOrigin(propId, propId1, propId2, val1, val2)) { in parseValue()
1457 if (parseAnimationProperty(propId, val)) { in parseValue()
1458 addProperty(propId, val.release(), important); in parseValue()
1607 return parseDashboardRegions(propId, important); in parseValue()
1620 return parseFillShorthand(propId, properties, 6, important); in parseValue()
1626 return parseFillShorthand(propId, properties, 5, important); in parseValue()
1633 return parseShorthand(propId, properties, 3, important); in parseValue()
1640 return parseShorthand(propId, properties, 3, important); in parseValue()
1647 return parseShorthand(propId, properties, 3, important); in parseValue()
1654 return parseShorthand(propId, properties, 3, important); in parseValue()
1661 return parseShorthand(propId, properties, 3, important); in parseValue()
1668 return parseShorthand(propId, properties, 3, important); in parseValue()
1675 return parse4Values(propId, properties, important); in parseValue()
1682 return parse4Values(propId, properties, important); in parseValue()
1689 return parse4Values(propId, properties, important); in parseValue()
1696 return parse4Values(propId, properties, important); in parseValue()
1703 return parse4Values(propId, properties, important); in parseValue()
1717 return parseShorthand(propId, properties, 3, important); in parseValue()
1721 return parseShorthand(propId, properties, 2, important); in parseValue()
1726 return parseShorthand(propId, properties, 3, important); in parseValue()
1730 return parseShorthand(propId, properties, 2, important); in parseValue()
1755 return parseSVGValue(propId, important); in parseValue()
1774 addProperty(propId, parsedValue.release(), important); in parseValue()
1809 bool CSSParser::parseFillShorthand(int propId, const int* properties, int numProperties, bool impor… in parseFillShorthand() argument
1815 ShorthandScope scope(this, propId); in parseFillShorthand()
2064 bool CSSParser::parseShorthand(int propId, const int *properties, int numProperties, bool important) in parseShorthand() argument
2069 ShorthandScope scope(this, propId); in parseShorthand()
2102 bool CSSParser::parse4Values(int propId, const int *properties, bool important) in parse4Values() argument
2114 ShorthandScope scope(this, propId); in parse4Values()
2166 bool CSSParser::parseContent(int propId, bool important) in parseContent() argument
2218 addProperty(propId, values.release(), important); in parseContent()
2401 PassRefPtr<CSSValue> CSSParser::parseFillSize(int propId, bool& allowComma) in parseFillSize() argument
2419 CSSPropertyID property = static_cast<CSSPropertyID>(propId); in parseFillSize()
2442 bool CSSParser::parseFillProperty(int propId, int& propId1, int& propId2, in parseFillProperty() argument
2454 propId1 = propId; in parseFillProperty()
2455 propId2 = propId; in parseFillProperty()
2456 if (propId == CSSPropertyBackgroundPosition) { in parseFillProperty()
2459 } else if (propId == CSSPropertyWebkitMaskPosition) { in parseFillProperty()
2462 } else if (propId == CSSPropertyBackgroundRepeat) { in parseFillProperty()
2465 } else if (propId == CSSPropertyWebkitMaskRepeat) { in parseFillProperty()
2481 switch (propId) { in parseFillProperty()
2507 … ((propId == CSSPropertyWebkitBackgroundClip || propId == CSSPropertyWebkitMaskClip) && in parseFillProperty()
2559 currValue = parseFillSize(propId, allowComma); in parseFillProperty()
2740 bool CSSParser::parseAnimationProperty(int propId, RefPtr<CSSValue>& result) in parseAnimationProperty() argument
2758 switch (propId) { in parseAnimationProperty()
2855 bool CSSParser::parseDashboardRegions(int propId, bool important) in parseDashboardRegions() argument
2864 addProperty(propId, CSSPrimitiveValue::createIdentifier(value->id), important); in parseDashboardRegions()
2973 addProperty(propId, CSSPrimitiveValue::create(firstRegion.release()), important); in parseDashboardRegions()
3034 bool CSSParser::parseShape(int propId, bool important) in parseShape() argument
3076 addProperty(propId, CSSPrimitiveValue::create(rect.release()), important); in parseShape()
3819 bool CSSParser::parseShadow(int propId, bool important) in parseShadow() argument
3821 ShadowParseContext context(static_cast<CSSPropertyID>(propId)); in parseShadow()
3832 if (static_cast<CSSPropertyID>(propId) == CSSPropertyWebkitSvgShadow) in parseShadow()
3877 addProperty(propId, context.values.release(), important); in parseShadow()
3886 bool CSSParser::parseReflect(int propId, bool important) in parseReflect() argument
3925 if (!parseBorderImage(propId, important, mask)) in parseReflect()
3930 addProperty(propId, reflectValue.release(), important); in parseReflect()
4072 bool CSSParser::parseBorderImage(int propId, bool important, RefPtr<CSSValue>& result) in parseBorderImage() argument
4094 …} else if (propId == CSSPropertyWebkitBorderImage && context.allowSlash() && val->unit == CSSParse… in parseBorderImage()
4108 if (context.allowNumber() && propId != CSSPropertyWebkitBorderImage) { in parseBorderImage()
4135 bool CSSParser::parseBorderRadius(int propId, bool important) in parseBorderRadius() argument
4170 if (num == 2 && propId == CSSPropertyWebkitBorderRadius) { in parseBorderRadius()
4192 bool CSSParser::parseCounter(int propId, int defaultValue, bool important) in parseCounter() argument
4227 addProperty(propId, list.release(), important); in parseCounter()
4607 bool CSSParser::parseTransformOrigin(int propId, int& propId1, int& propId2, int& propId3, RefPtr<C… in parseTransformOrigin() argument
4609 propId1 = propId; in parseTransformOrigin()
4610 propId2 = propId; in parseTransformOrigin()
4611 propId3 = propId; in parseTransformOrigin()
4612 if (propId == CSSPropertyWebkitTransformOrigin) { in parseTransformOrigin()
4618 switch (propId) { in parseTransformOrigin()
4649 bool CSSParser::parsePerspectiveOrigin(int propId, int& propId1, int& propId2, RefPtr<CSSValue>& va… in parsePerspectiveOrigin() argument
4651 propId1 = propId; in parsePerspectiveOrigin()
4652 propId2 = propId; in parsePerspectiveOrigin()
4653 if (propId == CSSPropertyWebkitPerspectiveOrigin) { in parsePerspectiveOrigin()
4658 switch (propId) { in parsePerspectiveOrigin()
5221 void CSSParser::parsePropertyWithResolvedVariables(int propId, bool isImportant, CSSMutableStyleDec… in parsePropertyWithResolvedVariables() argument
5226 if (parseValue(propId, isImportant)) in parsePropertyWithResolvedVariables()
5254 void CSSParser::addUnresolvedProperty(int propId, bool important) in addUnresolvedProperty() argument
5257 addProperty(propId, val.release(), important); in addUnresolvedProperty()