Home | History | Annotate | Download | only in core

Lines Matching defs:fHeight

15     T fHeight;
20 s.fHeight = h;
26 fHeight = h;
29 /** Returns true iff fWidth == 0 && fHeight == 0
32 return 0 == fWidth && 0 == fHeight;
37 return fWidth <= 0 || fHeight <= 0;
42 fWidth = fHeight = 0;
46 T height() const { return fHeight; }
53 if (fHeight < 0) {
54 fHeight = 0;
59 return fWidth == w && fHeight == h;
65 return a.fWidth == b.fWidth && a.fHeight == b.fHeight;
81 s.fHeight = h;
87 this->set(SkIntToScalar(src.fWidth), SkIntToScalar(src.fHeight));
93 s.set(SkScalarRoundToInt(fWidth), SkScalarRoundToInt(fHeight));
99 s.set(SkScalarCeilToInt(fWidth), SkScalarCeilToInt(fHeight));
105 s.set(SkScalarFloorToInt(fWidth), SkScalarFloorToInt(fHeight));