Searched refs:Area (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DRegion_Delegate.java29 import java.awt.geom.Area;
56 private Area mArea = new Area();
64 public Area getJavaArea() {
69 * Combines two {@link Shape} into another one (actually an {@link Area}), according
79 public static Area combineShapes(Shape shape1, Shape shape2, int regionOp) {
87 Area result = new Area(shape1);
88 result.subtract(shape2 instanceof Area ? (Area) shape
[all...]
H A DPath_Delegate.java30 import java.awt.geom.Area;
181 // create an Area that can test if the path is a rect
182 Area area = new Area(pathDelegate.mPath);
/frameworks/base/core/java/android/hardware/
H A DCamera.java1479 * <p>The Area class is used for choosing specific metering and focus areas for
1488 * <p>Each Area consists of a rectangle specifying its bounds, and a weight
1509 public static class Area { class in class:Camera
1516 public Area(Rect rect, int weight) { method in class:Camera.Area
1529 if (!(obj instanceof Area)) {
1532 Area a = (Area) obj;
2001 private void set(String key, List<Area> areas) {
2007 Area area = areas.get(i);
3292 public List<Area> getFocusArea
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DGcSnapshot.java40 import java.awt.geom.Area;
70 private Area mClip = null;
495 Area area = null;
498 area = new Area(shape);
518 mClip = new Area();

Completed in 61 milliseconds