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

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSParserMode.h 42 enum CSSParserMode {
56 inline bool isQuirksModeBehavior(CSSParserMode mode)
61 inline bool isUASheetBehavior(CSSParserMode mode)
66 inline bool isInternalPropertyAndValueParsingEnabledForMode(CSSParserMode mode)
71 inline bool isUnitLessLengthParsingEnabledForMode(CSSParserMode mode)
76 inline bool isCSSViewportParsingEnabledForMode(CSSParserMode mode)
81 inline bool isSVGNumberParsingEnabledForMode(CSSParserMode mode)
86 inline bool isUseCounterEnabledForMode(CSSParserMode mode)
97 CSSParserContext(CSSParserMode, UseCounter*);
108 CSSParserMode mode() const { return m_mode;
    [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...]
CSSParserMode.cpp 28 #include "core/css/CSSParserMode.h"
35 CSSParserContext::CSSParserContext(CSSParserMode mode, UseCounter* useCounter)
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...]
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
make_css_value_keywords.py 19 #include "core/css/CSSParserMode.h"
32 bool isValueAllowedInMode(unsigned short id, CSSParserMode mode);
87 bool isValueAllowedInMode(unsigned short id, CSSParserMode mode)
make_css_property_names.py 19 #include "core/css/CSSParserMode.h"
  /external/chromium_org/third_party/WebKit/Source/core/animation/interpolation/
DeferredLegacyStyleInterpolationTest.cpp 22 CSSParserMode parserMode = HTMLStandardMode;
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
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.h 33 #include "core/css/CSSParserMode.h"
362 bool shouldAcceptUnitLessValues(CSSParserValue*, Units, CSSParserMode);
365 bool validUnit(CSSParserValue*, Units, CSSParserMode, ReleaseParsedCalcValueCondition releaseCalc = DoNotReleaseParsedCalcValue);
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...]
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...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_remaining.target.darwin-arm.mk 156 third_party/WebKit/Source/core/css/CSSParserMode.cpp \
    [all...]
webcore_remaining.target.darwin-arm64.mk 156 third_party/WebKit/Source/core/css/CSSParserMode.cpp \
    [all...]
webcore_remaining.target.darwin-mips.mk 156 third_party/WebKit/Source/core/css/CSSParserMode.cpp \
    [all...]
webcore_remaining.target.darwin-x86.mk 156 third_party/WebKit/Source/core/css/CSSParserMode.cpp \
    [all...]
webcore_remaining.target.darwin-x86_64.mk 156 third_party/WebKit/Source/core/css/CSSParserMode.cpp \
    [all...]
webcore_remaining.target.linux-arm.mk 156 third_party/WebKit/Source/core/css/CSSParserMode.cpp \
    [all...]
webcore_remaining.target.linux-arm64.mk 156 third_party/WebKit/Source/core/css/CSSParserMode.cpp \
    [all...]
webcore_remaining.target.linux-mips.mk 156 third_party/WebKit/Source/core/css/CSSParserMode.cpp \
    [all...]
webcore_remaining.target.linux-x86.mk 156 third_party/WebKit/Source/core/css/CSSParserMode.cpp \
    [all...]
webcore_remaining.target.linux-x86_64.mk 156 third_party/WebKit/Source/core/css/CSSParserMode.cpp \
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.cpp     [all...]

Completed in 470 milliseconds