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

  /external/chromium_org/ui/gfx/geometry/
size_f.h 18 class GFX_EXPORT SizeF : public SizeBase<SizeF, float> {
20 SizeF() : SizeBase<SizeF, float>(0, 0) {}
21 SizeF(float width, float height) : SizeBase<SizeF, float>(width, height) {}
22 ~SizeF() {}
35 inline bool operator==(const SizeF& lhs, const SizeF& rhs) {
39 inline bool operator!=(const SizeF& lhs, const SizeF& rhs)
    [all...]
size.h 47 operator SizeF() const {
48 return SizeF(width(), height());
  /frameworks/base/core/java/android/util/
SizeF.java 29 public final class SizeF {
31 * Create a new immutable SizeF instance.
42 public SizeF(final float width, final float height) {
82 if (obj instanceof SizeF) {
83 final SizeF other = (SizeF) obj;
100 throw new NumberFormatException("Invalid SizeF: \"" + s + "\"");
110 * For any {@code SizeF s}: {@code SizeF.parseSizeF(s.toString()).equals(s)}.
115 * "<i>width</i>{@code *}<i>height</i>" {@code => new SizeF(width, height)}
    [all...]
  /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));
  /external/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusTypes.h 89 class SizeF;
134 class SizeF
139 SizeF()
144 SizeF(IN const SizeF& size)
150 SizeF(IN REAL width,
157 SizeF operator+(IN const SizeF& sz) const
159 return SizeF(Width + sz.Width,
163 SizeF operator-(IN const SizeF& sz) const
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplustypes.h 85 typedef struct SizeF {
90 SizeF(): Width(0.0f), Height(0.0f) {}
91 SizeF(REAL width, REAL height): Width(width), Height(height) {}
92 SizeF(const SizeF& size): Width(size.Width), Height(size.Height) {}
97 BOOL Equals(const SizeF& size) const {
100 SizeF operator+(const SizeF& size) const {
101 return SizeF(Width + size.Width, Height + size.Height);
103 SizeF operator-(const SizeF& size) const
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d2d1helper.h 49 D2D1FORCEINLINE D2D1_SIZE_F SizeF(FLOAT width = 0.0f, FLOAT height = 0.0f) {

Completed in 921 milliseconds