Searched refs:m_style (Results 1 - 25 of 42) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/platform/fonts/linux/
H A DFontPlatformDataLinux.cpp78 paint->setAntiAlias(m_style.useAntiAlias);
79 paint->setHinting(static_cast<SkPaint::Hinting>(m_style.hintStyle));
80 paint->setEmbeddedBitmapText(m_style.useBitmaps);
81 paint->setAutohinted(m_style.useAutoHint);
82 if (m_style.useAntiAlias)
83 paint->setLCDRenderText(m_style.useSubpixelRendering);
94 paint->setSubpixelText(m_style.useSubpixelPositioning);
117 style.toFontRenderStyle(&m_style);
120 if (m_style.useAntiAlias == FontRenderStyle::NoPreference)
121 m_style
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DBorderValue.h41 , 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)
91 EBorderStyle style() const { return static_cast<EBorderStyle>(m_style); }
[all...]
H A DAppliedTextDecoration.cpp12 , 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;
H A DAppliedTextDecoration.h20 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
H A DCollapsedBorderValue.h38 , 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
H A DShadowData.h44 , m_style(style)
58 ShadowStyle style() const { return m_style; }
67 ShadowStyle m_style; member in class:blink::ShadowData
H A DShadowData.cpp34 && m_style == o.m_style
H A DOutlineValue.h52 if (m_style == BNONE && o.m_style == BNONE)
H A DKeyframeList.h44 , 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:blink::KeyframeValue
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSToLengthConversionData.cpp40 : 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();
H A DCSSToLengthConversionData.h48 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:blink::CSSToLengthConversionData
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleResolverState.h63 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(); }
128 void setZoom(float f) { m_fontBuilder.didChangeFontParameters(m_style->setZoom(f)); }
129 void setEffectiveZoom(float f) { m_fontBuilder.didChangeFontParameters(m_style->setEffectiveZoom(f)); }
130 void setWritingMode(WritingMode writingMode) { m_fontBuilder.didChangeFontParameters(m_style->setWritingMode(writingMode)); }
131 void setTextOrientation(TextOrientation textOrientation) { m_fontBuilder.didChangeFontParameters(m_style->setTextOrientation(textOrientation)); }
137 // m_style i
138 RefPtr<RenderStyle> m_style; member in class:blink::StyleResolverState
[all...]
H A DFontBuilderTest.cpp16 return builder.m_style;
H A DStyleResolverState.cpp35 , m_style(nullptr)
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DRenderTreeBuilder.cpp98 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());
H A DRenderTreeBuilder.h46 , m_style(style)
73 mutable RefPtr<RenderStyle> m_style; member in class:blink::RenderTreeBuilder
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DStrokeData.h49 : m_style(SolidStroke)
57 StrokeStyle style() const { return m_style; }
58 void setStyle(StrokeStyle style) { m_style = style; }
86 StrokeStyle m_style; member in class:blink::StrokeData
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLOptGroupElement.cpp89 ASSERT(!m_style || m_style == context.resolvedStyle);
90 m_style = context.resolvedStyle;
97 m_style.clear();
103 m_style = originalStyleForRenderer();
112 return m_style.get();
118 return m_style;
H A DHTMLOptionElement.cpp91 ASSERT(!m_style || m_style == context.resolvedStyle);
92 m_style = context.resolvedStyle;
95 optionContext.resolvedStyle = m_style.get();
102 m_style.clear();
288 m_style = originalStyleForRenderer();
295 return m_style.get();
301 return m_style;
404 // If m_style is not set, then the node is still unattached.
406 if (!m_style)
[all...]
H A DHTMLOptGroupElement.h64 RefPtr<RenderStyle> m_style; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFontTraits.h77 m_traits.m_style = style;
90 FontStyle style() const { return static_cast<FontStyle>(m_traits.m_style); }
98 unsigned m_style : 1; member in struct:blink::FontTraits::__anon11289::__anon11290
H A DFontPlatformData.cpp55 , m_style(FontRenderStyle())
84 , m_style(FontRenderStyle())
113 , m_style(FontRenderStyle())
140 , m_style(source.m_style)
249 m_style = other.m_style;
291 && m_style == a.m_style
H A DFontPlatformData.h131 m_style.useAutoHint = 0;
132 m_style.hintStyle = style;
144 const FontRenderStyle& fontRenderStyle() const { return m_style; }
197 FontRenderStyle m_style; member in class:blink::FontPlatformData
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
H A DButtonPropertyEditorPresentation.java30 private final int m_style; field in class:ButtonPropertyEditorPresentation
43 m_style = style;
88 return m_style;
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DInsertParagraphSeparatorCommand.h58 RefPtrWillBeMember<EditingStyle> m_style; member in class:blink::FINAL

Completed in 349 milliseconds

12