Home
last modified time | relevance | path

Searched refs:textShadow (Results 1 – 14 of 14) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DRenderSVGBlock.cpp43 if (const ShadowList* textShadow = style()->textShadow()) in visualOverflowRect() local
44 textShadow->adjustRectForShadow(borderRect); in visualOverflowRect()
DRenderSVGText.cpp493 if (const ShadowList* textShadow = style()->textShadow()) in paintInvalidationRectInLocalCoordinates() local
494 textShadow->adjustRectForShadow(paintInvalidationRect); in paintInvalidationRectInLocalCoordinates()
DSVGInlineTextBox.cpp571 const ShadowList* shadowList = style->textShadow(); in paintTextWithShadows()
/external/chromium_org/chrome/browser/ui/cocoa/
Dbubble_view.mm106 base::scoped_nsobject<NSShadow> textShadow([[NSShadow alloc] init]);
107 [textShadow setShadowBlurRadius:0.0f];
108 [textShadow.get() setShadowColor:[textColor gtm_legibleTextColor]];
109 [textShadow.get() setShadowOffset:NSMakeSize(0.0f, -1.0f)];
114 textShadow.get(), NSShadowAttributeName,
Dconfirm_quit_panel_controller.mm101 base::scoped_nsobject<NSShadow> textShadow([[NSShadow alloc] init]);
102 [textShadow.get() setShadowColor:[NSColor colorWithCalibratedWhite:0
104 [textShadow.get() setShadowOffset:NSMakeSize(0, -1)];
105 [textShadow setShadowBlurRadius:1.0];
107 value:textShadow
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DStyleRareInheritedData.cpp112 , textShadow(o.textShadow) in StyleRareInheritedData()
228 return dataEquivalent(textShadow.get(), o.textShadow.get()); in shadowDataEquivalent()
DStyleRareInheritedData.h90 RefPtr<ShadowList> textShadow; // Our text shadow information for shadowed text drawing. variable
DRenderStyle.h732 ShadowList* textShadow() const { return rareInheritedData->textShadow.get(); } in textShadow() function
733 …& right, LayoutUnit& bottom, LayoutUnit& left) const { getShadowExtent(textShadow(), top, right, b… in getTextShadowExtent()
734 …LayoutUnit& left, LayoutUnit& right) const { getShadowHorizontalExtent(textShadow(), left, right);… in getTextShadowHorizontalExtent()
735 …t(LayoutUnit& top, LayoutUnit& bottom) const { getShadowVerticalExtent(textShadow(), top, bottom);… in getTextShadowVerticalExtent()
736 …ogicalLeft, LayoutUnit& logicalRight) { getShadowInlineDirectionExtent(textShadow(), logicalLeft, … in getTextShadowInlineDirectionExtent()
737 …logicalTop, LayoutUnit& logicalBottom) { getShadowBlockDirectionExtent(textShadow(), logicalTop, l… in getTextShadowBlockDirectionExtent()
DRenderStyle.cpp928 rareInheritedData.access()->textShadow = s; in setTextShadow()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DTextPainter.cpp126 textStyle.shadow = style->textShadow(); in textPaintingStyle()
163 selectionStyle.shadow = forceBlackText ? 0 : pseudoStyle->textShadow(); in selectionPaintingStyle()
DInlineFlowBox.cpp161 …if (childStyle->letterSpacing() < 0 || childStyle->textShadow() || childStyle->textEmphasisMark() … in addToLine()
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
DCSSPropertyEquality.cpp234 return dataEquivalent(a.textShadow(), b.textShadow()); in propertiesEqual()
DCSSAnimatableValueFactory.cpp432 return AnimatableShadow::create(style.textShadow()); in create()
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSComputedStyleDeclaration.cpp2227 return valueForShadowList(style->textShadow(), *style, false); in getPropertyCSSValue()