/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSParserMode.h | 41 enum CSSParserMode { 55 inline bool isQuirksModeBehavior(CSSParserMode mode) 60 inline bool isUASheetBehavior(CSSParserMode mode) 65 inline bool isInternalPropertyAndValueParsingEnabledForMode(CSSParserMode mode) 70 inline bool isUnitLessLengthParsingEnabledForMode(CSSParserMode mode) 75 inline bool isCSSViewportParsingEnabledForMode(CSSParserMode mode) 80 inline bool isSVGNumberParsingEnabledForMode(CSSParserMode mode) 85 inline bool isUseCounterEnabledForMode(CSSParserMode mode) 94 CSSParserContext(CSSParserMode); 100 CSSParserMode mode() const { return m_mode; [all...] |
StylePropertySet.h | 25 #include "core/css/CSSParserMode.h" 103 CSSParserMode cssParserMode() const { return static_cast<CSSParserMode>(m_cssParserMode); } 131 StylePropertySet(CSSParserMode cssParserMode) 132 : m_cssParserMode(cssParserMode) 137 StylePropertySet(CSSParserMode cssParserMode, unsigned immutableArraySize) 138 : m_cssParserMode(cssParserMode) [all...] |
CSSParserMode.cpp | 28 #include "core/css/CSSParserMode.h" 35 CSSParserContext::CSSParserContext(CSSParserMode mode)
|
StylePropertySet.cpp | 50 PassRefPtr<ImmutableStylePropertySet> ImmutableStylePropertySet::create(const CSSProperty* properties, unsigned count, CSSParserMode cssParserMode) 54 return adoptRef(new (slot) ImmutableStylePropertySet(properties, count, cssParserMode)); 62 return ImmutableStylePropertySet::create(mutableThis->m_propertyVector.data(), mutableThis->m_propertyVector.size(), cssParserMode()); 65 MutableStylePropertySet::MutableStylePropertySet(CSSParserMode cssParserMode) 66 : StylePropertySet(cssParserMode) 78 ImmutableStylePropertySet::ImmutableStylePropertySet(const CSSProperty* properties, unsigned length, CSSParserMode cssParserMode) 79 : StylePropertySet(cssParserMode, length [all...] |
CSSParser.h | 31 #include "core/css/CSSParserMode.h" 107 static bool parseValue(MutableStylePropertySet*, CSSPropertyID, const String&, bool important, CSSParserMode, StyleSheetContents*); 472 , m_mode(declaration->cssParserMode()) 488 CSSParserMode m_mode; 608 bool shouldAcceptUnitLessValues(CSSParserValue*, Units, CSSParserMode); 611 bool validUnit(CSSParserValue*, Units, CSSParserMode, ReleaseParsedCalcValueCondition releaseCalc = DoNotReleaseParsedCalcValue);
|
CSSParser-in.cpp | 320 static bool parseColorValue(MutableStylePropertySet* declaration, CSSPropertyID propertyId, const String& string, bool important, CSSParserMode cssParserMode) 323 bool quirksMode = isQuirksModeBehavior(cssParserMode); 416 static bool parseSimpleLengthValue(MutableStylePropertySet* declaration, CSSPropertyID propertyId, const String& string, bool important, CSSParserMode cssParserMode) 422 if (isCSSViewportParsingEnabledForMode(cssParserMode) || !isSimpleLengthPropertyID(propertyId, acceptsNegativeNumbers)) 438 bool quirksMode = isQuirksModeBehavior(cssParserMode); [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/html/canvas/ |
CanvasRenderingContext2D.cpp | [all...] |
/external/chromium_org/third_party/WebKit/Source/core/ |
webcore_remaining.target.darwin-arm.mk | 132 third_party/WebKit/Source/core/css/CSSParserMode.cpp \ [all...] |
webcore_remaining.target.darwin-mips.mk | 132 third_party/WebKit/Source/core/css/CSSParserMode.cpp \ [all...] |
webcore_remaining.target.darwin-x86.mk | 132 third_party/WebKit/Source/core/css/CSSParserMode.cpp \ [all...] |
webcore_remaining.target.linux-arm.mk | 132 third_party/WebKit/Source/core/css/CSSParserMode.cpp \ [all...] |
webcore_remaining.target.linux-mips.mk | 132 third_party/WebKit/Source/core/css/CSSParserMode.cpp \ [all...] |
webcore_remaining.target.linux-x86.mk | 132 third_party/WebKit/Source/core/css/CSSParserMode.cpp \ [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
Element.cpp | [all...] |