HomeSort by relevance Sort by last modified time
    Searched defs:SimpleEnclosedRegion (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/cc/base/
simple_enclosed_region.cc 18 SimpleEnclosedRegion::SimpleEnclosedRegion(const Region& region) {
23 SimpleEnclosedRegion::~SimpleEnclosedRegion() {
26 void SimpleEnclosedRegion::Subtract(const gfx::Rect& sub_rect) {
72 void SimpleEnclosedRegion::Union(const gfx::Rect& new_rect) {
131 gfx::Rect SimpleEnclosedRegion::GetRect(size_t i) const {
simple_enclosed_region.h 17 // A constant-sized approximation of a Region. The SimpleEnclosedRegion may
20 class CC_EXPORT SimpleEnclosedRegion {
22 SimpleEnclosedRegion() : rect_() {}
23 SimpleEnclosedRegion(const SimpleEnclosedRegion& region)
25 explicit SimpleEnclosedRegion(const gfx::Rect& rect) : rect_(rect) {}
26 SimpleEnclosedRegion(int x, int y, int w, int h) : rect_(x, y, w, h) {}
27 SimpleEnclosedRegion(int w, int h) : rect_(w, h) {}
28 explicit SimpleEnclosedRegion(const Region& region);
29 ~SimpleEnclosedRegion();
    [all...]

Completed in 53 milliseconds