/external/chromium_org/third_party/WebKit/Source/platform/fonts/linux/ |
D | FontPlatformDataLinux.cpp | 78 paint->setAntiAlias(m_style.useAntiAlias); in setupPaint() 79 paint->setHinting(static_cast<SkPaint::Hinting>(m_style.hintStyle)); in setupPaint() 80 paint->setEmbeddedBitmapText(m_style.useBitmaps); in setupPaint() 81 paint->setAutohinted(m_style.useAutoHint); in setupPaint() 82 if (m_style.useAntiAlias) in setupPaint() 83 paint->setLCDRenderText(m_style.useSubpixelRendering); in setupPaint() 94 paint->setSubpixelText(m_style.useSubpixelPositioning); in setupPaint() 117 style.toFontRenderStyle(&m_style); in querySystemForRenderStyle() 120 if (m_style.useAntiAlias == FontRenderStyle::NoPreference) in querySystemForRenderStyle() 121 m_style.useAntiAlias = useSkiaAntiAlias; in querySystemForRenderStyle() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
D | BorderValue.h | 41 , m_style(BNONE) in BorderValue() 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_colorIsCurrentCol… 69 if (m_style == BNONE && o.m_style == BNONE) in visuallyEqual() 71 if (m_style == BHIDDEN && o.m_style == BHIDDEN) in visuallyEqual() 91 EBorderStyle style() const { return static_cast<EBorderStyle>(m_style); } in style() 92 void setStyle(EBorderStyle style) { m_style = style; } in setStyle() 99 unsigned m_style : 4; // EBorderStyle variable
|
D | AppliedTextDecoration.cpp | 12 , m_style(style) in AppliedTextDecoration() 19 , m_style(TextDecorationStyleSolid) in AppliedTextDecoration() 26 , m_style(TextDecorationStyleSolid) in AppliedTextDecoration() 33 return m_color == o.m_color && m_line == o.m_line && m_style == o.m_style; in operator ==()
|
D | CollapsedBorderValue.h | 38 , m_style(BNONE) in CollapsedBorderValue() 48 , m_style(border.style()) in CollapsedBorderValue() 54 unsigned width() const { return m_style > BHIDDEN ? m_width : 0; } in width() 55 EBorderStyle style() const { return static_cast<EBorderStyle>(m_style); } in style() 70 unsigned m_style : 4; // EBorderStyle variable
|
D | KeyframeList.h | 44 , m_style(style) in KeyframeValue() 55 const RenderStyle* style() const { return m_style.get(); } in style() 56 void setStyle(PassRefPtr<RenderStyle> style) { m_style = style; } in setStyle() 61 RefPtr<RenderStyle> m_style; variable
|
D | AppliedTextDecoration.h | 20 TextDecorationStyle style() const { return static_cast<TextDecorationStyle>(m_style); } in style() 22 …bool isSimpleUnderline() const { return m_line == TextDecorationUnderline && m_style == TextDecora… in isSimpleUnderline() 28 unsigned m_style : 3; // TextDecorationStyle variable
|
D | ShadowData.h | 44 , m_style(style) in ShadowData() 58 ShadowStyle style() const { return m_style; } in style() 67 ShadowStyle m_style; variable
|
D | ShadowData.cpp | 34 && m_style == o.m_style in operator ==()
|
D | OutlineValue.h | 52 if (m_style == BNONE && o.m_style == BNONE) in visuallyEqual()
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | CSSToLengthConversionData.cpp | 40 : m_style(style) in CSSToLengthConversionData() 52 : m_style(style) in CSSToLengthConversionData() 62 : m_style(style) in CSSToLengthConversionData() 76 return m_style ? m_style->effectiveZoom() : 1; in zoom() 82 m_style->setHasViewportUnits(); in viewportWidthPercent() 87 m_style->setHasViewportUnits(); in viewportHeightPercent() 92 m_style->setHasViewportUnits(); in viewportMinPercent() 97 m_style->setHasViewportUnits(); in viewportMaxPercent()
|
D | CSSToLengthConversionData.h | 48 const RenderStyle& style() const { return *m_style; } in style() 59 void setStyle(const RenderStyle* style) { m_style = style; } in setStyle() 64 …return CSSToLengthConversionData(m_style, m_rootStyle, m_viewportWidth, m_viewportHeight, newZoom,… in copyWithAdjustedZoom() 68 const RenderStyle* m_style;
|
D | ElementRuleCollector.cpp | 52 , m_style(style) in ElementRuleCollector() 251 if (m_style && ruleData->containsUncommonAttributeSelector()) in sortAndTransferMatchedRules() 252 m_style->setUnique(); in sortAndTransferMatchedRules() 261 context.elementStyle = m_style.get(); in ruleMatches() 299 if (!m_style || dynamicPseudo >= FIRST_INTERNAL_PSEUDOID) in collectRuleIfMatches() 303 m_style->setHasPseudoStyle(dynamicPseudo); in collectRuleIfMatches()
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
D | StyleResolverState.h | 63 …oid setStyle(PassRefPtr<RenderStyle> style) { m_style = style; m_cssToLengthConversionData.setStyl… in setStyle() 64 const RenderStyle* style() const { return m_style.get(); } in style() 65 RenderStyle* style() { return m_style.get(); } in style() 66 PassRefPtr<RenderStyle> takeStyle() { return m_style.release(); } in takeStyle() 128 void setZoom(float f) { m_fontBuilder.didChangeFontParameters(m_style->setZoom(f)); } in setZoom() 129 …void setEffectiveZoom(float f) { m_fontBuilder.didChangeFontParameters(m_style->setEffectiveZoom(f… in setEffectiveZoom() 130 …void setWritingMode(WritingMode writingMode) { m_fontBuilder.didChangeFontParameters(m_style->setW… in setWritingMode() 131 …TextOrientation textOrientation) { m_fontBuilder.didChangeFontParameters(m_style->setTextOrientati… in setTextOrientation() 138 RefPtr<RenderStyle> m_style; variable
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | RenderTreeBuilder.cpp | 98 if (!m_style) in style() 99 m_style = toElement(m_node)->styleForRenderer(); in style() 100 return *m_style; in style() 155 m_style = parentRenderer->style(); in createRendererForTextIfNeeded() 157 if (!textNode->textRendererIsNeeded(*m_style, *parentRenderer)) in createRendererForTextIfNeeded() 160 RenderText* newRenderer = textNode->createTextRenderer(m_style.get()); in createRendererForTextIfNeeded() 161 if (!parentRenderer->isChildAllowed(newRenderer, m_style.get())) { in createRendererForTextIfNeeded() 173 newRenderer->setStyle(m_style.release()); in createRendererForTextIfNeeded()
|
D | RenderTreeBuilder.h | 46 , m_style(style) in RenderTreeBuilder() 73 mutable RefPtr<RenderStyle> m_style; variable
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLOptGroupElement.cpp | 89 ASSERT(!m_style || m_style == context.resolvedStyle); in attach() 90 m_style = context.resolvedStyle; in attach() 97 m_style.clear(); in detach() 103 m_style = originalStyleForRenderer(); in updateNonRenderStyle() 112 return m_style.get(); in nonRendererStyle() 118 return m_style; in customStyleForRenderer()
|
D | HTMLOptionElement.cpp | 91 ASSERT(!m_style || m_style == context.resolvedStyle); in attach() 92 m_style = context.resolvedStyle; in attach() 95 optionContext.resolvedStyle = m_style.get(); in attach() 102 m_style.clear(); in detach() 288 m_style = originalStyleForRenderer(); in updateNonRenderStyle() 295 return m_style.get(); in nonRendererStyle() 301 return m_style; in customStyleForRenderer() 406 if (!m_style) in isDisplayNone() 409 if (m_style->display() != NONE) { in isDisplayNone() 417 return m_style->display() == NONE; in isDisplayNone()
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
D | StrokeData.h | 49 : m_style(SolidStroke) in StrokeData() 57 StrokeStyle style() const { return m_style; } in style() 58 void setStyle(StrokeStyle style) { m_style = style; } in setStyle() 86 StrokeStyle m_style;
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/ |
D | FontPlatformData.cpp | 55 , m_style(FontRenderStyle()) in FontPlatformData() 84 , m_style(FontRenderStyle()) in FontPlatformData() 113 , m_style(FontRenderStyle()) in FontPlatformData() 140 , m_style(source.m_style) in FontPlatformData() 249 m_style = other.m_style; in operator =() 291 && m_style == a.m_style in operator ==()
|
D | FontTraits.h | 77 m_traits.m_style = style; in FontTraits() 90 FontStyle style() const { return static_cast<FontStyle>(m_traits.m_style); } in style() 98 unsigned m_style : 1; member
|
D | FontPlatformData.h | 131 m_style.useAutoHint = 0; in setHinting() 132 m_style.hintStyle = style; in setHinting() 144 const FontRenderStyle& fontRenderStyle() const { return m_style; } in fontRenderStyle() 197 FontRenderStyle m_style;
|
D | FontDescription.h | 66 , m_style(FontStyleNormal) in FontDescription() 123 FontStyle style() const { return static_cast<FontStyle>(m_style); } in style() 171 void setStyle(FontStyle i) { m_style = i; } in setStyle() 221 unsigned m_style : 1; // FontStyle variable 261 && m_style == other.m_style
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/ |
D | ButtonPropertyEditorPresentation.java | 30 private final int m_style; field in ButtonPropertyEditorPresentation 43 m_style = style; in ButtonPropertyEditorPresentation() 88 return m_style; in getStyle()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderObject.cpp | 231 , m_style(nullptr) in RenderObject() 821 if (!isText() && m_style->position() == FixedPosition) { in containingBlock() 823 } else if (!isText() && m_style->position() == AbsolutePosition) { in containingBlock() 1700 if (m_style == style) { in setStyle() 1708 if (m_style) in setStyle() 1709 diff = m_style->visualInvalidationDiff(*style); in setStyle() 1715 RefPtr<RenderStyle> oldStyle = m_style.release(); in setStyle() 1718 updateFillImages(oldStyle ? &oldStyle->backgroundLayers() : 0, m_style->backgroundLayers()); in setStyle() 1719 updateFillImages(oldStyle ? &oldStyle->maskLayers() : 0, m_style->maskLayers()); in setStyle() 1721 updateImage(oldStyle ? oldStyle->borderImage().image() : 0, m_style->borderImage().image()); in setStyle() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | InsertParagraphSeparatorCommand.cpp | 86 m_style = EditingStyle::create(pos); in calculateStyleBeforeInsertion() 87 m_style->mergeTypingStyle(pos.document()); in calculateStyleBeforeInsertion() 101 if (!m_style) in applyStyleAfterInsertion() 104 m_style->prepareToApplyAt(endingSelection().start()); in applyStyleAfterInsertion() 105 if (!m_style->isEmpty()) in applyStyleAfterInsertion() 106 applyStyle(m_style.get()); in applyStyleAfterInsertion() 433 visitor->trace(m_style); in trace()
|