OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SizeF
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/ui/gfx/
size_f.h
17
class GFX_EXPORT
SizeF
: public SizeBase<
SizeF
, float> {
19
SizeF
() : SizeBase<
SizeF
, float>(0, 0) {}
20
SizeF
(float width, float height) : SizeBase<
SizeF
, float>(width, height) {}
21
~
SizeF
() {}
34
inline bool operator==(const
SizeF
& lhs, const
SizeF
& rhs) {
38
inline bool operator!=(const
SizeF
& lhs, const SizeF& rhs)
[
all
...]
size.h
46
operator
SizeF
() const {
47
return
SizeF
(width(), height());
/external/chromium_org/third_party/WebKit/public/platform/
WebFloatSize.h
85
WebFloatSize(const gfx::
SizeF
& s)
97
WebFloatSize& operator=(const gfx::
SizeF
& s)
111
operator gfx::
SizeF
() const
113
return gfx::
SizeF
(std::max(0.f, width), std::max(0.f, height));
Completed in 30 milliseconds