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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGBlock.cpp 43 if (const ShadowList* textShadow = style()->textShadow())
44 textShadow->adjustRectForShadow(borderRect);
RenderSVGText.cpp 493 if (const ShadowList* textShadow = style()->textShadow())
494 textShadow->adjustRectForShadow(paintInvalidationRect);
SVGInlineTextBox.cpp 571 const ShadowList* shadowList = style->textShadow();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleRareInheritedData.cpp 112 , textShadow(o.textShadow)
228 return dataEquivalent(textShadow.get(), o.textShadow.get());
StyleRareInheritedData.h 90 RefPtr<ShadowList> textShadow; // Our text shadow information for shadowed text drawing.
RenderStyle.h     [all...]
RenderStyle.cpp     [all...]
  /frameworks/base/libs/hwui/
OpenGLRenderer.h 293 struct TextShadow {
300 static inline bool getTextShadow(const SkPaint* paint, TextShadow* textShadow) {
303 if (textShadow) {
304 textShadow->radius = Blur::convertSigmaToRadius(blur.fSigma);
305 textShadow->dx = blur.fOffset.fX;
306 textShadow->dy = blur.fOffset.fY;
307 textShadow->color = blur.fColor;
    [all...]
DisplayListOp.h 265 OpenGLRenderer::TextShadow textShadow;
266 if (OpenGLRenderer::getTextShadow(mPaint, &textShadow)) {
268 shadow.translate(textShadow.dx, textShadow.dx);
269 shadow.outset(textShadow.radius);
    [all...]
OpenGLRenderer.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
TextPainter.cpp 126 textStyle.shadow = style->textShadow();
163 selectionStyle.shadow = forceBlackText ? 0 : pseudoStyle->textShadow();
InlineFlowBox.cpp 161 if (childStyle->letterSpacing() < 0 || childStyle->textShadow() || childStyle->textEmphasisMark() != TextEmphasisMarkNone || childStyle->textStrokeWidth())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSPropertyEquality.cpp 234 return dataEquivalent(a.textShadow(), b.textShadow());
CSSAnimatableValueFactory.cpp 432 return AnimatableShadow::create(style.textShadow());
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.cpp     [all...]

Completed in 224 milliseconds