HomeSort by relevance Sort by last modified time
    Searched defs:shadowList (Results 1 - 5 of 5) 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/
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];
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];

Completed in 123 milliseconds