Searched defs:FX_RECT (Results 1 – 1 of 1) sorted by relevance
/external/pdfium/core/fxcrt/ |
D | fx_coordinates.h | 181 struct FX_RECT { struct 182 FX_RECT() : left(0), top(0), right(0), bottom(0) {} in FX_RECT() argument 183 FX_RECT(int l, int t, int r, int b) : left(l), top(t), right(r), bottom(b) {} in FX_RECT() argument 199 void Intersect(const FX_RECT& src); argument 200 void Intersect(int l, int t, int r, int b) { Intersect(FX_RECT(l, t, r, b)); } in Intersect() argument 209 bool operator==(const FX_RECT& src) const { argument 234 explicit CFX_FloatRect(const FX_RECT& rect); argument
|