Home | History | Annotate | Download | only in core

Lines Matching defs:fWidth

14     T fWidth;
19 s.fWidth = w;
25 fWidth = w;
29 /** Returns true iff fWidth == 0 && fHeight == 0
32 return 0 == fWidth && 0 == fHeight;
37 return fWidth <= 0 || fHeight <= 0;
42 fWidth = fHeight = 0;
45 T width() const { return fWidth; }
50 if (fWidth < 0) {
51 fWidth = 0;
59 return fWidth == w && fHeight == h;
65 return a.fWidth == b.fWidth && a.fHeight == b.fHeight;
80 s.fWidth = w;
87 this->set(SkIntToScalar(src.fWidth), SkIntToScalar(src.fHeight));
93 s.set(SkScalarRound(fWidth), SkScalarRound(fHeight));
99 s.set(SkScalarCeil(fWidth), SkScalarCeil(fHeight));
105 s.set(SkScalarFloor(fWidth), SkScalarFloor(fHeight));