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

  /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...]
  /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) {
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 796 milliseconds