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 PassRefPtr<ImmutableStylePropertySet> ImmutableStylePropertySet::create(const CSSProperty* properties, unsigned count, CSSParserMode cssParserMode)
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)
68 : StylePropertySet(cssParserMode)
80 ImmutableStylePropertySet::ImmutableStylePropertySet(const CSSProperty* properties, unsigned length, CSSParserMode cssParserMode)
81 : StylePropertySet(cssParserMode, length
    [all...]
StylePropertySet.h 25 #include "core/css/CSSParserMode.h"
107 CSSParserMode cssParserMode() const { return static_cast<CSSParserMode>(m_cssParserMode); }
135 StylePropertySet(CSSParserMode cssParserMode)
136 : m_cssParserMode(cssParserMode)
141 StylePropertySet(CSSParserMode cssParserMode, unsigned immutableArraySize)
142 : m_cssParserMode(cssParserMode)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
BisonCSSParser-in.cpp 230 static bool parseColorValue(MutableStylePropertySet* declaration, CSSPropertyID propertyId, const String& string, bool important, CSSParserMode cssParserMode)
233 bool quirksMode = isQuirksModeBehavior(cssParserMode);
325 static bool parseSimpleLengthValue(MutableStylePropertySet* declaration, CSSPropertyID propertyId, const String& string, bool important, CSSParserMode cssParserMode)
331 if (isCSSViewportParsingEnabledForMode(cssParserMode) || !isSimpleLengthPropertyID(propertyId, acceptsNegativeNumbers))
347 bool quirksMode = isQuirksModeBehavior(cssParserMode);
    [all...]
BisonCSSParser.h 31 #include "core/css/CSSParserMode.h"
94 static bool parseValue(MutableStylePropertySet*, CSSPropertyID, const String&, bool important, CSSParserMode, StyleSheetContents*);
235 , m_mode(declaration->cssParserMode())
251 CSSParserMode m_mode;
CSSPropertyParser.cpp 242 inline bool CSSPropertyParser::shouldAcceptUnitLessValues(CSSParserValue* value, Units unitflags, CSSParserMode cssParserMode)
245 return (unitflags & (FLength | FAngle | FTime)) && (!value->fValue || isUnitLessLengthParsingEnabledForMode(cssParserMode));
248 bool CSSPropertyParser::validUnit(CSSParserValue* value, Units unitflags, CSSParserMode cssParserMode, ReleaseParsedCalcValueCondition releaseCalc)
257 if (!b && shouldAcceptUnitLessValues(value, unitflags, cssParserMode)) {
    [all...]

Completed in 98 milliseconds