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