/external/webkit/Source/WebCore/rendering/style/ |
D | StyleRareInheritedData.cpp | 38 , textShadow(0) in StyleRareInheritedData() 72 , textShadow(o.textShadow ? new ShadowData(*o.textShadow) : 0) in StyleRareInheritedData() 105 delete textShadow; in ~StyleRareInheritedData() 159 if ((!textShadow && o.textShadow) || (textShadow && !o.textShadow)) in shadowDataEquivalent() 161 if (textShadow && o.textShadow && (*textShadow != *o.textShadow)) in shadowDataEquivalent()
|
D | StyleRareInheritedData.h | 65 ShadowData* textShadow; // Our text shadow information for shadowed text drawing. variable
|
D | RenderStyle.h | 654 const ShadowData* textShadow() const { return rareInheritedData->textShadow; } in textShadow() function 655 …(int& top, int& right, int& bottom, int& left) const { getShadowExtent(textShadow(), top, right, b… in getTextShadowExtent() 656 …izontalExtent(int& left, int& right) const { getShadowHorizontalExtent(textShadow(), left, right);… in getTextShadowHorizontalExtent() 657 …wVerticalExtent(int& top, int& bottom) const { getShadowVerticalExtent(textShadow(), top, bottom);… in getTextShadowVerticalExtent() 658 …(int& logicalLeft, int& logicalRight) { getShadowInlineDirectionExtent(textShadow(), logicalLeft, … in getTextShadowInlineDirectionExtent() 659 …t(int& logicalTop, int& logicalBottom) { getShadowBlockDirectionExtent(textShadow(), logicalTop, l… in getTextShadowBlockDirectionExtent()
|
D | RenderStyle.cpp | 737 delete rareData->textShadow; in setTextShadow() 738 rareData->textShadow = val; in setTextShadow() 742 val->setNext(rareData->textShadow); in setTextShadow() 743 rareData->textShadow = val; in setTextShadow()
|
/external/webkit/Source/WebCore/rendering/ |
D | EllipsisBox.cpp | 40 if (style->textShadow()) { in paint() 41 context->setShadow(IntSize(style->textShadow()->x(), style->textShadow()->y()), in paint() 42 … style->textShadow()->blur(), style->textShadow()->color(), style->colorSpace()); in paint()
|
D | InlineTextBox.cpp | 568 const ShadowData* textShadow = paintInfo.forceBlackText ? 0 : styleToUse->textShadow(); in paint() local 601 const ShadowData* selectionShadow = textShadow; in paint() 619 const ShadowData* shadow = paintInfo.forceBlackText ? 0 : pseudoStyle->textShadow(); in paint() 682 …t, font, textRun, nullAtom, 0, 0, length, length, textOrigin, boxRect, textShadow, textStrokeWidth… in paint() 684 …, font, textRun, nullAtom, 0, ePos, sPos, length, textOrigin, boxRect, textShadow, textStrokeWidth… in paint() 697 …mphasisMarkOffset, 0, length, length, emphasisMarkTextOrigin, boxRect, textShadow, textStrokeWidth… in paint() 699 …phasisMarkOffset, ePos, sPos, length, emphasisMarkTextOrigin, boxRect, textShadow, textStrokeWidth… in paint() 738 paintDecoration(context, boxOrigin, textDecorations, textShadow); in paint()
|
D | InlineFlowBox.cpp | 148 …if (childStyle->letterSpacing() < 0 || childStyle->textShadow() || childStyle->textEmphasisMark() … in addToLine()
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | bubble_view.mm | 105 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,
|
D | confirm_quit_panel_controller.mm | 88 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/webkit/Source/WebCore/rendering/svg/ |
D | RenderSVGText.cpp | 267 if (const ShadowData* textShadow = style()->textShadow()) in repaintRectInLocalCoordinates() local 268 textShadow->adjustRectForShadow(repaintRect); in repaintRectInLocalCoordinates()
|
D | SVGInlineTextBox.cpp | 610 const ShadowData* shadow = style->textShadow(); in paintTextWithShadows()
|
/external/webkit/Source/WebCore/bindings/objc/ |
D | DOMCSS.h | 272 - (NSString *)textShadow; 273 - (void)setTextShadow:(NSString *)textShadow;
|
D | DOMCSS.mm | 1227 - (NSString *)textShadow 1232 - (void)setTextShadow:(NSString *)textShadow 1234 [self setProperty:@"text-shadow" value:textShadow priority:@""];
|
/external/webkit/Source/WebCore/editing/mac/ |
D | EditorMac.mm | 110 const ShadowData* shadow = style->textShadow();
|
/external/webkit/Source/WebCore/platform/mac/ |
D | HTMLConverter.mm | 612 …icalAlign = [self _stringForNode:element property:@"vertical-align"], *textShadow = [self _stringF… 669 if (textShadow && [textShadow length] > 4) { 670 NSShadow *shadow = _shadowForShadowStyle(textShadow);
|
/external/webkit/Source/WebCore/page/animation/ |
D | AnimationBase.cpp | 698 …>append(new PropertyWrapperShadow(CSSPropertyTextShadow, &RenderStyle::textShadow, &RenderStyle::s… in ensurePropertyMap()
|
/external/webkit/Source/WebCore/css/ |
D | CSSComputedStyleDeclaration.cpp | 1356 return valueForShadow(style->textShadow(), propertyID, style.get()); in getPropertyCSSValue()
|
D | CSSStyleSelector.cpp | 5144 …return m_style->setTextShadow(m_parentStyle->textShadow() ? new ShadowData(*m_parentStyle->textSha… in applyProperty()
|
/external/webkit/Source/WebCore/accessibility/mac/ |
D | AccessibilityObjectWrapper.mm | 422 if (style->textShadow())
|
/external/webkit/Source/WebCore/ |
D | ChangeLog | 9788 … Fix OwnPtr strict errors in RenderStyle and make StyleRareInheritedData::textShadow an OwnPtr 9804 (WebCore::InheritedFlags::textShadow): 10675 … Fix OwnPtr strict errors in RenderStyle and make StyleRareInheritedData::textShadow an OwnPtr 10687 (WebCore::InheritedFlags::textShadow): 10939 … Fix OwnPtr strict errors in RenderStyle and make StyleRareInheritedData::textShadow an OwnPtr 10951 (WebCore::InheritedFlags::textShadow):
|
D | ChangeLog-2005-08-23 | 53546 operator to StyleCSS3InheritedData, since the textShadow field that needs to be allocated 53549 Added destructor that deletes the textShadow object. 58379 (textShadow): 58445 (:textShadow): 58471 (:textShadow):
|
D | ChangeLog-2003-10-25 | 4998 (textShadow):
|
D | ChangeLog-2010-05-24 | 1242 (WebCore::InheritedFlags::textShadow): 23399 (WebCore::InheritedFlags::textShadow):
|
D | ChangeLog-2010-12-06 | 70650 Respect textShadow() when calculating the repaint rect of RenderSVGText.
|