OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ClipPathOperation
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
ClipPathOperation.h
42
class
ClipPathOperation
: public RefCounted<
ClipPathOperation
> {
49
virtual ~
ClipPathOperation
() { }
51
virtual bool operator==(const
ClipPathOperation
&) const = 0;
52
bool operator!=(const
ClipPathOperation
& o) const { return !(*this == o); }
55
bool isSameType(const
ClipPathOperation
& o) const { return o.type() == m_type; }
58
ClipPathOperation
(OperationType type)
66
class ReferenceClipPathOperation : public
ClipPathOperation
{
77
virtual bool operator==(const
ClipPathOperation
& o) const OVERRIDE
83
:
ClipPathOperation
(REFERENCE
[
all
...]
RenderLayer.cpp
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableClipPathOperation.h
35
#include "core/rendering/
ClipPathOperation
.h"
42
static PassRefPtr<AnimatableClipPathOperation> create(
ClipPathOperation
* operation)
46
ClipPathOperation
*
clipPathOperation
() const { return m_operation.get(); }
52
AnimatableClipPathOperation(
ClipPathOperation
* operation)
60
RefPtr<
ClipPathOperation
> m_operation;
AnimatableClipPathOperation.cpp
40
if (m_operation->type() !=
ClipPathOperation
::SHAPE || toOperation->m_operation->type() !=
ClipPathOperation
::SHAPE)
43
const BasicShape* fromShape = toShapeClipPathOperation(
clipPathOperation
())->basicShape();
44
const BasicShape* toShape = toShapeClipPathOperation(toOperation->
clipPathOperation
())->basicShape();
54
const
ClipPathOperation
* operation = toAnimatableClipPathOperation(value)->m_operation.get();
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleRareNonInheritedData.h
28
#include "core/rendering/
ClipPathOperation
.h"
136
RefPtr<
ClipPathOperation
> m_clipPath;
RenderStyle.h
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRenderingContext.cpp
135
ClipPathOperation
*
clipPathOperation
= style->clipPath();
136
if (
clipPathOperation
&&
clipPathOperation
->type() ==
ClipPathOperation
::SHAPE) {
137
ShapeClipPathOperation* clipPath = toShapeClipPathOperation(
clipPathOperation
);
160
if (!
clipPathOperation
&& clipper) {
/external/chromium_org/third_party/WebKit/Source/core/frame/animation/
CSSPropertyAnimation.cpp
41
#include "core/rendering/
ClipPathOperation
.h"
115
static inline PassRefPtr<
ClipPathOperation
> blendFunc(const AnimationBase*,
ClipPathOperation
* from,
ClipPathOperation
* to, double progress)
118
if (!from || !to || from->type() !=
ClipPathOperation
::SHAPE || to->type() !=
ClipPathOperation
::SHAPE)
388
class PropertyWrapperClipPath : public RefCountedPropertyWrapper<
ClipPathOperation
> {
390
PropertyWrapperClipPath(CSSPropertyID prop,
ClipPathOperation
* (RenderStyle::*getter)() const, void (RenderStyle::*setter)(PassRefPtr<
ClipPathOperation
>))
391
: RefCountedPropertyWrapper<
ClipPathOperation
>(prop, getter, setter
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimatableValueFactory.cpp
408
if (
ClipPathOperation
* operation = style.clipPath())
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.cpp
[
all
...]
Completed in 70 milliseconds