Searched refs:cssParserMode (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DStylePropertySet.cpp48 PassRefPtr<ImmutableStylePropertySet> ImmutableStylePropertySet::create(const CSSProperty* properties, unsigned count, CSSParserMode cssParserMode) argument
56 return adoptRefWillBeRefCountedGarbageCollected(new (slot) ImmutableStylePropertySet(properties, count, cssParserMode));
64 return ImmutableStylePropertySet::create(mutableThis->m_propertyVector.data(), mutableThis->m_propertyVector.size(), cssParserMode());
67 MutableStylePropertySet::MutableStylePropertySet(CSSParserMode cssParserMode) argument
68 : StylePropertySet(cssParserMode)
80 ImmutableStylePropertySet::ImmutableStylePropertySet(const CSSProperty* properties, unsigned length, CSSParserMode cssParserMode) argument
81 : StylePropertySet(cssParserMode, length)
128 : StylePropertySet(other.cssParserMode())
268 return BisonCSSParser::parseValue(this, propertyID, value, important, cssParserMode(), contextStyleSheet);
344 CSSParserContext context(cssParserMode(), UseCounte
592 create(CSSParserMode cssParserMode) argument
[all...]
H A DStylePropertySet.h107 CSSParserMode cssParserMode() const { return static_cast<CSSParserMode>(m_cssParserMode); } function in class:WebCore::StylePropertySet
135 StylePropertySet(CSSParserMode cssParserMode) argument
136 : m_cssParserMode(cssParserMode)
141 StylePropertySet(CSSParserMode cssParserMode, unsigned immutableArraySize) argument
142 : m_cssParserMode(cssParserMode)
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DBisonCSSParser-in.cpp230 static bool parseColorValue(MutableStylePropertySet* declaration, CSSPropertyID propertyId, const String& string, bool important, CSSParserMode cssParserMode) argument
233 bool quirksMode = isQuirksModeBehavior(cssParserMode);
325 static bool parseSimpleLengthValue(MutableStylePropertySet* declaration, CSSPropertyID propertyId, const String& string, bool important, CSSParserMode cssParserMode) argument
331 if (isCSSViewportParsingEnabledForMode(cssParserMode) || !isSimpleLengthPropertyID(propertyId, acceptsNegativeNumbers))
347 bool quirksMode = isQuirksModeBehavior(cssParserMode);
947 bool BisonCSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, CSSParserMode cssParserMode, StyleSheetContents* contextStyleSheet) argument
950 if (parseSimpleLengthValue(declaration, propertyID, string, important, cssParserMode))
952 if (parseColorValue(declaration, propertyID, string, important, cssParserMode))
955 CSSParserContext context(cssParserMode, 0);
958 context.setMode(cssParserMode);
[all...]
H A DBisonCSSParser.h235 , m_mode(declaration->cssParserMode())
H A DCSSPropertyParser.cpp242 inline bool CSSPropertyParser::shouldAcceptUnitLessValues(CSSParserValue* value, Units unitflags, CSSParserMode cssParserMode) argument
245 return (unitflags & (FLength | FAngle | FTime)) && (!value->fValue || isUnitLessLengthParsingEnabledForMode(cssParserMode));
248 bool CSSPropertyParser::validUnit(CSSParserValue* value, Units unitflags, CSSParserMode cssParserMode, ReleaseParsedCalcValueCondition releaseCalc) argument
257 if (!b && shouldAcceptUnitLessValues(value, unitflags, cssParserMode)) {

Completed in 86 milliseconds