Searched defs:FX_RECT (Results 1 - 1 of 1) sorted by relevance

/external/pdfium/core/fxcrt/
H A Dfx_coordinates.h181 struct FX_RECT { struct
182 FX_RECT() : left(0), top(0), right(0), bottom(0) {} function in struct:FX_RECT
183 FX_RECT(int l, int t, int r, int b) : left(l), top(t), right(r), bottom(b) {} function in struct:FX_RECT
199 void Intersect(const FX_RECT& src);
200 void Intersect(int l, int t, int r, int b) { Intersect(FX_RECT(l, t, r, b)); }
209 bool operator==(const FX_RECT& src) const {
234 explicit CFX_FloatRect(const FX_RECT& rect);
254 FX_RECT GetInnerRect() const;
258 FX_RECT GetOuterRect() const;
262 FX_RECT GetClosestRec
[all...]

Completed in 103 milliseconds