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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
AppliedTextDecoration.cpp 12 , m_style(style)
19 , m_style(TextDecorationStyleSolid)
26 , m_style(TextDecorationStyleSolid)
33 return m_color == o.m_color && m_line == o.m_line && m_style == o.m_style;
AppliedTextDecoration.h 20 TextDecorationStyle style() const { return static_cast<TextDecorationStyle>(m_style); }
22 bool isSimpleUnderline() const { return m_line == TextDecorationUnderline && m_style == TextDecorationStyleSolid && m_color.isCurrentColor(); }
28 unsigned m_style : 3; // TextDecorationStyle
BorderValue.h 41 , m_style(BNONE)
48 return width() && (!checkStyle || m_style != BNONE);
58 return nonZero(checkStyle) && !isTransparent() && (!checkStyle || m_style != BHIDDEN);
63 return m_width == o.m_width && m_style == o.m_style && m_color == o.m_color && m_colorIsCurrentColor == o.m_colorIsCurrentColor;
69 if (m_style == BNONE && o.m_style == BNONE)
71 if (m_style == BHIDDEN && o.m_style == BHIDDEN)
90 EBorderStyle style() const { return static_cast<EBorderStyle>(m_style); }
    [all...]
CollapsedBorderValue.h 38 , m_style(BNONE)
48 , m_style(border.style())
54 unsigned width() const { return m_style > BHIDDEN ? m_width : 0; }
55 EBorderStyle style() const { return static_cast<EBorderStyle>(m_style); }
70 unsigned m_style : 4; // EBorderStyle
KeyframeList.h 44 , m_style(style)
55 const RenderStyle* style() const { return m_style.get(); }
56 void setStyle(PassRefPtr<RenderStyle> style) { m_style = style; }
61 RefPtr<RenderStyle> m_style; member in class:WebCore::KeyframeValue
ShadowData.h 44 , m_style(style)
58 ShadowStyle style() const { return m_style; }
67 ShadowStyle m_style; member in class:WebCore::ShadowData
ShadowData.cpp 34 && m_style == o.m_style
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/linux/
FontPlatformDataLinuxHarfBuzz.cpp 77 paint->setAntiAlias(m_style.useAntiAlias);
78 paint->setHinting(static_cast<SkPaint::Hinting>(m_style.hintStyle));
79 paint->setEmbeddedBitmapText(m_style.useBitmaps);
80 paint->setAutohinted(m_style.useAutoHint);
81 if (m_style.useAntiAlias)
82 paint->setLCDRenderText(m_style.useSubpixelRendering);
90 paint->setSubpixelText(m_style.useSubpixelPositioning);
120 getRenderStyleForStrike(m_style, m_family.data(), (((int)m_textSize) << 2) | (m_typeface->style() & 3));
123 if (m_style.useAntiAlias == FontRenderStyle::NoPreference)
124 m_style.useAntiAlias = useSkiaAntiAlias
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSToLengthConversionData.cpp 40 : m_style(style)
52 : m_style(style)
62 : m_style(style)
76 return m_style ? m_style->effectiveZoom() : 1;
82 m_style->setHasViewportUnits();
87 m_style->setHasViewportUnits();
92 m_style->setHasViewportUnits();
97 m_style->setHasViewportUnits();
CSSToLengthConversionData.h 48 const RenderStyle& style() const { return *m_style; }
59 void setStyle(const RenderStyle* style) { m_style = style; }
64 return CSSToLengthConversionData(m_style, m_rootStyle, m_viewportWidth, m_viewportHeight, newZoom, m_computingFontSize);
68 const RenderStyle* m_style; member in class:WebCore::CSSToLengthConversionData
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
FontBuilderTest.cpp 16 return builder.m_style;
StyleResolverState.h 63 void setStyle(PassRefPtr<RenderStyle> style) { m_style = style; m_cssToLengthConversionData.setStyle(m_style.get()); }
64 const RenderStyle* style() const { return m_style.get(); }
65 RenderStyle* style() { return m_style.get(); }
66 PassRefPtr<RenderStyle> takeStyle() { return m_style.release(); }
131 void setZoom(float f) { m_fontBuilder.didChangeFontParameters(m_style->setZoom(f)); }
132 void setEffectiveZoom(float f) { m_fontBuilder.didChangeFontParameters(m_style->setEffectiveZoom(f)); }
133 void setWritingMode(WritingMode writingMode) { m_fontBuilder.didChangeFontParameters(m_style->setWritingMode(writingMode)); }
134 void setTextOrientation(TextOrientation textOrientation) { m_fontBuilder.didChangeFontParameters(m_style->setTextOrientation(textOrientation)); }
140 // m_style is the primary output for each element's style resolve
141 RefPtr<RenderStyle> m_style; member in class:WebCore::StyleResolverState
    [all...]
StyleResolverState.cpp 35 , m_style(nullptr)
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLOptGroupElement.cpp 82 ASSERT(!m_style || m_style == context.resolvedStyle);
83 m_style = context.resolvedStyle;
90 m_style.clear();
97 m_style = originalStyleForRenderer();
106 return m_style.get();
112 return m_style;
HTMLOptionElement.cpp 83 ASSERT(!m_style || m_style == context.resolvedStyle);
84 m_style = context.resolvedStyle;
87 optionContext.resolvedStyle = m_style.get();
94 m_style.clear();
283 m_style = originalStyleForRenderer();
292 return m_style.get();
298 return m_style;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
RenderTreeBuilder.cpp 98 if (!m_style)
99 m_style = toElement(m_node)->styleForRenderer();
100 return *m_style;
155 m_style = parentRenderer->style();
157 if (!textNode->textRendererIsNeeded(*m_style, *parentRenderer))
160 RenderText* newRenderer = textNode->createTextRenderer(m_style.get());
161 if (!parentRenderer->isChildAllowed(newRenderer, m_style.get())) {
173 newRenderer->setStyle(m_style.release());
RenderTreeBuilder.h 46 , m_style(style)
73 mutable RefPtr<RenderStyle> m_style; member in class:WebCore::RenderTreeBuilder
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontTraits.h 76 : m_style(style), m_variant(variant), m_weight(weight), m_stretch(stretch), m_filler(0)
87 FontStyle style() const { return static_cast<FontStyle>(m_style); }
95 unsigned m_style : 1; member in struct:WebCore::FontTraits::__anon15182::__anon15183
FontDescription.h 65 , m_style(FontStyleNormal)
94 FontStyle style() const { return static_cast<FontStyle>(m_style); }
135 void setStyle(FontStyle i) { m_style = i; }
188 unsigned m_style : 1; // FontStyle
228 && m_style == other.m_style
  /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/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
FontPlatformDataHarfBuzz.h 90 m_style.useAutoHint = 0;
91 m_style.hintStyle = style;
105 const FontRenderStyle& fontRenderStyle() const { return m_style; }
130 FontRenderStyle m_style; member in class:WebCore::FontPlatformData
FontPlatformDataHarfBuzz.cpp 91 , m_style(src.m_style)
156 m_style = src.m_style;
205 && m_style == a.m_style
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
StrokeData.h 49 : m_style(SolidStroke)
58 StrokeStyle style() const { return m_style; }
59 void setStyle(StrokeStyle style) { m_style = style; }
98 StrokeStyle m_style; member in class:WebCore::StrokeData
StrokeData.cpp 46 m_style = SolidStroke;
77 switch (m_style) {
  /external/pdfium/core/src/reflow/
autoreflow.h 78 m_Style = Style;
118 LAYOUTPROVIDER_STYLE m_Style;

Completed in 265 milliseconds

1 2