OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:basicshape
(Results
1 - 15
of
15
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
BasicShapes.h
44
class
BasicShape
: public RefCounted<
BasicShape
> {
46
virtual ~
BasicShape
() { }
56
bool canBlend(const
BasicShape
*) const;
60
virtual PassRefPtr<
BasicShape
> blend(const
BasicShape
*, double) const = 0;
64
BasicShape
() { }
67
class BasicShapeRectangle : public
BasicShape
{
94
virtual PassRefPtr<
BasicShape
> blend(const
BasicShape
*, double) const OVERRIDE
[
all
...]
BasicShapes.cpp
39
bool
BasicShape
::canBlend(const
BasicShape
* other) const
46
if (type() ==
BasicShape
::BasicShapePolygonType
70
PassRefPtr<
BasicShape
> BasicShapeRectangle::blend(const
BasicShape
* other, double progress) const
100
PassRefPtr<
BasicShape
> BasicShapeCircle::blend(const
BasicShape
* other, double progress) const
127
PassRefPtr<
BasicShape
> BasicShapeEllipse::blend(const
BasicShape
* other, double progress) const
158
PassRefPtr<
BasicShape
> BasicShapePolygon::blend(const BasicShape* other, double progress) cons
[
all
...]
ShapeValue.h
51
static PassRefPtr<ShapeValue> createShapeValue(PassRefPtr<
BasicShape
> shape)
72
BasicShape
* shape() const { return m_shape.get(); }
88
ShapeValue(PassRefPtr<
BasicShape
> shape)
113
RefPtr<
BasicShape
> m_shape;
/external/chromium_org/third_party/WebKit/Source/core/css/
BasicShapeFunctions.cpp
42
PassRefPtr<CSSValue> valueForBasicShape(const RenderStyle& style, const
BasicShape
*
basicShape
)
47
switch (
basicShape
->type()) {
48
case
BasicShape
::BasicShapeRectangleType: {
49
const BasicShapeRectangle* rectangle = static_cast<const BasicShapeRectangle*>(
basicShape
);
62
case
BasicShape
::BasicShapeCircleType: {
63
const BasicShapeCircle* circle = static_cast<const BasicShapeCircle*>(
basicShape
);
73
case
BasicShape
::BasicShapeEllipseType: {
74
const BasicShapeEllipse* ellipse = static_cast<const BasicShapeEllipse*>(
basicShape
);
85
case
BasicShape
::BasicShapePolygonType:
[
all
...]
BasicShapeFunctions.h
37
class
BasicShape
;
43
PassRefPtr<CSSValue> valueForBasicShape(const RenderStyle&, const
BasicShape
*);
44
PassRefPtr<
BasicShape
> basicShapeForValue(const StyleResolverState&, const CSSBasicShape*);
CSSComputedStyleDeclaration.cpp
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableClipPathOperation.cpp
43
const
BasicShape
* fromShape = toShapeClipPathOperation(clipPathOperation())->
basicShape
();
44
const
BasicShape
* toShape = toShapeClipPathOperation(toOperation->clipPathOperation())->
basicShape
();
AnimatableShapeValue.cpp
43
const
BasicShape
* fromShape = this->m_shape->shape();
44
const
BasicShape
* toShape = shapeValue->m_shape->shape();
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
Shape.cpp
113
PassOwnPtr<Shape> Shape::createShape(const
BasicShape
*
basicShape
, const LayoutSize& logicalBoxSize, WritingMode writingMode, Length margin, Length padding)
115
ASSERT(
basicShape
);
122
switch (
basicShape
->type()) {
124
case
BasicShape
::BasicShapeRectangleType: {
125
const BasicShapeRectangle* rectangle = static_cast<const BasicShapeRectangle*>(
basicShape
);
141
case
BasicShape
::BasicShapeCircleType: {
142
const BasicShapeCircle* circle = static_cast<const BasicShapeCircle*>(
basicShape
);
156
case
BasicShape
::BasicShapeEllipseType: {
157
const BasicShapeEllipse* ellipse = static_cast<const BasicShapeEllipse*>(
basicShape
);
[
all
...]
Shape.h
56
// A representation of a
BasicShape
that enables layout code to determine how to break a line up into segments
58
// computed segments are returned as pairs of logical X coordinates. The
BasicShape
itself is defined in
63
static PassOwnPtr<Shape> createShape(const
BasicShape
*, const LayoutSize& logicalBoxSize, WritingMode, Length margin, Length padding);
ShapeInsideInfo.cpp
52
return shapeValue->shape() && shapeValue->shape()->type() !=
BasicShape
::BasicShapeInsetRectangleType;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
ClipPathOperation.h
97
static PassRefPtr<ShapeClipPathOperation> create(PassRefPtr<
BasicShape
> shape)
102
const
BasicShape
*
basicShape
() const { return m_shape.get(); }
119
ShapeClipPathOperation(PassRefPtr<
BasicShape
> shape)
125
RefPtr<
BasicShape
> m_shape;
RenderBlock.h
41
class
BasicShape
;
[
all
...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jai.jar
/external/chromium_org/third_party/WebKit/Source/core/frame/animation/
CSSPropertyAnimation.cpp
121
const
BasicShape
* fromShape = toShapeClipPathOperation(from)->
basicShape
();
122
const
BasicShape
* toShape = toShapeClipPathOperation(to)->
basicShape
();
132
// FIXME Bug 102723: Shape-inside should be able to animate a value of 'outside-shape' when shape-outside is set to a
BasicShape
136
const
BasicShape
* fromShape = from->shape();
137
const
BasicShape
* toShape = to->shape();
[
all
...]
Completed in 296 milliseconds