HomeSort by relevance Sort by last modified time
    Searched refs:m_y (Results 26 - 50 of 77) sorted by null

12 3 4

  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
LayoutPoint.h 43 LayoutPoint(LayoutUnit x, LayoutUnit y) : m_x(x), m_y(y) { }
44 LayoutPoint(const IntPoint& point) : m_x(point.x()), m_y(point.y()) { }
45 explicit LayoutPoint(const FloatPoint& size) : m_x(size.x()), m_y(size.y()) { }
46 explicit LayoutPoint(const LayoutSize& size) : m_x(size.width()), m_y(size.height()) { }
51 LayoutUnit y() const { return m_y; }
54 void setY(LayoutUnit y) { m_y = y; }
58 void move(LayoutUnit dx, LayoutUnit dy) { m_x += dx; m_y += dy; }
62 m_y *= sy;
67 return LayoutPoint(std::max(m_x, other.m_x), std::max(m_y, other.m_y));
86 LayoutUnit m_x, m_y; member in class:WebCore::LayoutPoint
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGCursorElement.h 49 SVGAnimatedLength* y() const { return m_y.get(); }
65 RefPtr<SVGAnimatedLength> m_y; member in class:WebCore::FINAL
SVGForeignObjectElement.h 36 SVGAnimatedLength* y() const { return m_y.get(); }
55 RefPtr<SVGAnimatedLength> m_y; member in class:WebCore::FINAL
SVGRectElement.h 36 SVGAnimatedLength* y() const { return m_y.get(); }
54 RefPtr<SVGAnimatedLength> m_y; member in class:WebCore::FINAL
SVGTextPositioningElement.h 36 SVGAnimatedLengthList* y() { return m_y.get(); }
50 RefPtr<SVGAnimatedLengthList> m_y; member in class:WebCore::SVGTextPositioningElement
SVGFELightElement.h 45 SVGAnimatedNumber* y() { return m_y.get(); }
46 const SVGAnimatedNumber* y() const { return m_y.get(); }
74 RefPtr<SVGAnimatedNumber> m_y; member in class:WebCore::SVGFELightElement
SVGGlyphRefElement.cpp 35 , m_y(0)
63 parseNumber(ptr, end, m_y);
105 m_y = y;
PatternAttributes.h 34 , m_y(SVGLength::create(LengthModeHeight))
56 SVGLength* y() const { return m_y.get(); }
74 m_y = value;
140 RefPtr<SVGLength> m_y; member in struct:WebCore::PatternAttributes
SVGFilterElement.h 49 SVGAnimatedLength* y() const { return m_y.get(); }
72 RefPtr<SVGAnimatedLength> m_y; member in class:WebCore::FINAL
SVGFilterPrimitiveStandardAttributes.h 47 SVGAnimatedLength* y() const { return m_y.get(); }
75 RefPtr<SVGAnimatedLength> m_y; member in class:WebCore::SVGFilterPrimitiveStandardAttributes
SVGImageElement.h 43 SVGAnimatedLength* y() const { return m_y.get(); }
73 RefPtr<SVGAnimatedLength> m_y; member in class:WebCore::FINAL
SVGMaskElement.h 39 SVGAnimatedLength* y() const { return m_y.get(); }
61 RefPtr<SVGAnimatedLength> m_y; member in class:WebCore::FINAL
SVGPatternElement.h 51 SVGAnimatedLength* y() const { return m_y.get(); }
77 RefPtr<SVGAnimatedLength> m_y; member in class:WebCore::FINAL
SVGMaskElement.cpp 36 , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths))
46 m_y->setDefaultValueAsString("-10%");
53 addToPropertyMap(m_y);
90 m_y->setBaseValueAsString(value, parseError);
141 || m_y->currentValue()->isRelative()
SVGCursorElement.cpp 36 , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths))
41 addToPropertyMap(m_y);
77 m_y->setBaseValueAsString(value, parseError);
SVGTextPositioningElement.cpp 36 , m_y(SVGAnimatedLengthList::create(this, SVGNames::yAttr, SVGLengthList::create(LengthModeHeight)))
42 addToPropertyMap(m_y);
73 m_y->setBaseValueAsString(value, parseError);
SVGFilterPrimitiveStandardAttributes.cpp 36 , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths))
43 m_y->setDefaultValueAsString("0%");
50 addToPropertyMap(m_y);
78 m_y->setBaseValueAsString(value, parseError);
SVGForeignObjectElement.cpp 36 , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths))
43 addToPropertyMap(m_y);
73 m_y->setBaseValueAsString(value, parseError);
160 || m_y->currentValue()->isRelative()
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
RotateTransformOperation.cpp 91 return RotateTransformOperation::create(m_x, m_y, m_z, m_angle - m_angle * progress, m_type);
96 if (!fromOp || (fromOp->m_x == 0 && fromOp->m_y == 0 && fromOp->m_z == 1) ||
97 (fromOp->m_x == 0 && fromOp->m_y == 1 && fromOp->m_z == 0) ||
98 (fromOp->m_x == 1 && fromOp->m_y == 0 && fromOp->m_z == 0)) {
101 fromOp ? fromOp->m_y : m_y,
118 (fromOp ? fromOp->m_y : 0),
123 (toOp ? toOp->m_y : 0),
ScaleTransformOperation.cpp 36 WebCore::blend(m_y, 1.0, progress),
41 double fromY = fromOp ? fromOp->m_y : 1.0;
44 WebCore::blend(fromY, m_y, progress),
TranslateTransformOperation.cpp 34 return TranslateTransformOperation::create(zeroLength.blend(m_x, progress, ValueRangeAll), zeroLength.blend(m_y, progress, ValueRangeAll), WebCore::blend(0., m_z, progress), m_type);
38 Length fromY = fromOp ? fromOp->m_y : zeroLength;
40 return TranslateTransformOperation::create(m_x.blend(fromX, progress, ValueRangeAll), m_y.blend(fromY, progress, ValueRangeAll), WebCore::blend(fromZ, m_z, progress), m_type);
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableLengthPoint3D.h 46 const AnimatableValue* y() const { return m_y.get(); }
57 , m_y(y)
65 RefPtrWillBeMember<AnimatableValue> m_y; member in class:WebCore::FINAL
AnimatableLengthPoint.cpp 53 visitor->trace(m_y);
AnimatableLengthPoint3D.cpp 54 visitor->trace(m_y);
  /external/pdfium/core/src/fxge/agg/agg23/
agg_scanline_u.h 113 m_y = y;
122 return m_y;
143 int m_y; member in class:agg::scanline_u

Completed in 410 milliseconds

12 3 4