HomeSort by relevance Sort by last modified time
    Searched refs:renderStyle (Results 1 - 23 of 23) sorted by null

  /external/webkit/Source/WebCore/dom/
NodeRenderStyle.h 29 #include "RenderStyle.h"
34 inline RenderStyle* Node::renderStyle() const
Element.cpp 328 // time (or store an additional bit in the RenderStyle to indicate that a zoom was specified).
915 RenderObject* Element::createRenderer(RenderArena* arena, RenderStyle* style)
    [all...]
Node.h 73 class RenderStyle;
132 static StyleChange diff(const RenderStyle*, const RenderStyle*);
460 PassRefPtr<RenderStyle> styleForRenderer();
461 virtual bool rendererIsNeeded(RenderStyle*);
463 virtual RenderObject* createRenderer(RenderArena*, RenderStyle*);
467 RenderStyle* renderStyle() const;
468 virtual void setRenderStyle(PassRefPtr<RenderStyle>);
470 RenderStyle* computedStyle(PseudoId pseudoElementSpecifier = NOPSEUDO) { return virtualComputedStyle(pseudoEle (…)
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLOptGroupElement.cpp 58 // Optgroup elements do not have a renderer so we check the renderStyle instead.
59 return supportsFocus() && renderStyle() && renderStyle()->display() != NONE;
91 if (parentNode()->renderStyle())
102 void HTMLOptGroupElement::setRenderStyle(PassRefPtr<RenderStyle> newStyle)
107 RenderStyle* HTMLOptGroupElement::nonRendererRenderStyle() const
HTMLOptionElement.cpp 83 if (parentNode()->renderStyle())
101 // Option elements do not have a renderer so we check the renderStyle instead.
102 return supportsFocus() && renderStyle() && renderStyle()->display() != NONE;
221 void HTMLOptionElement::setRenderStyle(PassRefPtr<RenderStyle> newStyle)
229 RenderStyle* HTMLOptionElement::nonRendererRenderStyle() const
  /external/webkit/Source/WebCore/platform/graphics/gtk/
GraphicsContext3DGtk.cpp 40 PassRefPtr<GraphicsContext3D> GraphicsContext3D::create(GraphicsContext3D::Attributes attributes, HostWindow* hostWindow, GraphicsContext3D::RenderStyle renderStyle)
43 if (renderStyle == RenderDirectlyToHostWindow)
  /external/webkit/Source/WebCore/wml/
WMLOptGroupElement.cpp 30 #include "RenderStyle.h"
94 if (parentNode()->renderStyle())
105 void WMLOptGroupElement::setRenderStyle(PassRefPtr<RenderStyle> style)
110 RenderStyle* WMLOptGroupElement::nonRendererRenderStyle() const
WMLOptionElement.cpp 29 #include "RenderStyle.h"
101 if (parentNode()->renderStyle())
112 void WMLOptionElement::setRenderStyle(PassRefPtr<RenderStyle> style)
159 RenderStyle* WMLOptionElement::nonRendererRenderStyle() const
  /external/webkit/Source/WebCore/rendering/
RenderMenuList.cpp 86 RenderStyle* innerStyle = m_innerBlock->style();
125 void RenderMenuList::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle)
154 if (RenderStyle* optionStyle = element->renderStyle())
197 m_optionStyle = element->renderStyle();
430 RenderStyle* style = element->renderStyle() ? element->renderStyle() : element->computedStyle();
443 if (element->renderStyle())
444 backgroundColor = element->renderStyle()->visitedDependentColor(CSSPropertyBackgroundColor)
    [all...]
RenderListBox.cpp 339 static IntSize itemOffsetForAlignment(TextRun textRun, RenderStyle* itemStyle, Font itemFont, IntRect itemBoudingBox)
365 RenderStyle* itemStyle = element->renderStyle();
378 Color textColor = element->renderStyle() ? element->renderStyle()->visitedDependentColor(CSSPropertyColor) : style()->visitedDependentColor(CSSPropertyColor);
423 backColor = element->renderStyle() ? element->renderStyle()->visitedDependentColor(CSSPropertyBackgroundColor) : style()->visitedDependentColor(CSSPropertyBackgroundColor);
426 if (!element->renderStyle() || element->renderStyle()->visibility() != HIDDEN) {
427 ColorSpace colorSpace = element->renderStyle() ? element->renderStyle()->colorSpace() : style()->colorSpace()
    [all...]
  /external/webkit/Source/WebCore/accessibility/
AccessibilityTable.cpp 132 RenderStyle* tableStyle = table->style();
182 RenderStyle* renderStyle = cell->style();
183 if (!renderStyle)
193 Color cellColor = renderStyle->visitedDependentColor(CSSPropertyBackgroundColor);
207 RenderStyle* rowRenderStyle = renderRow->style();
  /external/webkit/Source/WebKit/chromium/src/
WebAccessibilityObject.cpp 41 #include "RenderStyle.h"
533 RenderStyle* renderStyle = node->computedStyle();
534 if (!renderStyle)
537 return WebString(CSSPrimitiveValue::create(renderStyle->display())->getStringValue());
GraphicsContext3DChromium.cpp 937 PassRefPtr<GraphicsContext3D> GraphicsContext3D::create(GraphicsContext3D::Attributes attrs, HostWindow* hostWindow, GraphicsContext3D::RenderStyle renderStyle)
    [all...]
  /external/webkit/Source/WebCore/editing/
EditingStyle.cpp 42 #include "RenderStyle.h"
316 RenderStyle* renderStyle = node->computedStyle();
317 removeTextFillAndStrokeColorsIfNeeded(renderStyle);
318 replaceFontSizeByKeywordIfPossible(renderStyle, computedStyleAtPosition.get());
325 void EditingStyle::removeTextFillAndStrokeColorsIfNeeded(RenderStyle* renderStyle)
331 if (!renderStyle->textFillColor().isValid())
333 if (!renderStyle->textStrokeColor().isValid())
347 void EditingStyle::replaceFontSizeByKeywordIfPossible(RenderStyle* renderStyle, CSSComputedStyleDeclaration* computedStyle
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/mac/
GraphicsContext3DMac.mm 81 PassRefPtr<GraphicsContext3D> GraphicsContext3D::create(GraphicsContext3D::Attributes attrs, HostWindow* hostWindow, GraphicsContext3D::RenderStyle renderStyle)
84 if (renderStyle == RenderDirectlyToHostWindow)
  /external/webkit/Source/WebCore/platform/qt/
RenderThemeQt.cpp 207 bool RenderThemeQt::isControlStyled(const RenderStyle* style, const BorderData& border, const FillLayer& fill, const Color& backgroundColor) const
228 int RenderThemeQt::popupInternalPaddingBottom(RenderStyle* style) const
234 bool RenderThemeQt::isControlStyled(const RenderStyle* style, const BorderData& border, const FillLayer& fill, const Color& backgroundColor) const
279 bool RenderThemeQt::supportsHover(const RenderStyle*) const
284 bool RenderThemeQt::supportsFocusRing(const RenderStyle* style) const
446 int RenderThemeQt::minimumMenuListSize(RenderStyle*) const
452 void RenderThemeQt::computeSizeBasedOnStyle(RenderStyle* renderStyle) const
455 const QFontMetrics fm(renderStyle->font().font());
458 switch (renderStyle->appearance())
    [all...]
RenderThemeQt.h 40 class RenderStyle;
54 virtual bool supportsHover(const RenderStyle*) const;
55 virtual bool supportsFocusRing(const RenderStyle* style) const;
78 virtual int minimumMenuListSize(RenderStyle*) const;
84 virtual bool isControlStyled(const RenderStyle*, const BorderData&, const FillLayer&, const Color& backgroundColor) const;
86 virtual int popupInternalPaddingBottom(RenderStyle*) const;
97 virtual void setCheckboxSize(RenderStyle*) const;
100 virtual void setRadioSize(RenderStyle*) const;
102 virtual void adjustButtonStyle(CSSStyleSelector*, RenderStyle*, Element*) const;
104 virtual void setButtonSize(RenderStyle*) const
    [all...]
  /external/webkit/Source/WebCore/css/
MediaQueryEvaluator.cpp 47 #include "RenderStyle.h"
61 typedef bool (*EvalFunc)(CSSValue*, RenderStyle*, Frame*, MediaFeaturePrefix);
100 MediaQueryEvaluator:: MediaQueryEvaluator(const String& acceptedMediaType, Frame* frame, RenderStyle* style)
220 static bool colorMediaFeatureEval(CSSValue* value, RenderStyle*, Frame* frame, MediaFeaturePrefix op)
230 static bool monochromeMediaFeatureEval(CSSValue* value, RenderStyle* style, Frame* frame, MediaFeaturePrefix op)
243 static bool orientationMediaFeatureEval(CSSValue* value, RenderStyle*, Frame* frame, MediaFeaturePrefix)
257 static bool aspect_ratioMediaFeatureEval(CSSValue* value, RenderStyle*, Frame* frame, MediaFeaturePrefix op)
275 static bool device_aspect_ratioMediaFeatureEval(CSSValue* value, RenderStyle*, Frame* frame, MediaFeaturePrefix op)
291 static bool device_pixel_ratioMediaFeatureEval(CSSValue *value, RenderStyle*, Frame* frame, MediaFeaturePrefix op)
299 static bool gridMediaFeatureEval(CSSValue* value, RenderStyle*, Frame*, MediaFeaturePrefix op
    [all...]
CSSStyleSelector.cpp 141 m_style->set##Prop(RenderStyle::initial##Prop()); \
148 m_style->set##Prop(RenderStyle::initial##Value());\
279 m_style->set##Prop(RenderStyle::initial##Prop()); \
285 m_style->set##Prop(RenderStyle::initial##Value()); \
367 RenderStyle* CSSStyleSelector::s_styleNotYetAvailable;
466 m_rootDefaultStyle = styleForElement(root, 0, false, true); // don't ref, because the RenderStyle is allocated from global heap
822 inline void CSSStyleSelector::initForStyleResolve(Element* e, RenderStyle* parentStyle, PseudoId pseudoID)
831 m_parentStyle = m_parentNode ? m_parentNode->renderStyle() : 0;
834 RenderStyle* docStyle = m_checker.m_document->renderStyle();
    [all...]
CSSGradientValue.cpp 112 void CSSGradientValue::addStops(Gradient* gradient, RenderObject* renderer, RenderStyle* rootStyle, float maxLengthForRepeat)
114 RenderStyle* style = renderer->style();
365 static float positionFromValue(CSSPrimitiveValue* value, RenderStyle* style, RenderStyle* rootStyle, const IntSize& size, bool isHorizontal)
397 FloatPoint CSSGradientValue::computeEndPoint(CSSPrimitiveValue* first, CSSPrimitiveValue* second, RenderStyle* style, RenderStyle* rootStyle, const IntSize& size)
533 RenderStyle* rootStyle = renderer->document()->documentElement()->renderStyle();
630 float CSSRadialGradientValue::resolveRadius(CSSPrimitiveValue* radius, RenderStyle* style, RenderStyle* rootStyle, float* widthOrHeight
    [all...]
  /external/webkit/Source/WebKit/android/
RenderSkinCombo.cpp 33 #include "RenderStyle.h"
180 RenderStyle* style = element->renderStyle();
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContext3DQt.cpp 607 PassRefPtr<GraphicsContext3D> GraphicsContext3D::create(GraphicsContext3D::Attributes attrs, HostWindow* hostWindow, GraphicsContext3D::RenderStyle renderStyle)
610 if (renderStyle == RenderDirectlyToHostWindow)
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebpage.cpp     [all...]

Completed in 378 milliseconds