Searched refs:m_parsedProperties (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | CSSParser-in.cpp | 1130 if (!m_parsedProperties.isEmpty()) { in parseValue() 1132 declaration->addParsedProperties(m_parsedProperties); in parseValue() 1153 CSSValue* value = parser.m_parsedProperties.first().value(); in parseColor() 1171 return !m_parsedProperties.isEmpty() && m_parsedProperties.first().id() == CSSPropertyColor; in parseColor() 1248 if (!m_parsedProperties.isEmpty()) { in parseDeclaration() 1250 declaration->addParsedProperties(m_parsedProperties); in parseDeclaration() 1299 size_t unusedEntries = m_parsedProperties.size(); in createStylePropertySet() 1304 … filterProperties(true, m_parsedProperties, results, unusedEntries, seenProperties, seenVariables); in createStylePropertySet() 1305 …filterProperties(false, m_parsedProperties, results, unusedEntries, seenProperties, seenVariables); in createStylePropertySet() 1338 …m_parsedProperties.append(CSSProperty(propId, value, important, false, CSSPropertyInvalid, m_impli… in addProperty() [all …]
|
D | CSSGrammar.y | 426 int oldParsedProperties = parser->m_parsedProperties.size(); 428 parser->rollbackLastProperties(parser->m_parsedProperties.size() - oldParsedProperties); 860 int oldParsedProperties = parser->m_parsedProperties.size(); 864 … parser->rollbackLastProperties(parser->m_parsedProperties.size() - oldParsedProperties); 1602 int oldParsedProperties = parser->m_parsedProperties.size(); 1605 … parser->rollbackLastProperties(parser->m_parsedProperties.size() - oldParsedProperties);
|
D | SVGCSSParser.cpp | 295 CSSValue* value = m_parsedProperties.last().value(); in parseSVGValue()
|
D | CSSParser.h | 120 bool hasProperties() const { return !m_parsedProperties.isEmpty(); } in hasProperties() 391 ParsedPropertyVector m_parsedProperties; variable
|