Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DStyleRareInheritedData.cpp108 , textShadow(o.textShadow) in StyleRareInheritedData()
223 if ((!textShadow && o.textShadow) || (textShadow && !o.textShadow)) in shadowDataEquivalent()
225 if (textShadow && o.textShadow && (*textShadow != *o.textShadow)) in shadowDataEquivalent()
DStyleRareInheritedData.h70 RefPtr<ShadowList> textShadow; // Our text shadow information for shadowed text drawing. variable
DRenderStyle.h722 ShadowList* textShadow() const { return rareInheritedData->textShadow.get(); } in textShadow() function
723 …& right, LayoutUnit& bottom, LayoutUnit& left) const { getShadowExtent(textShadow(), top, right, b… in getTextShadowExtent()
724 …LayoutUnit& left, LayoutUnit& right) const { getShadowHorizontalExtent(textShadow(), left, right);… in getTextShadowHorizontalExtent()
725 …t(LayoutUnit& top, LayoutUnit& bottom) const { getShadowVerticalExtent(textShadow(), top, bottom);… in getTextShadowVerticalExtent()
726 …ogicalLeft, LayoutUnit& logicalRight) { getShadowInlineDirectionExtent(textShadow(), logicalLeft, … in getTextShadowInlineDirectionExtent()
727 …logicalTop, LayoutUnit& logicalBottom) { getShadowBlockDirectionExtent(textShadow(), logicalTop, l… in getTextShadowBlockDirectionExtent()
DRenderStyle.cpp899 rareInheritedData.access()->textShadow = s; in setTextShadow()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DRenderSVGBlock.cpp41 if (const ShadowList* textShadow = style()->textShadow()) in visualOverflowRect() local
42 textShadow->adjustRectForShadow(borderRect); in visualOverflowRect()
DRenderSVGText.cpp523 if (const ShadowList* textShadow = style()->textShadow()) in repaintRectInLocalCoordinates() local
524 textShadow->adjustRectForShadow(repaintRect); in repaintRectInLocalCoordinates()
DSVGInlineTextBox.cpp624 const ShadowList* shadowList = style->textShadow(); in paintTextWithShadows()
/external/chromium/chrome/browser/ui/cocoa/
Dbubble_view.mm105 scoped_nsobject<NSShadow> textShadow([[NSShadow alloc] init]);
106 [textShadow setShadowBlurRadius:0.0f];
107 [textShadow.get() setShadowColor:[textColor gtm_legibleTextColor]];
108 [textShadow.get() setShadowOffset:NSMakeSize(0.0f, -1.0f)];
113 textShadow.get(), NSShadowAttributeName,
Dconfirm_quit_panel_controller.mm88 scoped_nsobject<NSShadow> textShadow([[NSShadow alloc] init]);
89 [textShadow.get() setShadowColor:[NSColor colorWithCalibratedWhite:0
91 [textShadow.get() setShadowOffset:NSMakeSize(0, -1)];
92 [textShadow setShadowBlurRadius:1.0];
94 value:textShadow
/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.mm100 base::scoped_nsobject<NSShadow> textShadow([[NSShadow alloc] init]);
101 [textShadow.get() setShadowColor:[NSColor colorWithCalibratedWhite:0
103 [textShadow.get() setShadowOffset:NSMakeSize(0, -1)];
104 [textShadow setShadowBlurRadius:1.0];
106 value:textShadow
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DInlineTextBox.cpp545 …const ShadowList* textShadow = (context->printing() || paintInfo.forceBlackText()) ? 0 : styleToUs… in paint() local
586 const ShadowList* selectionShadow = textShadow; in paint()
605 …List* shadow = (context->printing() || paintInfo.forceBlackText()) ? 0 : pseudoStyle->textShadow(); in paint()
697 …e, font, textRun, nullAtom, 0, 0, length, length, textOrigin, boxRect, textShadow, textStrokeWidth… in paint()
699 …, font, textRun, nullAtom, 0, ePos, sPos, length, textOrigin, boxRect, textShadow, textStrokeWidth… in paint()
713 …mphasisMarkOffset, 0, length, length, emphasisMarkTextOrigin, boxRect, textShadow, textStrokeWidth… in paint()
715 …phasisMarkOffset, ePos, sPos, length, emphasisMarkTextOrigin, boxRect, textShadow, textStrokeWidth… in paint()
751 …aintDecoration(context, boxOrigin, textDecorations, styleToUse->textDecorationStyle(), textShadow); in paint()
DEllipsisBox.cpp67 const ShadowList* shadowList = context->printing() ? 0 : style->textShadow(); in paint()
DInlineFlowBox.cpp160 …if (childStyle->letterSpacing() < 0 || childStyle->textShadow() || childStyle->textEmphasisMark() … in addToLine()
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
DCSSAnimatableValueFactory.cpp400 return AnimatableShadow::create(style.textShadow()); in create()
/external/chromium_org/third_party/WebKit/Source/core/frame/animation/
DCSSPropertyAnimation.cpp1045 …>append(new PropertyWrapperShadow(CSSPropertyTextShadow, &RenderStyle::textShadow, &RenderStyle::s… in ensurePropertyMap()
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSComputedStyleDeclaration.cpp2323 return valueForShadowList(style->textShadow(), *style, false); in getPropertyCSSValue()