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

1 2

  /external/webkit/Source/WebCore/rendering/style/
BorderValue.h 38 , m_style(BNONE)
44 return width() && (!checkStyle || m_style != BNONE);
54 return nonZero(checkStyle) && !isTransparent() && (!checkStyle || m_style != BHIDDEN);
59 return m_width == o.m_width && m_style == o.m_style && m_color == o.m_color;
69 EBorderStyle style() const { return static_cast<EBorderStyle>(m_style); }
74 unsigned m_style : 4; // EBorderStyle
OutlineValue.h 43 return m_width == o.m_width && m_style == o.m_style && m_color == o.m_color && m_offset == o.m_offset && m_isAuto == o.m_isAuto;
ShadowData.h 47 , m_style(Normal)
59 , m_style(style)
78 ShadowStyle style() const { return m_style; }
94 ShadowStyle m_style; member in class:WebCore::ShadowData
KeyframeList.h 42 , m_style(style)
53 const RenderStyle* style() const { return m_style.get(); }
54 void setStyle(PassRefPtr<RenderStyle> style) { m_style = style; }
59 RefPtr<RenderStyle> m_style; member in class:WebCore::KeyframeValue
ShadowData.cpp 38 , m_style(o.m_style)
54 && m_style == o.m_style
  /external/webkit/Source/WebCore/css/
CSSFontFaceRule.cpp 40 m_style = style;
47 result += m_style->cssText();
54 if (m_style)
55 m_style->addSubresourceStyleURLs(urls);
CSSStyleRule.cpp 42 if (m_style)
43 m_style->setParent(0);
60 StyleSheet* ownerStyleSheet = m_style->stylesheet();
68 doc = m_style->node() ? m_style->node()->document() : 0;
92 result += m_style->cssText();
106 m_style = style;
111 if (m_style)
112 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
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(); }
72 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 134 m_style->set##Prop(m_parentStyle->prop()); \
141 m_style->set##Prop(RenderStyle::initial##Prop()); \
148 m_style->set##Prop(RenderStyle::initial##Value());\
155 m_style->set##Prop(*primitiveValue);
160 m_style->set##Prop(*primitiveValue);
164 AnimationList* list = m_style->accessAnimations(); \
177 AnimationList* list = m_style->accessAnimations(); \
189 AnimationList* list = m_style->accessAnimations(); \
214 AnimationList* list = m_style->accessTransitions(); \
227 AnimationList* list = m_style->accessTransitions();
    [all...]
MediaQueryEvaluator.h 86 RenderStyle* m_style; // not owned member in class:WebCore::MediaQueryEvaluator
  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontPlatformDataLinux.cpp 80 , m_style(src.m_style)
142 m_style = src.m_style;
159 paint->setAntiAlias(m_style.useAntiAlias == FontRenderStyle::NoPreference ? isSkiaAntiAlias : m_style.useAntiAlias);
160 switch (m_style.useHinting) {
168 paint->setHinting(static_cast<SkPaint::Hinting>(m_style.hintStyle));
172 paint->setEmbeddedBitmapText(m_style.useBitmaps);
177 paint->setAutohinted(m_style.useAutoHint)
    [all...]
  /external/webkit/Source/WebKit/win/
DOMCSSClasses.cpp 35 : m_style(0)
40 m_style = s;
45 if (m_style)
46 m_style->deref();
95 m_style->setCssText(cssTextString, ec);
104 WTF::String value = m_style->getPropertyValue(propertyNameString);
145 m_style->setProperty(propertyNameString, valueString, priorityString, code);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
ButtonPropertyEditorPresentation.java 30 private final int m_style; field in class:ButtonPropertyEditorPresentation
43 m_style = style;
88 return m_style;
  /external/webkit/Source/WebCore/html/
HTMLOptGroupElement.cpp 98 m_style.clear();
104 m_style = newStyle;
109 return m_style.get();
HTMLOptGroupElement.h 62 RefPtr<RenderStyle> m_style; member in class:WebCore::HTMLOptGroupElement
  /external/webkit/Source/WebCore/wml/
WMLOptGroupElement.cpp 101 m_style.clear();
107 m_style = style;
112 return m_style.get();
WMLOptGroupElement.h 56 RefPtr<RenderStyle> m_style; member in class:WebCore::WMLOptGroupElement
WMLOptionElement.cpp 108 m_style.clear();
114 m_style = style;
161 return m_style.get();
WMLOptionElement.h 67 RefPtr<RenderStyle> m_style; member in class:WebCore::WMLOptionElement
  /external/webkit/Source/WebCore/editing/
InsertParagraphSeparatorCommand.h 56 RefPtr<EditingStyle> m_style; member in class:WebCore::InsertParagraphSeparatorCommand
  /external/webkit/Source/WebCore/inspector/
InspectorStyleSheet.cpp 149 , m_style(style)
152 ASSERT(m_style);
165 result->setString("width", m_style->getPropertyValue("width"));
166 result->setString("height", m_style->getPropertyValue("height"));
168 RefPtr<CSSRuleSourceData> sourceData = m_parentStyleSheet ? m_parentStyleSheet->ruleSourceDataFor(m_style.get()) : 0;
249 RefPtr<CSSRuleSourceData> sourceData = m_parentStyleSheet->ruleSourceDataFor(m_style.get());
293 m_parentStyleSheet->setStyleText(m_style.get(), text);
309 RefPtr<CSSRuleSourceData> sourceData = m_parentStyleSheet->ruleSourceDataFor(m_style.get());
354 RefPtr<CSSRuleSourceData> sourceData = m_parentStyleSheet->ruleSourceDataFor(m_style.get());
423 RefPtr<CSSRuleSourceData> sourceData = (m_parentStyleSheet && m_parentStyleSheet->ensureParsedDataReady()) ? m_parentStyleSheet->ruleSourceDataFor(m_style.get()) : 0
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderObject.cpp 184 , m_style(0)
625 if (!isText() && m_style->position() == FixedPosition) {
628 } else if (!isText() && m_style->position() == AbsolutePosition) {
724 graphicsContext->setStrokeColor(color, m_style->colorSpace());
750 graphicsContext->setFillColor(color, m_style->colorSpace());
870 graphicsContext->setFillColor(color, m_style->colorSpace());
    [all...]

Completed in 191 milliseconds

1 2