HomeSort by relevance Sort by last modified time
    Searched refs:textShadow (Results 1 - 17 of 17) sorted by null

  /external/webkit/Source/WebCore/rendering/style/
StyleRareInheritedData.cpp 38 , textShadow(0)
72 , textShadow(o.textShadow ? new ShadowData(*o.textShadow) : 0)
105 delete textShadow;
159 if ((!textShadow && o.textShadow) || (textShadow && !o.textShadow))
161 if (textShadow && o.textShadow && (*textShadow != *o.textShadow)
    [all...]
StyleRareInheritedData.h 65 ShadowData* textShadow; // Our text shadow information for shadowed text drawing.
RenderStyle.h 654 const ShadowData* textShadow() const { return rareInheritedData->textShadow; }
655 void getTextShadowExtent(int& top, int& right, int& bottom, int& left) const { getShadowExtent(textShadow(), top, right, bottom, left); }
656 void getTextShadowHorizontalExtent(int& left, int& right) const { getShadowHorizontalExtent(textShadow(), left, right); }
657 void getTextShadowVerticalExtent(int& top, int& bottom) const { getShadowVerticalExtent(textShadow(), top, bottom); }
658 void getTextShadowInlineDirectionExtent(int& logicalLeft, int& logicalRight) { getShadowInlineDirectionExtent(textShadow(), logicalLeft, logicalRight); }
659 void getTextShadowBlockDirectionExtent(int& logicalTop, int& logicalBottom) { getShadowBlockDirectionExtent(textShadow(), logicalTop, logicalBottom); }
    [all...]
RenderStyle.cpp 737 delete rareData->textShadow;
738 rareData->textShadow = val;
742 val->setNext(rareData->textShadow);
743 rareData->textShadow = val;
    [all...]
  /external/webkit/Source/WebCore/rendering/
EllipsisBox.cpp 40 if (style->textShadow()) {
41 context->setShadow(IntSize(style->textShadow()->x(), style->textShadow()->y()),
42 style->textShadow()->blur(), style->textShadow()->color(), style->colorSpace());
InlineTextBox.cpp 568 const ShadowData* textShadow = paintInfo.forceBlackText ? 0 : styleToUse->textShadow();
601 const ShadowData* selectionShadow = textShadow;
619 const ShadowData* shadow = paintInfo.forceBlackText ? 0 : pseudoStyle->textShadow();
682 paintTextWithShadows(context, font, textRun, nullAtom, 0, 0, length, length, textOrigin, boxRect, textShadow, textStrokeWidth > 0, isHorizontal());
684 paintTextWithShadows(context, font, textRun, nullAtom, 0, ePos, sPos, length, textOrigin, boxRect, textShadow, textStrokeWidth > 0, isHorizontal());
697 paintTextWithShadows(context, combinedText ? combinedText->originalFont() : font, emphasisMarkTextRun, emphasisMark, emphasisMarkOffset, 0, length, length, emphasisMarkTextOrigin, boxRect, textShadow, textStrokeWidth > 0, isHorizontal());
699 paintTextWithShadows(context, combinedText ? combinedText->originalFont() : font, emphasisMarkTextRun, emphasisMark, emphasisMarkOffset, ePos, sPos, length, emphasisMarkTextOrigin, boxRect, textShadow, textStrokeWidth > 0, isHorizontal());
738 paintDecoration(context, boxOrigin, textDecorations, textShadow);
    [all...]
InlineFlowBox.cpp 148 if (childStyle->letterSpacing() < 0 || childStyle->textShadow() || childStyle->textEmphasisMark() != TextEmphasisMarkNone || childStyle->textStrokeWidth())
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGText.cpp 267 if (const ShadowData* textShadow = style()->textShadow())
268 textShadow->adjustRectForShadow(repaintRect);
SVGInlineTextBox.cpp 610 const ShadowData* shadow = style->textShadow();
  /external/webkit/Source/WebCore/editing/mac/
EditorMac.mm 110 const ShadowData* shadow = style->textShadow();
  /external/webkit/Source/WebCore/bindings/objc/
DOMCSS.h 272 - (NSString *)textShadow;
273 - (void)setTextShadow:(NSString *)textShadow;
DOMCSS.mm 1227 - (NSString *)textShadow
1232 - (void)setTextShadow:(NSString *)textShadow
1234 [self setProperty:@"text-shadow" value:textShadow priority:@""];
  /external/webkit/Source/WebCore/platform/mac/
HTMLConverter.mm 612 NSString *fontEffect = [self _stringForNode:element property:@"font-effect"], *textDecoration = [self _stringForNode:element property:@"text-decoration"], *verticalAlign = [self _stringForNode:element property:@"vertical-align"], *textShadow = [self _stringForNode:element property:@"text-shadow"];
    [all...]
  /external/webkit/Source/WebCore/page/animation/
AnimationBase.cpp     [all...]
  /external/webkit/Source/WebCore/css/
CSSComputedStyleDeclaration.cpp     [all...]
CSSStyleSelector.cpp     [all...]
  /external/webkit/Source/WebCore/accessibility/mac/
AccessibilityObjectWrapper.mm 422 if (style->textShadow())
    [all...]

Completed in 864 milliseconds