/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 | 643 typedef struct lalloc Area; 646 EXTERN Area aperm; /* permanent object space */ 648 #define ATEMP &e->area 685 Area area; /* temporary allocation area */ member in struct:env 1061 Area *areap; /* area shf/buf were allocated in */ 1078 Area *areap; /* area to allocate entries * 1208 Area area; \/* area to allocate things *\/ member in struct:block [all...] |
tree.c | 34 static struct ioword **iocopy(struct ioword **, Area *); 35 static void iofree(struct ioword **, Area *); 506 tcopy(struct op *t, Area *ap) 563 wdcopy(const char *wp, Area *ap) 643 iocopy(struct ioword **iow, Area *ap) 676 tfree(struct op *t, Area *ap) 712 iofree(struct ioword **iow, Area *ap)
|
lex.c | 1231 pushs(int type, Area *areap) [all...] |
main.c | 212 /* initialise permanent Area */ 217 ainit(&env.area); 938 ainit(&ep->area); 1052 afree(ep->savefd, &ep->area); 1075 /* remove temp files and free ATEMP Area */ 1083 afreeall(&l->area); 1088 afreeall(&e->area); [all...] |
misc.c | [all...] |
edit.c | 862 static Area aedit; 863 #define AEDIT &aedit /* area for kill ring and macro defns */ 979 static char *x_mapin(const char *, Area *); [all...] |
/frameworks/av/services/camera/libcameraservice/api1/client2/ |
Parameters.h | 95 struct Area { 98 Area() {} 99 Area(int left, int top, int right, int bottom, int weight): 106 Vector<Area> focusingAreas; 117 Vector<Area> meteringAreas; 287 Vector<Area> *areas); 294 status_t validateAreas(const Vector<Area> &areas,
|
Parameters.cpp | 683 focusingAreas.add(Parameters::Area(0,0,0,0,0)); 735 meteringAreas.add(Parameters::Area(0, 0, 0, 0, 0)); 2370 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/mdnsresponder/mDNSShared/ |
dnsextd.conf | 10 // dynamic zone that will be accepting Wide-Area Bonjour DNS updates.
|
/frameworks/base/core/java/android/hardware/ |
Camera.java | 2277 Area area = areas.get(i); local 3916 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...] |
/packages/apps/Camera2/src/com/android/camera/ |
FocusOverlayManager.java | 23 import android.hardware.Camera.Area; 38 * This also handles the metering area because it is the same as focus area. 52 * (8) The camera has autofocus and supports focus area. Touch the screen to 54 * (9) The camera has autofocus and supports focus area. Touch the screen to 56 * (10) The camera has no autofocus and supports metering area. Touch the screen 57 * to change metering area. 82 private List<Object> mFocusArea; // focus area in driver format 83 private List<Object> mMeteringArea; // metering area in driver format 332 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...] |
/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...] |
/external/chromium_org/third_party/usb_ids/ |
usb.ids | [all...] |
/cts/suite/cts/deviceTests/browserbench/assets/octane/ |
pdfjs.js | [all...] |
/prebuilts/sdk/14/ |
android.jar | |
/prebuilts/sdk/15/ |
android.jar | |