Home | History | Annotate | Download | only in css

Lines Matching refs:CSSParser

26 #include "CSSParser.h"
132 CSSParser::CSSParser(bool strictParsing)
162 CSSParser::~CSSParser()
202 void CSSParser::setupParser(const char* prefix, const String& string, const char* suffix)
227 void CSSParser::parseSheet(CSSStyleSheet* sheet, const String& string)
243 PassRefPtr<CSSRule> CSSParser::parseRule(CSSStyleSheet* sheet, const String& string)
258 PassRefPtr<CSSRule> CSSParser::parseKeyframeRule(CSSStyleSheet *sheet, const String &string)
272 bool CSSParser::parseValue(CSSMutableStyleDeclaration* declaration, int id, const String& string, bool important)
306 bool CSSParser::parseColor(RGBA32& color, const String& string, bool strict)
309 CSSParser parser(true);
329 bool CSSParser::parseColor(CSSMutableStyleDeclaration* declaration, const String& string)
347 void CSSParser::parseSelector(const String& string, Document* doc, CSSSelectorList& selectorList)
367 bool CSSParser::parseDeclaration(CSSMutableStyleDeclaration* declaration, const String& string)
394 bool CSSParser::parseMediaQuery(MediaList* queries, const String& string)
422 void CSSParser::addProperty(int propId, PassRefPtr<CSSValue> value, bool important)
435 void CSSParser::rollbackLastProperties(int num)
444 void CSSParser::clearProperties()
452 Document* CSSParser::document() const
463 bool CSSParser::validUnit(CSSParserValue* value, Units unitflags, bool strict)
556 void CSSParser::checkForOrphanedUnits()
587 bool CSSParser::parseValue(int propId, bool important)
1781 void CSSParser::addFillValue(RefPtr<CSSValue>& lval, PassRefPtr<CSSValue> rval)
1809 bool CSSParser::parseFillShorthand(int propId, const int* properties, int numProperties, bool important)
1929 void CSSParser::addAnimationValue(RefPtr<CSSValue>& lval, PassRefPtr<CSSValue> rval)
1946 bool CSSParser::parseAnimationShorthand(bool important)
2006 bool CSSParser::parseTransitionShorthand(bool important)
2064 bool CSSParser::parseShorthand(int propId, const int *properties, int numProperties, bool important)
2102 bool CSSParser::parse4Values(int propId, const int *properties, bool important)
2166 bool CSSParser::parseContent(int propId, bool important)
2226 PassRefPtr<CSSValue> CSSParser::parseAttr(CSSParserValueList* args)
2249 PassRefPtr<CSSValue> CSSParser::parseBackgroundColor()
2258 bool CSSParser::parseFillImage(RefPtr<CSSValue>& value)
2282 PassRefPtr<CSSValue> CSSParser::parseFillPositionXY(bool& xFound, bool& yFound)
2313 void CSSParser::parseFillPosition(RefPtr<CSSValue>& value1, RefPtr<CSSValue>& value2)
2356 void CSSParser::parseFillRepeat(RefPtr<CSSValue>& value1, RefPtr<CSSValue>& value2)
2401 PassRefPtr<CSSValue> CSSParser::parseFillSize(int propId, bool& allowComma)
2442 bool CSSParser::parseFillProperty(int propId, int& propId1, int& propId2,
2610 PassRefPtr<CSSValue> CSSParser::parseAnimationDelay()
2618 PassRefPtr<CSSValue> CSSParser::parseAnimationDirection()
2626 PassRefPtr<CSSValue> CSSParser::parseAnimationDuration()
2634 PassRefPtr<CSSValue> CSSParser::parseAnimationIterationCount()
2644 PassRefPtr<CSSValue> CSSParser::parseAnimationName()
2657 PassRefPtr<CSSValue> CSSParser::parseAnimationPlayState()
2665 PassRefPtr<CSSValue> CSSParser::parseAnimationProperty()
2680 void CSSParser::parseTransformOriginShorthand(RefPtr<CSSValue>& value1, RefPtr<CSSValue>& value2, RefPtr<CSSValue>& value3)
2692 bool CSSParser::parseTimingFunctionValue(CSSParserValueList*& args, double& result)
2710 PassRefPtr<CSSValue> CSSParser::parseAnimationTimingFunction()
2740 bool CSSParser::parseAnimationProperty(int propId, RefPtr<CSSValue>& result)
2855 bool CSSParser::parseDashboardRegions(int propId, bool important)
2980 PassRefPtr<CSSValue> CSSParser::parseCounterContent(CSSParserValueList* args, bool counters)
3034 bool CSSParser::parseShape(int propId, bool important)
3084 bool CSSParser::parseFont(bool important)
3193 PassRefPtr<CSSValueList> CSSParser::parseFontFamily()
3252 bool CSSParser::parseFontStyle(bool important)
3299 bool CSSParser::parseFontVariant(bool important)
3346 bool CSSParser::parseFontWeight(bool important)
3405 bool CSSParser::parseFontFaceSrc()
3467 bool CSSParser::parseFontFaceUnicodeRange()
3554 bool CSSParser::parseColor(const String &name, RGBA32& rgb, bool strict)
3570 bool CSSParser::parseColorParameters(CSSParserValue* value, int* colorArray, bool parseAlpha)
3609 bool CSSParser::parseHSLParameters(CSSParserValue* value, double* colorArray, bool parseAlpha)
3639 PassRefPtr<CSSPrimitiveValue> CSSParser::parseColor(CSSParserValue* value)
3647 bool CSSParser::parseColorFromValue(CSSParserValue* value, RGBA32& c, bool svg)
3652 if (!CSSParser::parseColor(str, c, m_strict))
3657 if (!CSSParser::parseColor(value->string, c, m_strict && value->unit == CSSPrimitiveValue::CSS_IDENT))
3819 bool CSSParser::parseShadow(int propId, bool important)
3886 bool CSSParser::parseReflect(int propId, bool important)
3999 PassRefPtr<CSSValue> commitBorderImage(CSSParser* p, bool important)
4072 bool CSSParser::parseBorderImage(int propId, bool important, RefPtr<CSSValue>& result)
4135 bool CSSParser::parseBorderRadius(int propId, bool important)
4192 bool CSSParser::parseCounter(int propId, int defaultValue, bool important)
4251 static bool parseGradientColorStop(CSSParser* p, CSSParserValue* a, CSSGradientColorStop& stop)
4315 bool CSSParser::parseGradient(RefPtr<CSSValue>& gradient)
4436 bool CSSParser::parseCanvas(RefPtr<CSSValue>& canvas)
4460 , m_unit(CSSParser::FUnknown)
4463 m_unit = CSSParser::FNumber;
4475 m_unit = CSSParser::FNumber;
4478 m_unit = CSSParser::FAngle;
4482 m_unit = CSSParser::FAngle;
4492 m_unit = CSSParser::FNumber;
4494 m_unit = CSSParser::FAngle;
4502 m_unit = CSSParser::FLength | CSSParser::FPercent;
4514 m_unit = CSSParser::FLength | CSSParser::FPercent;
4518 m_unit = CSSParser::FNumber;
4522 m_unit = CSSParser::FNumber;
4525 m_unit = CSSParser::FNumber;
4536 CSSParser::Units unit() const { return m_unit; }
4545 CSSParser::Units m_unit;
4548 PassRefPtr<CSSValueList> CSSParser::parseTransform()
4581 CSSParser::Units unit = info.unit();
4607 bool CSSParser::parseTransformOrigin(int propId, int& propId1, int& propId2, int& propId3, RefPtr<CSSValue>& value, RefPtr<CSSValue>& value2, RefPtr<CSSValue>& value3)
4649 bool CSSParser::parsePerspectiveOrigin(int propId, int& propId1, int& propId2, RefPtr<CSSValue>& value, RefPtr<CSSValue>& value2)
4687 int CSSParser::lex(void* yylvalWithoutType)
4770 void CSSParser::recheckAtKeyword(const UChar* str, int len)
4792 UChar* CSSParser::text(int *length)
4921 CSSSelector* CSSParser::createFloatingSelector()
4928 CSSSelector* CSSParser::sinkFloatingSelector(CSSSelector* selector)
4937 CSSParserValueList* CSSParser::createFloatingValueList()
4944 CSSParserValueList* CSSParser::sinkFloatingValueList(CSSParserValueList* list)
4953 CSSParserFunction* CSSParser::createFloatingFunction()
4960 CSSParserFunction* CSSParser::sinkFloatingFunction(CSSParserFunction* function)
4969 CSSParserValue& CSSParser::sinkFloatingValue(CSSParserValue& value)
4978 MediaQueryExp* CSSParser::createFloatingMediaQueryExp(const AtomicString& mediaFeature, CSSParserValueList* values)
4985 MediaQueryExp* CSSParser::sinkFloatingMediaQueryExp(MediaQueryExp* e)
4992 Vector<MediaQueryExp*>* CSSParser::createFloatingMediaQueryExpList()
5002 Vector<MediaQueryExp*>* CSSParser::sinkFloatingMediaQueryExpList(Vector<MediaQueryExp*>* l)
5009 MediaQuery* CSSParser::createFloatingMediaQuery(MediaQuery::Restrictor r, const String& mediaType, Vector<MediaQueryExp*>* exprs)
5016 MediaQuery* CSSParser::createFloatingMediaQuery(Vector<MediaQueryExp*>* exprs)
5021 MediaQuery* CSSParser::sinkFloatingMediaQuery(MediaQuery* mq)
5028 MediaList* CSSParser::createMediaList()
5036 CSSRule* CSSParser::createCharsetRule(const CSSParserString& charset)
5046 CSSRule* CSSParser::createImportRule(const CSSParserString& url, MediaList* media)
5056 CSSRule* CSSParser::createMediaRule(MediaList* media, CSSRuleList* rules)
5067 CSSRuleList* CSSParser::createRuleList()
5076 WebKitCSSKeyframesRule* CSSParser::createKeyframesRule()
5085 CSSRule* CSSParser::createStyleRule(Vector<CSSSelector*>* selectors)
5102 CSSRule* CSSParser::createFontFaceRule()
5122 void CSSParser::addNamespace(const AtomicString& prefix, const AtomicString& uri)
5133 CSSRule* CSSParser::createVariablesRule(MediaList*, bool)
5138 bool CSSParser::addVariable(const CSSParserString&, CSSParserValueList*)
5143 bool CSSParser::addVariableDeclarationBlock(const CSSParserString&)
5150 CSSRule* CSSParser::createVariablesRule(MediaList* mediaList, bool variablesKeyword)
5163 bool CSSParser::addVariable(const CSSParserString& name, CSSParserValueList* valueList)
5174 bool CSSParser::addVariableDeclarationBlock(const CSSParserString&)
5187 void CSSParser::clearVariables()
5193 bool CSSParser::parseVariable(CSSVariablesDeclaration* declaration, const String& variableName, const String& variableValue)
5221 void CSSParser::parsePropertyWithResolvedVariables(int propId, bool isImportant, CSSMutableStyleDeclaration* declaration, CSSParserValueList* list)
5233 bool CSSParser::checkForVariables(CSSParserValueList* valueList)
5254 void CSSParser::addUnresolvedProperty(int propId, bool important)
5260 void CSSParser::deleteFontFaceOnlyValues()
5278 WebKitCSSKeyframeRule* CSSParser::createKeyframeRule(CSSParserValueList* keys)
5301 void CSSParser::invalidBlockHit()
5401 #define YY_DECL int CSSParser::lex()