HomeSort by relevance Sort by last modified time
    Searched refs:StylePropertySet (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/dom/
PresentationAttributeStyle.h 39 class StylePropertySet;
41 PassRefPtr<StylePropertySet> computePresentationAttributeStyle(Element&);
ElementData.h 42 class StylePropertySet;
59 const StylePropertySet* inlineStyle() const { return m_inlineStyle.get(); }
61 const StylePropertySet* presentationAttributeStyle() const;
90 mutable RefPtr<StylePropertySet> m_inlineStyle;
145 mutable RefPtr<StylePropertySet> m_presentationAttributeStyle;
163 inline const StylePropertySet* ElementData::presentationAttributeStyle() const
PresentationAttributeStyle.cpp 35 #include "core/css/StylePropertySet.h"
63 RefPtr<StylePropertySet> value;
155 PassRefPtr<StylePropertySet> computePresentationAttributeStyle(Element& element)
175 RefPtr<StylePropertySet> style;
  /external/chromium_org/third_party/WebKit/Source/core/css/
StylePropertySerializer.h 27 #include "core/css/StylePropertySet.h"
31 class StylePropertySet;
35 StylePropertySerializer(const StylePropertySet&);
49 const StylePropertySet& m_propertySet;
StylePropertySet.h 45 class StylePropertySet : public RefCounted<StylePropertySet> {
54 PropertyReference(const StylePropertySet& propertySet, unsigned index)
82 const StylePropertySet& m_propertySet;
131 StylePropertySet(CSSParserMode cssParserMode)
137 StylePropertySet(CSSParserMode cssParserMode, unsigned immutableArraySize)
150 class ImmutableStylePropertySet : public StylePropertySet {
176 DEFINE_TYPE_CASTS(ImmutableStylePropertySet, StylePropertySet, set, !set->isMutable(), !set.isMutable());
178 inline ImmutableStylePropertySet* toImmutableStylePropertySet(const RefPtr<StylePropertySet>& set)
183 class MutableStylePropertySet : public StylePropertySet {
    [all...]
CSSKeyframeRule.h 37 class StylePropertySet;
58 const StylePropertySet* properties() const { return m_properties.get(); }
60 void setProperties(PassRefPtr<StylePropertySet>);
69 RefPtr<StylePropertySet> m_properties;
StyleRule.h 35 class StylePropertySet;
104 const StylePropertySet* properties() const { return m_properties.get(); }
109 void setProperties(PassRefPtr<StylePropertySet>);
119 RefPtr<StylePropertySet> m_properties;
129 const StylePropertySet* properties() const { return m_properties.get(); }
132 void setProperties(PassRefPtr<StylePropertySet>);
140 RefPtr<StylePropertySet> m_properties;
150 const StylePropertySet* properties() const { return m_properties.get(); }
155 void setProperties(PassRefPtr<StylePropertySet>);
163 RefPtr<StylePropertySet> m_properties
    [all...]
StylePropertySet.cpp 24 #include "core/css/StylePropertySet.h"
57 PassRefPtr<ImmutableStylePropertySet> StylePropertySet::immutableCopyIfNeeded() const
60 return toImmutableStylePropertySet(const_cast<StylePropertySet*>(this));
66 : StylePropertySet(cssParserMode)
71 : StylePropertySet(HTMLStandardMode)
79 : StylePropertySet(cssParserMode, length)
97 MutableStylePropertySet::MutableStylePropertySet(const StylePropertySet& other)
98 : StylePropertySet(other.cssParserMode())
109 String StylePropertySet::getPropertyValue(CSSPropertyID propertyID) const
118 PassRefPtr<CSSValue> StylePropertySet::getPropertyCSSValue(CSSPropertyID propertyID) cons
    [all...]
FontFace.h 49 class StylePropertySet;
93 bool setPropertyFromStyle(const StylePropertySet*, CSSPropertyID);
StyleRule.cpp 36 #include "core/css/StylePropertySet.h"
182 return sizeof(StyleRule) + sizeof(CSSSelector) + StylePropertySet::averageSizeInBytes();
208 void StyleRule::setProperties(PassRefPtr<StylePropertySet> properties)
236 void StyleRulePage::setProperties(PassRefPtr<StylePropertySet> properties)
263 void StyleRuleFontFace::setProperties(PassRefPtr<StylePropertySet> properties)
355 void StyleRuleViewport::setProperties(PassRefPtr<StylePropertySet> properties)
384 void StyleRuleFilter::setProperties(PassRefPtr<StylePropertySet> properties)
PageRuleCollector.cpp 32 #include "core/css/StylePropertySet.h"
116 const StylePropertySet* properties = rule->properties();
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
MatchResult.cpp 32 #include "core/css/StylePropertySet.h"
46 void MatchResult::addMatchedProperties(const StylePropertySet* properties, StyleRule* rule, unsigned linkMatchType, PropertyWhitelistType propertyWhitelistType)
50 newProperties.properties = const_cast<StylePropertySet*>(properties);
MatchResult.h 33 class StylePropertySet;
59 RefPtr<StylePropertySet> properties;
77 void addMatchedProperties(const StylePropertySet* properties, StyleRule* = 0, unsigned linkMatchType = SelectorChecker::MatchAll, PropertyWhitelistType = PropertyWhitelistNone);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableElement.h 68 const StylePropertySet* additionalCellStyle();
69 const StylePropertySet* additionalGroupStyle(bool rows);
80 virtual const StylePropertySet* additionalPresentationAttributeStyle() OVERRIDE;
89 PassRefPtr<StylePropertySet> createSharedCellStyle();
100 RefPtr<StylePropertySet> m_sharedCellStyle;
HTMLTableColElement.h 48 virtual const StylePropertySet* additionalPresentationAttributeStyle() OVERRIDE;
HTMLTableCellElement.h 59 virtual const StylePropertySet* additionalPresentationAttributeStyle() OVERRIDE;
HTMLTableSectionElement.h 61 virtual const StylePropertySet* additionalPresentationAttributeStyle() OVERRIDE;
HTMLTableElement.cpp 35 #include "core/css/StylePropertySet.h"
418 static PassRefPtr<StylePropertySet> createBorderStyle(CSSValueID value)
428 const StylePropertySet* HTMLTableElement::additionalPresentationAttributeStyle()
437 DEFINE_STATIC_REF(StylePropertySet, solidBorderStyle, (createBorderStyle(CSSValueHidden)));
444 DEFINE_STATIC_REF(StylePropertySet, solidBorderStyle, (createBorderStyle(CSSValueSolid)));
447 DEFINE_STATIC_REF(StylePropertySet, outsetBorderStyle, (createBorderStyle(CSSValueOutset)));
474 PassRefPtr<StylePropertySet> HTMLTableElement::createSharedCellStyle()
514 const StylePropertySet* HTMLTableElement::additionalCellStyle()
521 static PassRefPtr<StylePropertySet> createGroupBorderStyle(int rows)
538 const StylePropertySet* HTMLTableElement::additionalGroupStyle(bool rows
    [all...]
HTMLTableColElement.cpp 83 const StylePropertySet* HTMLTableColElement::additionalPresentationAttributeStyle()
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageSerializer.h 52 class StylePropertySet;
84 void retrieveResourcesForProperties(const StylePropertySet*, Document*);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
RemoveCSSPropertyCommand.cpp 31 #include "core/css/StylePropertySet.h"
52 const StylePropertySet* style = m_element->inlineStyle();
EditingStyle.h 59 class StylePropertySet;
85 static PassRefPtr<EditingStyle> create(const StylePropertySet* style)
106 void overrideWithStyle(const StylePropertySet*);
153 explicit EditingStyle(const StylePropertySet*);
164 void mergeStyle(const StylePropertySet*, CSSPropertyOverrideMode);
236 CSSValueID getIdentifierValue(StylePropertySet*, CSSPropertyID);
Editor.h 57 class StylePropertySet;
131 void applyStyle(StylePropertySet*, EditAction = EditActionUnspecified);
132 void applyParagraphStyle(StylePropertySet*, EditAction = EditActionUnspecified);
133 void applyStyleToSelection(StylePropertySet*, EditAction);
134 void applyParagraphStyleToSelection(StylePropertySet*, EditAction);
218 void computeAndSetTypingStyle(StylePropertySet* , EditAction = EditActionUnspecified);
EditingStyle.cpp 39 #include "core/css/StylePropertySet.h"
144 static PassRefPtr<MutableStylePropertySet> getPropertiesNotIn(StylePropertySet* styleWithRedundantProperties, CSSStyleDeclaration* baseStyle);
149 static bool hasTransparentBackgroundColor(StylePropertySet*);
163 virtual bool propertyExistsInStyle(const StylePropertySet* style) const { return style->getPropertyCSSValue(m_propertyID); }
164 virtual bool valueIsPresentInStyle(Element*, StylePropertySet*) const;
196 bool HTMLElementEquivalent::valueIsPresentInStyle(Element* element, StylePropertySet* style) const
213 virtual bool propertyExistsInStyle(const StylePropertySet*) const;
214 virtual bool valueIsPresentInStyle(Element*, StylePropertySet*) const;
226 bool HTMLTextDecorationEquivalent::propertyExistsInStyle(const StylePropertySet* style) const
232 bool HTMLTextDecorationEquivalent::valueIsPresentInStyle(Element* element, StylePropertySet* style) cons
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
KeyframeList.h 39 class StylePropertySet;
50 void addProperties(const StylePropertySet*);

Completed in 643 milliseconds

1 2 3