Home
last modified time | relevance | path

Searched defs:BaseRect (Results 1 – 1 of 1) sorted by relevance

/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo.hpp75122 struct BaseRect { struct
75123 T x, y, width, height;
75126 BaseRect() : x(0), y(0), width(0), height(0) {} in BaseRect() function
75127 BaseRect(const Point& aOrigin, const SizeT &aSize) : in BaseRect() function
75131 BaseRect(T aX, T aY, T aWidth, T aHeight) : in BaseRect() argument
75138 bool IsEmpty() const { return height <= 0 || width <= 0; } in IsEmpty()
75139 void SetEmpty() { width = height = 0; } in SetEmpty()
75142 bool IsFinite() const in IsFinite()
75154 bool Contains(const Sub& aRect) const in Contains()
75163 bool Contains(T aX, T aY) const in Contains()
[all …]