HomeSort by relevance Sort by last modified time
    Searched defs:FloatSize (Results 1 - 3 of 3) sorted by null

  /external/webkit/WebCore/platform/graphics/
FloatSize.cpp 28 #include "FloatSize.h"
35 FloatSize::FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height())
39 FloatSize FloatSize::narrowPrecision(double width, double height)
41 return FloatSize(narrowPrecisionToFloat(width), narrowPrecisionToFloat(height));
FloatSize.h 51 class FloatSize {
53 FloatSize() : m_width(0), m_height(0) { }
54 FloatSize(float width, float height) : m_width(width), m_height(height) { }
55 FloatSize(const IntSize&);
57 static FloatSize narrowPrecision(double width, double height);
67 FloatSize expandedTo(const FloatSize& other) const
69 return FloatSize(m_width > other.m_width ? m_width : other.m_width,
73 FloatSize shrunkTo(const FloatSize& other) cons
    [all...]
  /external/webkit/WebCore/platform/graphics/cg/
FloatSizeCG.cpp 28 #include "FloatSize.h"
36 FloatSize::FloatSize(const CGSize& s) : m_width(s.width), m_height(s.height)
40 FloatSize::operator CGSize() const

Completed in 34 milliseconds