Home | History | Annotate | Download | only in wm

Lines Matching refs:region

20 import android.graphics.Region;
25 * region can be updated separately.
30 /** Update the specified region with provided position and size. */
33 // A region became empty - remove it.
38 Rect region = mTapExcludeRects.get(regionId);
39 if (region == null) {
40 region = new Rect();
42 region.set(left, top, left + width, top + height);
43 mTapExcludeRects.put(regionId, region);
47 * Union the provided region with current region formed by this container.
49 void amendRegion(Region region, Rect boundingRegion) {
53 region.union(rect);