/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/ |
D | AnimatableShadow.cpp | 38 const AnimatableShadow* shadowList = toAnimatableShadow(value); in interpolateTo() local 39 …return AnimatableShadow::create(ShadowList::blend(m_shadowList.get(), shadowList->m_shadowList.get… in interpolateTo() 44 const ShadowList* shadowList = toAnimatableShadow(value)->m_shadowList.get(); in equalTo() local 45 … return m_shadowList == shadowList || (m_shadowList && shadowList && *m_shadowList == *shadowList); in equalTo()
|
D | AnimatableShadow.h | 42 static PassRefPtrWillBeRawPtr<AnimatableShadow> create(PassRefPtr<ShadowList> shadowList) in create() argument 44 return adoptRefWillBeNoop(new AnimatableShadow(shadowList)); in create() 46 ShadowList* shadowList() const { return m_shadowList.get(); } in shadowList() function 54 explicit AnimatableShadow(PassRefPtr<ShadowList> shadowList) in AnimatableShadow() argument 55 : m_shadowList(shadowList) in AnimatableShadow()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
D | ShadowList.cpp | 39 static inline void calculateShadowExtent(const ShadowList* shadowList, float& shadowLeft, float& sh… in calculateShadowExtent() argument 41 ASSERT(shadowList); in calculateShadowExtent() 42 size_t shadowCount = shadowList->shadows().size(); in calculateShadowExtent() 44 const ShadowData& shadow = shadowList->shadows()[i]; in calculateShadowExtent()
|
D | RenderStyle.cpp | 1301 void RenderStyle::getShadowExtent(const ShadowList* shadowList, LayoutUnit &top, LayoutUnit &right,… in getShadowExtent() argument 1308 size_t shadowCount = shadowList ? shadowList->shadows().size() : 0; in getShadowExtent() 1310 const ShadowData& shadow = shadowList->shadows()[i]; in getShadowExtent() 1322 LayoutBoxExtent RenderStyle::getShadowInsetExtent(const ShadowList* shadowList) const in getShadowInsetExtent() 1329 size_t shadowCount = shadowList ? shadowList->shadows().size() : 0; in getShadowInsetExtent() 1331 const ShadowData& shadow = shadowList->shadows()[i]; in getShadowInsetExtent() 1344 void RenderStyle::getShadowHorizontalExtent(const ShadowList* shadowList, LayoutUnit &left, LayoutU… in getShadowHorizontalExtent() argument 1349 size_t shadowCount = shadowList ? shadowList->shadows().size() : 0; in getShadowHorizontalExtent() 1351 const ShadowData& shadow = shadowList->shadows()[i]; in getShadowHorizontalExtent() 1361 void RenderStyle::getShadowVerticalExtent(const ShadowList* shadowList, LayoutUnit &top, LayoutUnit… in getShadowVerticalExtent() argument [all …]
|
/external/llvm/include/llvm/Target/ |
D | TargetCallingConv.td | 83 list<Register> shadowList> : CCAction { 85 list<Register> ShadowRegList = shadowList; 99 /// shadows ALL of the registers in shadowList. 102 list<Register> shadowList> : CCAction { 105 list<Register> ShadowRegList = shadowList;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderBoxModelObject.cpp | 412 const ShadowList* shadowList = style()->boxShadow(); in boxShadowShouldBeAppliedToBackground() local 413 if (!shadowList) in boxShadowShouldBeAppliedToBackground() 417 size_t shadowCount = shadowList->shadows().size(); in boxShadowShouldBeAppliedToBackground() 419 const ShadowData& currentShadow = shadowList->shadows()[i]; in boxShadowShouldBeAppliedToBackground()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
D | SVGInlineTextBox.cpp | 571 const ShadowList* shadowList = style->textShadow(); in paintTextWithShadows() local 574 bool hasShadow = shadowList && !context->printing(); in paintTextWithShadows() 587 … context->setDrawLooper(shadowList->createDrawLooper(DrawLooperBuilder::ShadowRespectsAlpha)); in paintTextWithShadows()
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
D | AnimatedStyleBuilder.cpp | 340 style->setBoxShadow(toAnimatableShadow(value)->shadowList()); in applyProperty() 499 style->setTextShadow(toAnimatableShadow(value)->shadowList()); in applyProperty()
|
/external/chromium_org/third_party/WebKit/Source/core/paint/ |
D | BoxPainter.cpp | 194 const ShadowList* shadowList = obj.style()->boxShadow(); in applyBoxShadowForBackground() local 195 ASSERT(shadowList); in applyBoxShadowForBackground() 196 for (size_t i = shadowList->shadows().size(); i--; ) { in applyBoxShadowForBackground() 197 const ShadowData& boxShadow = shadowList->shadows()[i]; in applyBoxShadowForBackground() 1858 const ShadowList* shadowList = s->boxShadow(); in paintBoxShadow() local 1859 for (size_t i = shadowList->shadows().size(); i--; ) { in paintBoxShadow() 1860 const ShadowData& shadow = shadowList->shadows()[i]; in paintBoxShadow()
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | CSSComputedStyleDeclaration.cpp | 1226 …lue> CSSComputedStyleDeclaration::valueForShadowList(const ShadowList* shadowList, const RenderSty… in valueForShadowList() argument 1228 if (!shadowList) in valueForShadowList() 1232 size_t shadowCount = shadowList->shadows().size(); in valueForShadowList() 1234 list->append(valueForShadowData(shadowList->shadows()[i], style, useSpread)); in valueForShadowList()
|
/external/llvm/docs/ |
D | WritingAnLLVMBackend.rst | 1540 * ``CCAssignToRegWithShadow <registerList, shadowList>`` --- similar to
|