Searched refs:cssParserMode (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | StylePropertySet.cpp | 50 …tylePropertySet::create(const CSSProperty* properties, unsigned count, CSSParserMode cssParserMode) in create() argument 54 return adoptRef(new (slot) ImmutableStylePropertySet(properties, count, cssParserMode)); in create() 62 …reate(mutableThis->m_propertyVector.data(), mutableThis->m_propertyVector.size(), cssParserMode()); in immutableCopyIfNeeded() 65 MutableStylePropertySet::MutableStylePropertySet(CSSParserMode cssParserMode) in MutableStylePropertySet() argument 66 : StylePropertySet(cssParserMode) in MutableStylePropertySet() 78 …utableStylePropertySet(const CSSProperty* properties, unsigned length, CSSParserMode cssParserMode) in ImmutableStylePropertySet() argument 79 : StylePropertySet(cssParserMode, length) in ImmutableStylePropertySet() 98 : StylePropertySet(other.cssParserMode()) in MutableStylePropertySet() 240 …return CSSParser::parseValue(this, propertyID, value, important, cssParserMode(), contextStyleShee… in setProperty() 338 CSSParserContext context(cssParserMode()); in parseDeclaration() [all …]
|
D | StylePropertySet.h | 103 CSSParserMode cssParserMode() const { return static_cast<CSSParserMode>(m_cssParserMode); } in cssParserMode() function 131 StylePropertySet(CSSParserMode cssParserMode) in StylePropertySet() argument 132 : m_cssParserMode(cssParserMode) in StylePropertySet() 137 StylePropertySet(CSSParserMode cssParserMode, unsigned immutableArraySize) in StylePropertySet() argument 138 : m_cssParserMode(cssParserMode) in StylePropertySet()
|
D | CSSParser-in.cpp | 320 …ation, CSSPropertyID propertyId, const String& string, bool important, CSSParserMode cssParserMode) in parseColorValue() argument 323 bool quirksMode = isQuirksModeBehavior(cssParserMode); in parseColorValue() 416 …ation, CSSPropertyID propertyId, const String& string, bool important, CSSParserMode cssParserMode) in parseSimpleLengthValue() argument 422 …if (isCSSViewportParsingEnabledForMode(cssParserMode) || !isSimpleLengthPropertyID(propertyId, acc… in parseSimpleLengthValue() 438 bool quirksMode = isQuirksModeBehavior(cssParserMode); in parseSimpleLengthValue() 1082 …rtyID propertyID, const String& string, bool important, CSSParserMode cssParserMode, StyleSheetCon… in parseValue() argument 1085 if (parseSimpleLengthValue(declaration, propertyID, string, important, cssParserMode)) in parseValue() 1087 if (parseColorValue(declaration, propertyID, string, important, cssParserMode)) in parseValue() 1090 CSSParserContext context(cssParserMode); in parseValue() 1093 context.setMode(cssParserMode); in parseValue() [all …]
|
D | CSSParser.h | 472 , m_mode(declaration->cssParserMode()) in StyleDeclarationScope()
|