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

1 2

  /external/webkit/WebCore/rendering/style/
BorderValue.h 37 , m_style(BNONE)
43 unsigned m_style : 4; // EBorderStyle
45 EBorderStyle style() const { return static_cast<EBorderStyle>(m_style); }
49 return width != 0 && (!checkStyle || m_style != BNONE);
59 return nonZero(checkStyle) && !isTransparent() && (!checkStyle || m_style != BHIDDEN);
64 return width == o.width && m_style == o.m_style && color == o.color;
OutlineValue.h 42 return width == o.width && m_style == o.m_style && color == o.color && _offset == o._offset && _auto == o._auto;
KeyframeList.cpp 48 const RenderStyle& style1 = *it1->m_style;
49 const RenderStyle& style2 = *it2->m_style;
85 m_keyframes[index].m_style = style;
KeyframeList.h 46 const RenderStyle* style() const { return m_style.get(); }
49 RefPtr<RenderStyle> m_style; member in class:WebCore::KeyframeValue
  /external/webkit/WebCore/editing/
RemoveCSSPropertyCommand.cpp 36 , m_style(style)
40 ASSERT(m_style);
45 m_oldValue = m_style->getPropertyValue(m_property);
46 m_important = m_style->getPropertyPriority(m_property);
47 m_style->removeProperty(m_property);
52 m_style->setProperty(m_property, m_oldValue, m_important);
RemoveCSSPropertyCommand.h 48 RefPtr<CSSMutableStyleDeclaration> m_style; member in class:WebCore::RemoveCSSPropertyCommand
InsertParagraphSeparatorCommand.h 54 RefPtr<CSSMutableStyleDeclaration> m_style; member in class:WebCore::InsertParagraphSeparatorCommand
  /external/webkit/WebCore/css/
CSSFontFaceRule.cpp 40 m_style = style;
47 result += m_style->cssText();
54 if (m_style)
55 m_style->addSubresourceStyleURLs(urls);
CSSStyleRule.cpp 37 if (m_style)
38 m_style->setParent(0);
62 result += m_style->cssText();
76 m_style = style;
81 if (m_style)
82 m_style->addSubresourceStyleURLs(urls);
WebKitCSSKeyframeRule.h 62 CSSMutableStyleDeclaration* style() const { return m_style.get(); }
71 CSSMutableStyleDeclaration* declaration() { return m_style.get(); }
72 const CSSMutableStyleDeclaration* declaration() const { return m_style.get(); }
79 RefPtr<CSSMutableStyleDeclaration> m_style; member in class:WebCore::WebKitCSSKeyframeRule
CSSPageRule.h 45 CSSMutableStyleDeclaration* style() const { return m_style.get(); }
55 RefPtr<CSSMutableStyleDeclaration> m_style; member in class:WebCore::CSSPageRule
WebKitCSSKeyframeRule.cpp 40 if (m_style)
41 m_style->setParent(0);
49 result += m_style->cssText();
63 m_style = style;
64 m_style->setParent(parent());
CSSStyleRule.h 46 CSSMutableStyleDeclaration* style() const { return m_style.get(); }
57 CSSMutableStyleDeclaration* declaration() { return m_style.get(); }
69 RefPtr<CSSMutableStyleDeclaration> m_style; member in class:WebCore::CSSStyleRule
CSSFontFaceRule.h 46 CSSMutableStyleDeclaration* style() const { return m_style.get(); }
62 RefPtr<CSSMutableStyleDeclaration> m_style; member in class:WebCore::CSSFontFaceRule
CSSStyleSelector.cpp 126 m_style->set##Prop(m_parentStyle->prop()); \
133 m_style->set##Prop(RenderStyle::initial##Prop()); \
140 m_style->set##Prop(RenderStyle::initial##Value());\
147 m_style->set##Prop(*primitiveValue);
152 m_style->set##Prop(*primitiveValue);
156 FillLayer* currChild = m_style->access##LayerType##Layers(); \
177 FillLayer* currChild = m_style->access##LayerType##Layers(); \
187 FillLayer* currChild = m_style->access##LayerType##Layers(); \
226 AnimationList* list = m_style->accessAnimations(); \
239 AnimationList* list = m_style->accessAnimations();
    [all...]
MediaQueryEvaluator.h 85 RenderStyle* m_style; // not owned member in class:WebCore::MediaQueryEvaluator
  /external/webkit/WebCore/platform/graphics/
Pen.cpp 31 Pen::Pen(const Color &color, unsigned width, PenStyle style) : m_style(style), m_width(width), m_color(color)
47 return m_style;
62 m_style = style;
68 (m_style == compareTo.m_style) &&
Pen.h 65 PenStyle m_style; member in class:WebCore::Pen
  /external/webkit/WebKit/win/
DOMCSSClasses.cpp 37 : m_style(0)
42 m_style = s;
47 if (m_style)
48 m_style->deref();
97 m_style->setCssText(cssTextString, ec);
106 WebCore::String value = m_style->getPropertyValue(propertyNameString);
147 m_style->setProperty(propertyNameString, valueString, priorityString, code);
  /external/webkit/WebCore/wml/
WMLOptionElement.h 63 RefPtr<RenderStyle> m_style; member in class:WebCore::WMLOptionElement
WMLOptGroupElement.cpp 136 m_style.clear();
142 m_style = style;
147 return m_style.get();
WMLOptionElement.cpp 103 m_style.clear();
109 m_style = style;
156 return m_style.get();
  /external/webkit/WebKit/chromium/src/
SuggestionsPopupMenuClient.cpp 79 return *m_style;
84 return *m_style;
168 m_style.set(new PopupMenuStyle(Color::black, Color::white, font, true,
  /external/webkit/WebCore/html/
HTMLOptGroupElement.cpp 42 , m_style(0)
140 m_style.clear();
146 m_style = newStyle;
151 return m_style.get();
HTMLOptGroupElement.h 67 RefPtr<RenderStyle> m_style; member in class:WebCore::HTMLOptGroupElement

Completed in 306 milliseconds

1 2