HomeSort by relevance Sort by last modified time
    Searched refs:Area (Results 1 - 25 of 27) sorted by null

1 2

  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Region_Delegate.java 29 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
77 * @return a new area or null.
79 public static Area combineShapes(Shape shape1, Shape shape2, int regionOp) {
86 // result is always a new area.
87 Area result = new Area(shape1)
    [all...]
Path_Delegate.java 30 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); local
183 if (area.isRectangular()) {
  /external/mksh/src/
lalloc.c 34 static ALLOC_ITEM *findptr(ALLOC_ITEM **, char *, Area *);
37 ainit(Area *ap)
39 /* area pointer is an ALLOC_ITEM, just the head of the list */
44 findptr(ALLOC_ITEM **lpp, char *ptr, Area *ap)
77 aresize2(void *ptr, size_t fac1, size_t fac2, Area *ap)
85 aresize(void *ptr, size_t numb, Area *ap)
104 /* this only works because Area is an ALLOC_ITEM */
112 afree(void *ptr, Area *ap)
126 afreeall(Area *ap)
sh.h 545 typedef struct lalloc Area;
548 EXTERN Area aperm; /* permanent object space */
550 #define ATEMP &e->area
569 Area area; /* temporary allocation area */ member in struct:env
933 Area *areap; /* area shf/buf were allocated in */
950 Area *areap; /* area to allocate entries *
1078 Area area; \/* area to allocate things *\/ member in struct:block
    [all...]
tree.c 33 static struct ioword **iocopy(struct ioword **, Area *);
34 static void iofree(struct ioword **, Area *);
477 tcopy(struct op *t, Area *ap)
534 wdcopy(const char *wp, Area *ap)
613 iocopy(struct ioword **iow, Area *ap)
646 tfree(struct op *t, Area *ap)
682 iofree(struct ioword **iow, Area *ap)
lex.c 1248 pushs(int type, Area *areap)
    [all...]
main.c 183 /* initialise permanent Area */
188 ainit(&env.area);
846 ainit(&ep->area);
941 afree(ep->savefd, &ep->area);
958 /* remove temp files and free ATEMP Area */
964 afreeall(&e->area);
1434 maketemp(Area *ap, Temp_type type, struct temp **tlist)
    [all...]
misc.c     [all...]
edit.c 793 static Area aedit;
794 #define AEDIT &aedit /* area for kill ring and macro defns */
909 static char *x_mapin(const char *, Area *)
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineLoopRanges.h 45 /// Loop area as measured by SlotIndex::distance.
46 unsigned Area;
63 /// getArea - Return the loop area. This number is approximately proportional
65 unsigned getArea() const { return Area; }
78 /// MachineLoopRange pointers by descending area, then by number.
  /frameworks/av/services/camera/libcameraservice/camera2/
Parameters.h 96 struct Area {
99 Area() {}
100 Area(int left, int top, int right, int bottom, int weight):
107 Vector<Area> focusingAreas;
113 Vector<Area> meteringAreas;
265 Vector<Area> *areas);
272 status_t validateAreas(const Vector<Area> &areas,
Parameters.cpp 651 focusingAreas.add(Parameters::Area(0,0,0,0,0));
705 meteringAreas.add(Parameters::Area(0, 0, 0, 0, 0));
2109 const char* area = areasStr.string() + areaStart; local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/analyzer/
MeteringTest.java 24 import android.hardware.Camera.Area;
40 * one metering area defined. The second one has tests with two metering areas
43 * be assigned to each area. For different tests, we use different ways to
60 /** The maximum number of metering area the device supports. */
63 private List<Camera.Area> mGreyAreas;
91 // Looks up how many metering area the device supports.
94 Log.v(TAG, String.format("Maximum number if metering area is %d", mMaxNumMeteringArea));
231 * when one metering area is added.
239 Log.v(TAG, "Running one area Test");
241 // Test case 1: Two images have the same metering area. Image 1 ha
555 Camera.Area area = new Camera.Area(areaRect, weight); local
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
FocusManager.java 27 import android.hardware.Camera.Area;
42 // This also handles the metering area because it is the same as focus area.
67 private List<Area> mFocusArea; // focus area in driver format
68 private List<Area> mMeteringArea; // metering area in driver format
261 mFocusArea = new ArrayList<Area>();
262 mFocusArea.add(new Area(new Rect(), 1));
263 mMeteringArea = new ArrayList<Area>();
    [all...]
  /external/llvm/lib/CodeGen/
MachineLoopRanges.cpp 60 : Loop(loop), Intervals(alloc), Area(0) {
66 Area += Range.first.distance(Range.second);
97 /// 1. Descending area.
  /external/mdnsresponder/mDNSShared/
dnsextd.conf 10 // dynamic zone that will be accepting Wide-Area Bonjour DNS updates.
  /frameworks/base/core/java/android/hardware/
Camera.java 2095 Area area = areas.get(i); local
3731 Area area = result.get(0); local
    [all...]
  /packages/apps/Camera/src/com/android/camera/
FocusOverlayManager.java 23 import android.hardware.Camera.Area;
39 * This also handles the metering area because it is the same as focus area.
53 * (8) The camera has autofocus and supports focus area. Touch the screen to
55 * (9) The camera has autofocus and supports focus area. Touch the screen to
57 * (10) The camera has no autofocus and supports metering area. Touch the screen
58 * to change metering area.
88 private List<Object> mFocusArea; // focus area in driver format
89 private List<Object> mMeteringArea; // metering area in driver format
317 mFocusArea.add(new Area(new Rect(), 1))
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
GcSnapshot.java 40 import java.awt.geom.Area;
70 private Area mClip = null;
495 Area area = null; local
498 area = new Area(shape);
500 area = Region_Delegate.combineShapes(getClip(), shape, regionOp);
503 assert area != null;
506 if (area != null) {
508 layer.setClip(area);
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/
CameraTest.java 23 import android.hardware.Camera.Area;
    [all...]
  /sdk/draw9patch/src/com/android/draw9patch/ui/
ImageEditorPanel.java 63 import java.awt.geom.Area;
    [all...]
  /external/blktrace/doc/
blktrace.tex 49 \subsection{blktrace Download Area}
    [all...]
  /external/qemu-pc-bios/vgabios/
vgabios.c 447 * Boot time bios area inits
455 ;; init detected hardware BIOS Area
    [all...]
  /cts/suite/pts/hostTests/browser/browserlauncher/assets/octane/
pdfjs.js     [all...]
  /prebuilts/sdk/14/
android.jar 

Completed in 572 milliseconds

1 2