OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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));
51
const
ShadowList
*
shadowList
= toAnimatableShadow(value)->m_shadowList.get();
52
return m_shadowList ==
shadowList
|| (m_shadowList &&
shadowList
&& *m_shadowList == *
shadowList
);
AnimatableShadow.h
35
#include "core/rendering/style/
ShadowList
.h"
42
static PassRefPtr<AnimatableShadow> create(PassRefPtr<
ShadowList
>
shadowList
)
44
return adoptRef(new AnimatableShadow(
shadowList
));
46
ShadowList
*
shadowList
() const { return m_shadowList.get(); }
53
explicit AnimatableShadow(PassRefPtr<
ShadowList
>
shadowList
)
54
: m_shadowList(
shadowList
)
60
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"
39
static inline void calculateShadowExtent(const
ShadowList
*
shadowList
, int additionalOutlineSize, int& shadowLeft, int& shadowRight, int& shadowTop, int& shadowBottom)
41
ASSERT(
shadowList
);
42
size_t shadowCount =
shadowList
->shadows().size();
44
const ShadowData& shadow =
shadowList
->shadows()[i];
55
void
ShadowList
::adjustRectForShadow(LayoutRect& rect, int additionalOutlineSize) const
68
void
ShadowList
::adjustRectForShadow(FloatRect& rect, int additionalOutlineSize) const
81
PassRefPtr<
ShadowList
>
ShadowList
::blend(const ShadowList* from, const ShadowList* to, double progress
[
all
...]
RenderStyle.cpp
34
#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"
67
const
ShadowList
*
shadowList
= context->printing() ? 0 : style->textShadow();
68
bool hasShadow =
shadowList
;
71
for (size_t i =
shadowList
->shadows().size(); i--; ) {
72
const ShadowData& shadow =
shadowList
->shadows()[i];
InlineTextBox.cpp
45
#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];
545
const
ShadowList
* textShadow = (context->printing() || paintInfo.forceBlackText()) ? 0 : styleToUse->textShadow();
586
const
ShadowList
* selectionShadow = textShadow;
605
const
ShadowList
* shadow = (context->printing() || paintInfo.forceBlackText()) ? 0 : pseudoStyle->textShadow();
[
all
...]
RenderBoxModelObject.cpp
43
#include "core/rendering/style/
ShadowList
.h"
506
const
ShadowList
*
shadowList
= renderer->style()->boxShadow();
507
ASSERT(
shadowList
);
508
for (size_t i =
shadowList
->shadows().size(); i--; ) {
509
const ShadowData& boxShadow =
shadowList
->shadows()[i];
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGInlineTextBox.cpp
30
#include "core/rendering/style/
ShadowList
.h"
624
const
ShadowList
*
shadowList
= style->textShadow();
627
bool hasShadow =
shadowList
&& !context->printing();
641
for (size_t i =
shadowList
->shadows().size(); i--; ) {
642
const ShadowData& shadow =
shadowList
->shadows()[i];
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
AnimatedStyleBuilder.cpp
315
style->setBoxShadow(toAnimatableShadow(value)->
shadowList
());
471
style->setTextShadow(toAnimatableShadow(value)->
shadowList
());
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.cpp
71
#include "core/rendering/style/
ShadowList
.h"
[
all
...]
Completed in 164 milliseconds