Searched refs:CSSParserMode (Results 1 - 25 of 25) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSParserMode.h42 enum CSSParserMode { enum in namespace:blink
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 isUseCounterEnabledForMode(CSSParserMode mode)
92 CSSParserContext(CSSParserMode, UseCounter*);
103 CSSParserMode mode() const { return m_mode; }
116 void setMode(CSSParserMode mod
[all...]
H A DCSSParser.h25 static bool parseValue(MutableStylePropertySet*, CSSPropertyID, const String&, bool important, CSSParserMode, StyleSheetContents*);
H A DCSSParserMode.cpp28 #include "core/css/parser/CSSParserMode.h"
35 CSSParserContext::CSSParserContext(CSSParserMode mode, UseCounter* useCounter)
H A DCSSParser.cpp39 bool CSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, CSSParserMode parserMode, StyleSheetContents* styleSheet)
H A DBisonCSSParser.h36 #include "core/css/parser/CSSParserMode.h"
88 static bool parseValue(MutableStylePropertySet*, CSSPropertyID, const String&, bool important, CSSParserMode, StyleSheetContents*);
240 CSSParserMode m_mode;
H A DCSSPropertyParser.h36 #include "core/css/parser/CSSParserMode.h"
346 bool shouldAcceptUnitLessValues(CSSParserValue*, Units, CSSParserMode);
349 bool validUnit(CSSParserValue*, Units, CSSParserMode, ReleaseParsedCalcValueCondition releaseCalc = DoNotReleaseParsedCalcValue);
H A DBisonCSSParser-in.cpp228 static bool parseColorValue(MutableStylePropertySet* declaration, CSSPropertyID propertyId, const String& string, bool important, CSSParserMode cssParserMode)
323 static bool parseSimpleLengthValue(MutableStylePropertySet* declaration, CSSPropertyID propertyId, const String& string, bool important, CSSParserMode cssParserMode)
895 bool BisonCSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, CSSParserMode cssParserMode, StyleSheetContents* contextStyleSheet)
1110 CSSParserMode mode = inViewport() ? CSSViewportRuleMode : m_context.mode();
H A DCSSPropertyParser.cpp249 inline bool CSSPropertyParser::shouldAcceptUnitLessValues(CSSParserValue* value, Units unitflags, CSSParserMode cssParserMode)
255 bool CSSPropertyParser::validUnit(CSSParserValue* value, Units unitflags, CSSParserMode cssParserMode, ReleaseParsedCalcValueCondition releaseCalc)
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DStylePropertySet.h28 #include "core/css/parser/CSSParserMode.h"
104 CSSParserMode cssParserMode() const { return static_cast<CSSParserMode>(m_cssParserMode); }
132 StylePropertySet(CSSParserMode cssParserMode)
138 StylePropertySet(CSSParserMode cssParserMode, unsigned immutableArraySize)
154 static PassRefPtrWillBeRawPtr<ImmutableStylePropertySet> create(const CSSProperty* properties, unsigned count, CSSParserMode);
172 ImmutableStylePropertySet(const CSSProperty*, unsigned count, CSSParserMode);
190 static PassRefPtrWillBeRawPtr<MutableStylePropertySet> create(CSSParserMode = HTMLQuirksMode);
226 explicit MutableStylePropertySet(CSSParserMode);
H A DStylePropertySet.cpp48 PassRefPtrWillBeRawPtr<ImmutableStylePropertySet> ImmutableStylePropertySet::create(const CSSProperty* properties, unsigned count, CSSParserMode cssParserMode)
67 MutableStylePropertySet::MutableStylePropertySet(CSSParserMode cssParserMode)
80 ImmutableStylePropertySet::ImmutableStylePropertySet(const CSSProperty* properties, unsigned length, CSSParserMode cssParserMode)
586 PassRefPtrWillBeRawPtr<MutableStylePropertySet> MutableStylePropertySet::create(CSSParserMode cssParserMode)
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DDeferredLegacyStyleInterpolationTest.cpp22 CSSParserMode parserMode = HTMLStandardMode;
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasRenderingContext2D.cpp1932 CSSParserMode mode = m_usesCSSCompatibilityParseMode ? HTMLQuirksMode : HTMLStandardMode;
/external/chromium_org/third_party/WebKit/Source/core/
H A Dwebcore_remaining.target.darwin-arm.mk222 third_party/WebKit/Source/core/css/parser/CSSParserMode.cpp \
H A Dwebcore_remaining.target.darwin-arm64.mk222 third_party/WebKit/Source/core/css/parser/CSSParserMode.cpp \
H A Dwebcore_remaining.target.darwin-mips.mk222 third_party/WebKit/Source/core/css/parser/CSSParserMode.cpp \
H A Dwebcore_remaining.target.darwin-mips64.mk222 third_party/WebKit/Source/core/css/parser/CSSParserMode.cpp \
H A Dwebcore_remaining.target.darwin-x86.mk222 third_party/WebKit/Source/core/css/parser/CSSParserMode.cpp \
H A Dwebcore_remaining.target.darwin-x86_64.mk222 third_party/WebKit/Source/core/css/parser/CSSParserMode.cpp \
H A Dwebcore_remaining.target.linux-arm.mk222 third_party/WebKit/Source/core/css/parser/CSSParserMode.cpp \
H A Dwebcore_remaining.target.linux-arm64.mk222 third_party/WebKit/Source/core/css/parser/CSSParserMode.cpp \
H A Dwebcore_remaining.target.linux-mips.mk222 third_party/WebKit/Source/core/css/parser/CSSParserMode.cpp \
H A Dwebcore_remaining.target.linux-mips64.mk222 third_party/WebKit/Source/core/css/parser/CSSParserMode.cpp \
H A Dwebcore_remaining.target.linux-x86.mk222 third_party/WebKit/Source/core/css/parser/CSSParserMode.cpp \
H A Dwebcore_remaining.target.linux-x86_64.mk222 third_party/WebKit/Source/core/css/parser/CSSParserMode.cpp \
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DElement.cpp3051 CSSParserMode mode = (!isHTMLElement() || document().inQuirksMode()) ? HTMLQuirksMode : HTMLStandardMode;

Completed in 2004 milliseconds