/external/chromium_org/third_party/WebKit/Source/core/animation/ |
H A D | AnimatableShadow.cpp | 38 const AnimatableShadow* shadowList = toAnimatableShadow(value); local 39 return AnimatableShadow::create(ShadowList::blend(m_shadowList.get(), shadowList->m_shadowList.get(), fraction)); 44 const ShadowList* shadowList = toAnimatableShadow(value)->m_shadowList.get(); local 45 return m_shadowList == shadowList || (m_shadowList && shadowList && *m_shadowList == *shadowList);
|
H A D | AnimatableShadow.h | 42 static PassRefPtrWillBeRawPtr<AnimatableShadow> create(PassRefPtr<ShadowList> shadowList) argument 44 return adoptRefWillBeNoop(new AnimatableShadow(shadowList)); 46 ShadowList* shadowList() const { return m_shadowList.get(); } function in class:WebCore::FINAL 54 explicit AnimatableShadow(PassRefPtr<ShadowList> shadowList) argument 55 : m_shadowList(shadowList)
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
H A D | ShadowList.cpp | 38 static inline void calculateShadowExtent(const ShadowList* shadowList, float additionalOutlineSize, float& shadowLeft, float& shadowRight, float& shadowTop, float& shadowBottom) argument 40 ASSERT(shadowList); 41 size_t shadowCount = shadowList->shadows().size(); 43 const ShadowData& shadow = shadowList->shadows()[i];
|
H A D | RenderStyle.cpp | 1318 void RenderStyle::getShadowExtent(const ShadowList* shadowList, LayoutUnit &top, LayoutUnit &right, LayoutUnit &bottom, LayoutUnit &left) const argument 1325 size_t shadowCount = shadowList ? shadowList->shadows().size() : 0; 1327 const ShadowData& shadow = shadowList->shadows()[i]; 1339 LayoutBoxExtent RenderStyle::getShadowInsetExtent(const ShadowList* shadowList) const 1346 size_t shadowCount = shadowList ? shadowList->shadows().size() : 0; 1348 const ShadowData& shadow = shadowList->shadows()[i]; 1361 void RenderStyle::getShadowHorizontalExtent(const ShadowList* shadowList, LayoutUnit &left, LayoutUnit &right) const argument 1366 size_t shadowCount = shadowList 1378 getShadowVerticalExtent(const ShadowList* shadowList, LayoutUnit &top, LayoutUnit &bottom) const argument [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
H A D | EllipsisBox.cpp | 66 const ShadowList* shadowList = context->printing() ? 0 : style->textShadow(); local 67 bool hasShadow = shadowList; 70 for (size_t i = shadowList->shadows().size(); i--; ) { 71 const ShadowData& shadow = shadowList->shadows()[i];
|
H A D | InlineTextBox.cpp | 396 const ShadowList* shadowList, bool stroked, bool horizontal) 399 bool hasShadow = shadowList && !context->printing(); 403 for (size_t i = shadowList->shadows().size(); i--; ) { 404 const ShadowData& shadow = shadowList->shadows()[i]; 1107 void InlineTextBox::paintDecoration(GraphicsContext* context, const FloatPoint& boxOrigin, TextDecoration deco, const ShadowList* shadowList) argument 1138 size_t shadowCount = shadowList ? shadowList->shadows().size() : 0; 1157 const ShadowData& s = shadowList->shadows()[i]; 1179 const ShadowData& shadow = shadowList->shadows()[i]; 391 paintTextWithShadows(GraphicsContext* context, const RenderObject& renderer, const Font& font, const TextRun& textRun, const AtomicString& emphasisMark, int emphasisMarkOffset, int startOffset, int endOffset, int truncationPoint, const FloatPoint& textOrigin, const FloatRect& boxRect, const ShadowList* shadowList, bool stroked, bool horizontal) argument
|
H A D | RenderBoxModelObject.cpp | 508 const ShadowList* shadowList = renderer->style()->boxShadow(); local 509 ASSERT(shadowList); 510 for (size_t i = shadowList->shadows().size(); i--; ) { 511 const ShadowData& boxShadow = shadowList->shadows()[i]; 2445 const ShadowList* shadowList = style()->boxShadow(); local 2446 if (!shadowList) 2450 size_t shadowCount = shadowList->shadows().size(); 2452 const ShadowData& currentShadow = shadowList->shadows()[i]; 2506 const ShadowList* shadowList = s->boxShadow(); local 2507 for (size_t i = shadowList [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
H A D | SVGInlineTextBox.cpp | 623 const ShadowList* shadowList = style->textShadow(); local 626 bool hasShadow = shadowList && !context->printing(); 640 for (size_t i = shadowList->shadows().size(); i--; ) { 641 const ShadowData& shadow = shadowList->shadows()[i];
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
H A D | AnimatedStyleBuilder.cpp | 338 style->setBoxShadow(toAnimatableShadow(value)->shadowList()); 495 style->setTextShadow(toAnimatableShadow(value)->shadowList());
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
H A D | CSSComputedStyleDeclaration.cpp | 1226 PassRefPtrWillBeRawPtr<CSSValue> CSSComputedStyleDeclaration::valueForShadowList(const ShadowList* shadowList, const RenderStyle& style, bool useSpread) const argument 1228 if (!shadowList) 1232 size_t shadowCount = shadowList->shadows().size(); 1234 list->append(valueForShadowData(shadowList->shadows()[i], style, useSpread));
|