OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FloatSize
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/geometry/cg/
FloatSizeCG.cpp
28
#include "platform/geometry/
FloatSize
.h"
34
FloatSize
::
FloatSize
(const CGSize& s) : m_width(s.width), m_height(s.height)
38
FloatSize
::operator CGSize() const
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatSize.cpp
28
#include "platform/geometry/
FloatSize
.h"
40
FloatSize
::
FloatSize
(const IntSize& size) : m_width(size.width()), m_height(size.height())
44
FloatSize
::
FloatSize
(const LayoutSize& size) : m_width(size.width()), m_height(size.height())
48
float
FloatSize
::diagonalLength() const
53
bool
FloatSize
::isZero() const
58
bool
FloatSize
::isExpressibleAsIntSize() const
63
FloatSize
FloatSize
::narrowPrecision(double width, double height
[
all
...]
FloatSize.h
50
class PLATFORM_EXPORT
FloatSize
{
52
FloatSize
() : m_width(0), m_height(0) { }
53
FloatSize
(float width, float height) : m_width(width), m_height(height) { }
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
shrunkTo(const FloatSize& other) cons
[
all
...]
/external/chromium_org/third_party/WebKit/public/platform/
WebFloatSize.h
39
#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);
Completed in 35 milliseconds