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

  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableShadow.cpp 38 const AnimatableShadow* shadowList = toAnimatableShadow(value);
39 return AnimatableShadow::create(ShadowList::blend(m_shadowList.get(), shadowList->m_shadowList.get(), fraction));
44 const ShadowList* shadowList = toAnimatableShadow(value)->m_shadowList.get();
45 return m_shadowList == shadowList || (m_shadowList && shadowList && *m_shadowList == *shadowList);
AnimatableShadow.h 35 #include "core/rendering/style/ShadowList.h"
42 static PassRefPtrWillBeRawPtr<AnimatableShadow> create(PassRefPtr<ShadowList> shadowList)
44 return adoptRefWillBeNoop(new AnimatableShadow(shadowList));
46 ShadowList* shadowList() const { return m_shadowList.get(); }
54 explicit AnimatableShadow(PassRefPtr<ShadowList> shadowList)
55 : m_shadowList(shadowList)
61 const RefPtr<ShadowList> m_shadowList
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
ShadowList.cpp 32 #include "core/rendering/style/ShadowList.h"
38 static inline void calculateShadowExtent(const ShadowList* shadowList, float additionalOutlineSize, float& shadowLeft, float& shadowRight, float& shadowTop, float& shadowBottom)
40 ASSERT(shadowList);
41 size_t shadowCount = shadowList->shadows().size();
43 const ShadowData& shadow = shadowList->shadows()[i];
54 void ShadowList::adjustRectForShadow(LayoutRect& rect, float additionalOutlineSize) const
61 void ShadowList::adjustRectForShadow(FloatRect& rect, float additionalOutlineSize) const
74 PassRefPtr<ShadowList> ShadowList::blend(const ShadowList* from, const ShadowList* to, double progress
    [all...]
RenderStyle.cpp 33 #include "core/rendering/style/ShadowList.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
EllipsisBox.cpp 28 #include "core/rendering/style/ShadowList.h"
66 const ShadowList* shadowList = context->printing() ? 0 : style->textShadow();
67 bool hasShadow = shadowList;
70 for (size_t i = shadowList->shadows().size(); i--; ) {
71 const ShadowData& shadow = shadowList->shadows()[i];
InlineTextBox.cpp 47 #include "core/rendering/style/ShadowList.h"
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];
551 const ShadowList* textShadow = (context->printing() || paintInfo.forceBlackText()) ? 0 : styleToUse->textShadow();
592 const ShadowList* selectionShadow = textShadow;
611 const ShadowList* shadow = (context->printing() || paintInfo.forceBlackText()) ? 0 : pseudoStyle->textShadow();
    [all...]
RenderBoxModelObject.cpp 43 #include "core/rendering/style/ShadowList.h"
508 const ShadowList* shadowList = renderer->style()->boxShadow();
509 ASSERT(shadowList);
510 for (size_t i = shadowList->shadows().size(); i--; ) {
511 const ShadowData& boxShadow = shadowList->shadows()[i];
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGInlineTextBox.cpp 36 #include "core/rendering/style/ShadowList.h"
623 const ShadowList* shadowList = style->textShadow();
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/
AnimatedStyleBuilder.cpp 338 style->setBoxShadow(toAnimatableShadow(value)->shadowList());
495 style->setTextShadow(toAnimatableShadow(value)->shadowList());
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.cpp 65 #include "core/rendering/style/ShadowList.h"
    [all...]

Completed in 501 milliseconds