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

  /external/chromium_org/third_party/WebKit/Source/core/css/
StylePropertySet.cpp 48 PassRefPtrWillBeRawPtr<ImmutableStylePropertySet> ImmutableStylePropertySet::create(const CSSProperty* properties, unsigned count, CSSParserMode cssParserMode)
56 return adoptRefWillBeNoop(new (slot) ImmutableStylePropertySet(properties, count, cssParserMode));
64 return ImmutableStylePropertySet::create(mutableThis->m_propertyVector.data(), mutableThis->m_propertyVector.size(), cssParserMode());
67 MutableStylePropertySet::MutableStylePropertySet(CSSParserMode cssParserMode)
68 : StylePropertySet(cssParserMode)
80 ImmutableStylePropertySet::ImmutableStylePropertySet(const CSSProperty* properties, unsigned length, CSSParserMode cssParserMode)
81 : StylePropertySet(cssParserMode, length
    [all...]
StylePropertySet.h 28 #include "core/css/parser/CSSParserMode.h"
104 CSSParserMode cssParserMode() const { return static_cast<CSSParserMode>(m_cssParserMode); }
132 StylePropertySet(CSSParserMode cssParserMode)
133 : m_cssParserMode(cssParserMode)
138 StylePropertySet(CSSParserMode cssParserMode, unsigned immutableArraySize)
139 : m_cssParserMode(cssParserMode)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
BisonCSSParser-in.cpp 228 static bool parseColorValue(MutableStylePropertySet* declaration, CSSPropertyID propertyId, const String& string, bool important, CSSParserMode cssParserMode)
231 bool quirksMode = isQuirksModeBehavior(cssParserMode);
323 static bool parseSimpleLengthValue(MutableStylePropertySet* declaration, CSSPropertyID propertyId, const String& string, bool important, CSSParserMode cssParserMode)
329 if (isCSSViewportParsingEnabledForMode(cssParserMode) || !isSimpleLengthPropertyID(propertyId, acceptsNegativeNumbers))
345 bool quirksMode = isQuirksModeBehavior(cssParserMode);
    [all...]
BisonCSSParser.h 36 #include "core/css/parser/CSSParserMode.h"
88 static bool parseValue(MutableStylePropertySet*, CSSPropertyID, const String&, bool important, CSSParserMode, StyleSheetContents*);
224 , m_mode(declaration->cssParserMode())
240 CSSParserMode m_mode;
CSSPropertyParser.cpp 249 inline bool CSSPropertyParser::shouldAcceptUnitLessValues(CSSParserValue* value, Units unitflags, CSSParserMode cssParserMode)
252 return (unitflags & (FLength | FAngle | FTime)) && (!value->fValue || isUnitLessLengthParsingEnabledForMode(cssParserMode));
255 bool CSSPropertyParser::validUnit(CSSParserValue* value, Units unitflags, CSSParserMode cssParserMode, ReleaseParsedCalcValueCondition releaseCalc)
264 if (!b && shouldAcceptUnitLessValues(value, unitflags, cssParserMode)) {
    [all...]

Completed in 233 milliseconds