HomeSort by relevance Sort by last modified time
    Searched refs:cssParserMode (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
StylePropertySet.cpp 50 PassRefPtr<ImmutableStylePropertySet> ImmutableStylePropertySet::create(const CSSProperty* properties, unsigned count, CSSParserMode cssParserMode)
54 return adoptRef(new (slot) ImmutableStylePropertySet(properties, count, cssParserMode));
62 return ImmutableStylePropertySet::create(mutableThis->m_propertyVector.data(), mutableThis->m_propertyVector.size(), cssParserMode());
65 MutableStylePropertySet::MutableStylePropertySet(CSSParserMode cssParserMode)
66 : StylePropertySet(cssParserMode)
78 ImmutableStylePropertySet::ImmutableStylePropertySet(const CSSProperty* properties, unsigned length, CSSParserMode cssParserMode)
79 : StylePropertySet(cssParserMode, length
    [all...]
StylePropertySet.h 25 #include "core/css/CSSParserMode.h"
103 CSSParserMode cssParserMode() const { return static_cast<CSSParserMode>(m_cssParserMode); }
131 StylePropertySet(CSSParserMode cssParserMode)
132 : m_cssParserMode(cssParserMode)
137 StylePropertySet(CSSParserMode cssParserMode, unsigned immutableArraySize)
138 : m_cssParserMode(cssParserMode)
    [all...]
CSSParser-in.cpp 320 static bool parseColorValue(MutableStylePropertySet* declaration, CSSPropertyID propertyId, const String& string, bool important, CSSParserMode cssParserMode)
323 bool quirksMode = isQuirksModeBehavior(cssParserMode);
416 static bool parseSimpleLengthValue(MutableStylePropertySet* declaration, CSSPropertyID propertyId, const String& string, bool important, CSSParserMode cssParserMode)
422 if (isCSSViewportParsingEnabledForMode(cssParserMode) || !isSimpleLengthPropertyID(propertyId, acceptsNegativeNumbers))
438 bool quirksMode = isQuirksModeBehavior(cssParserMode);
    [all...]
CSSParser.h 31 #include "core/css/CSSParserMode.h"
107 static bool parseValue(MutableStylePropertySet*, CSSPropertyID, const String&, bool important, CSSParserMode, StyleSheetContents*);
472 , m_mode(declaration->cssParserMode())
488 CSSParserMode m_mode;
608 bool shouldAcceptUnitLessValues(CSSParserValue*, Units, CSSParserMode);
611 bool validUnit(CSSParserValue*, Units, CSSParserMode, ReleaseParsedCalcValueCondition releaseCalc = DoNotReleaseParsedCalcValue);

Completed in 474 milliseconds