Searched defs:FloatSize (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/geometry/cg/
H A DFloatSizeCG.cpp28 #include "platform/geometry/FloatSize.h"
34 FloatSize::FloatSize(const CGSize& s) : m_width(s.width), m_height(s.height) function in class:WebCore::FloatSize
38 FloatSize::operator CGSize() const
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatSize.cpp28 #include "platform/geometry/FloatSize.h"
40 FloatSize::FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height()) function in class:WebCore::FloatSize
44 FloatSize::FloatSize(const LayoutSize& size) : m_width(size.width()), m_height(size.height()) function in class:WebCore::FloatSize
48 float FloatSize::diagonalLength() const
53 bool FloatSize::isZero() const
58 bool FloatSize::isExpressibleAsIntSize() const
63 FloatSize FloatSize
[all...]
H A DFloatSize.h50 class PLATFORM_EXPORT FloatSize { class in namespace:WebCore
52 FloatSize() : m_width(0), m_height(0) { } function in class:WebCore::FloatSize
53 FloatSize(float width, float height) : m_width(width), m_height(height) { } function in class:WebCore::FloatSize
54 FloatSize(const IntSize&);
55 FloatSize(const LayoutSize&);
57 static FloatSize narrowPrecision(double width, double height);
85 FloatSize expandedTo(const FloatSize& other) const
87 return FloatSize(m_width > other.m_width ? m_width : other.m_width,
91 FloatSize shrunkT
[all...]
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFloatSize.h39 #include "platform/geometry/FloatSize.h"
67 WebFloatSize(const WebCore::FloatSize& s)
73 WebFloatSize& operator=(const WebCore::FloatSize& s)
80 operator WebCore::FloatSize() const
82 return WebCore::FloatSize(width, height);
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollAnimator.cpp63 notifyPositionChanged(orientation == HorizontalScrollbar ? FloatSize(delta, 0) : FloatSize(0, delta));
70 FloatSize delta = FloatSize(offset.x() - m_currentPosX, offset.y() - m_currentPosY);
138 void ScrollAnimator::notifyPositionChanged(const FloatSize&) argument
H A DScrollAnimator.h36 #include "platform/geometry/FloatSize.h"
100 virtual void notifyContentAreaScrolled(const FloatSize&) { } argument
107 virtual void notifyPositionChanged(const FloatSize& delta);
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/
H A DAnimationTranslationUtil.cpp32 #include "platform/geometry/FloatSize.h"
60 void toWebTransformOperations(const TransformOperations& transformOperations, const FloatSize& boxSize, WebTransformOperations* webTransformOperations)
132 bool appendKeyframeWithStandardTimingFunction(Curve* curve, double keyTime, const Value* value, const Value* lastValue, blink::WebAnimationCurve::TimingFunctionType timingFunctionType, const FloatSize&) argument
139 bool appendKeyframeWithCustomBezierTimingFunction(Curve* curve, double keyTime, const Value* value, const Value* lastValue, double x1, double y1, double x2, double y2, const FloatSize&) argument
146 bool appendKeyframeWithStandardTimingFunction<TransformAnimationValue, WebTransformKeyframe, WebTransformAnimationCurve>(WebTransformAnimationCurve* curve, double keyTime, const TransformAnimationValue* value, const TransformAnimationValue* lastValue, blink::WebAnimationCurve::TimingFunctionType timingFunctionType, const FloatSize& boxSize)
168 bool appendKeyframeWithCustomBezierTimingFunction<TransformAnimationValue, WebTransformKeyframe, WebTransformAnimationCurve>(WebTransformAnimationCurve* curve, double keyTime, const TransformAnimationValue* value, const TransformAnimationValue* lastValue, double x1, double y1, double x2, double y2, const FloatSize& boxSize)
193 builder.setCropOffset(FloatSize(outsets.left(), outsets.top()));
198 bool appendKeyframeWithStandardTimingFunction<FilterAnimationValue, WebFilterKeyframe, WebFilterAnimationCurve>(WebFilterAnimationCurve* curve, double keyTime, const FilterAnimationValue* value, const FilterAnimationValue* lastValue, blink::WebAnimationCurve::TimingFunctionType timingFunctionType, const FloatSize& boxSize)
214 bool appendKeyframeWithCustomBezierTimingFunction<FilterAnimationValue, WebFilterKeyframe, WebFilterAnimationCurve>(WebFilterAnimationCurve* curve, double keyTime, const FilterAnimationValue* value, const FilterAnimationValue* lastValue, double x1, double y1, double x2, double y2, const FloatSize& boxSize)
231 PassOwnPtr<blink::WebAnimation> createWebAnimation(const KeyframeValueList& valueList, const CSSAnimationData* animation, int animationId, double timeOffset, Curve* curve, blink::WebAnimation::TargetProperty targetProperty, const FloatSize
[all...]

Completed in 163 milliseconds