HomeSort by relevance Sort by last modified time
    Searched full:region (Results 1 - 25 of 916) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/css/
DashboardSupportCSSPropertyNames.in 1 -webkit-dashboard-region
  /frameworks/base/include/ui/
Region.h 35 class Region
38 Region();
39 Region(const Region& rhs);
40 explicit Region(const Rect& rhs);
41 explicit Region(const void* buffer);
42 ~Region();
44 Region& operator = (const Region& rhs);
52 // the region becomes its bound
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Region.java 22 public class Region implements Parcelable {
39 /** Create an empty region
41 public Region() {
45 /** Return a copy of the specified region
47 public Region(Region region) {
49 nativeSetRegion(mNativeRegion, region.mNativeRegion);
52 /** Return a region set to the specified rectangle
54 public Region(Rect r)
    [all...]
RegionIterator.java 22 * Construct an iterator for all of the rectangles in a region. This
23 * effectively makes a private copy of the region, so any subsequent edits
24 * to region will not affect the iterator.
26 * @param region the region that will be iterated
28 public RegionIterator(Region region) {
29 mNativeIter = nativeConstructor(region.ni());
33 * Return the next rectangle in the region. If there are no more rectangles
  /cts/tests/tests/graphics/src/android/graphics/cts/
RegionTest.java 21 import android.graphics.Region;
29 @TestTargetClass(Region.class)
105 private Region mRegion;
122 method = "Region",
127 method = "Region",
128 args = {android.graphics.Region.class}
132 method = "Region",
137 method = "Region",
142 // Test Region()
143 new Region();
    [all...]
RegionIteratorTest.java 20 import android.graphics.Region;
33 args = {android.graphics.Region.class}
36 new RegionIterator(new Region());
45 Region region = new Region(); local
46 region.set(1, 1, 10, 10);
49 RegionIterator regionIterator = new RegionIterator(region);
67 region.set(1, 1, 10, 10);
69 region.op(rect, Region.Op.UNION)
    [all...]
  /frameworks/base/libs/ui/tests/
Android.mk 5 region.cpp
12 LOCAL_MODULE:= test-region
region.cpp 17 #define LOG_TAG "Region"
22 #include <ui/Region.h>
28 Region empty;
29 Region reg0( Rect( 0, 0, 100, 100 ) );
30 Region reg1 = reg0;
31 Region reg2, reg3;
33 Region reg4 = empty | reg1;
34 Region reg5 = reg1 | empty;
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilRegionMediaElementImpl.java 36 NodeList regions = doc.getLayout().getElementsByTagName("region");
37 SMILRegionElement region = null; local
39 region = (SMILRegionElement)regions.item(i);
40 if (region.getId().equals(this.getAttribute("region"))) {
41 mRegion = region;
48 public void setRegion(SMILRegionElement region) {
49 this.setAttribute("region", region.getId());
50 mRegion = region;
    [all...]
  /frameworks/base/libs/ui/
Region.cpp 17 #define LOG_TAG "Region"
25 #include <ui/Region.h>
51 Region::Region()
56 Region::Region(const Region& rhs)
61 Region::Region(const Rect& rhs)
66 Region::Region(const void* buffer
    [all...]
  /frameworks/base/core/jni/android/graphics/
Region.cpp 19 static void Region_destructor(JNIEnv* env, jobject, SkRegion* region) {
20 SkASSERT(region);
21 delete region;
39 static jboolean Region_getBounds(JNIEnv* env, jobject, SkRegion* region, jobject rectBounds) {
40 GraphicsJNI::irect_to_jrect(region->getBounds(), env, rectBounds);
41 return !region->isEmpty();
44 static jboolean Region_getBoundaryPath(JNIEnv* env, jobject, const SkRegion* region, SkPath* path) {
45 return region->getBoundaryPath(path);
55 static jboolean Region_op1(JNIEnv* env, jobject, SkRegion* dst, jobject rectObject, const SkRegion* region, int op) {
58 return dst->op(ir, *region, (SkRegion::Op)op)
148 SkRegion* region = new SkRegion; local
    [all...]
  /external/skia/include/core/
SkRegion.h 26 class Region;
34 The SkRegion class encapsulates the geometric region used to specify
56 /** Replace this region with the specified region, and return true if the
57 resulting region is non-empty.
65 /** Swap the contents of this and the specified region. This operation
70 /** Return true if this region is empty */
72 /** Return true if this region is a single, non-empty rectangle */
74 /** Return true if this region consists of more than 1 rectangular area */
76 /** Return the bounds of this region. If the region is empty, returns a
    [all...]
  /packages/apps/Mms/src/com/android/mms/model/
RegionMediaModel.java 34 RegionModel region) throws MmsException {
35 this(context, tag, null, null, uri, region);
39 String src, Uri uri, RegionModel region) throws MmsException {
41 mRegion = region;
45 String src, byte[] data, RegionModel region) {
47 mRegion = region;
51 String src, DrmWrapper wrapper, RegionModel region)
54 mRegion = region;
61 public void setRegion(RegionModel region) {
62 mRegion = region;
    [all...]
  /external/e2fsprogs/e2fsck/
region.c 2 * region.c --- code which manages allocations within a region.
33 region_t region; local
35 region = malloc(sizeof(struct region_struct));
36 if (!region)
38 memset(region, 0, sizeof(struct region_struct));
39 region->min = min;
40 region->max = max;
41 return region;
44 void region_free(region_t region)
    [all...]
  /sdk/emulator/qtools/
trace_reader.h 42 region_type *region; member in struct:TraceReader::symbol_entry
96 // but grows if needed. There is a separate region for each mmap
98 // files. In addition, there is a region for the main executable
149 // within each region because the symbols are sometimes shared
152 // region symbols in its destructor. We need to free only the
153 // regions and the array of region pointers.
155 // Each region is also reference-counted. The count is zero
156 // if no other processes are sharing this region.
226 void AddPredefinedRegion(region_type *region, const char *path,
229 void InitRegionSymbols(region_type *region, int nsymbols)
301 region_type *region = ptr->value; local
390 region_type *region = ptr->value; local
401 region_type *region = ptr->value; local
496 region_type *region = new region_type; local
534 region_type *region = new region_type; local
958 region_type *region = manager->regions[index]; local
1150 region_type *region = FindRegion(addr, manager->nregions, manager->regions); local
1261 region_type *region; local
1461 region_type *region = FindRegion(addr, manager->nregions, manager->regions); local
    [all...]
  /external/webkit/WebCore/manual-tests/
drop-text-acquires-style.html 3 <title>Dragging plain text into a styled region</title>
6 <p>This test ensures the plain text dropped into a styled text region will acquire the appropriate style</p>
7 <p>To run this test, drag the text in the input element below into the bold text region. The dropped text should be bold.</p>
  /external/qemu/android/skin/
composer.h 16 #include "android/skin/region.h"
34 SkinRegion region[1]; /* the plate's region */ member in struct:SkinPlateAny
35 char isVisible; /* flag: TRUE iff the region is visible */
36 char isOpaque; /* flag: TRUE iff the region is opaque */
40 typedef void (*SkinPlateDrawFunc)( void* user, SkinRegion* region, SkinPos* apos, SkinViewport* viewport, int opaque );
74 SkinRegion* region,
84 extern void skin_plate_invalidate( SkinPlate* plate, SkinRegion* region );
composer.c 20 /* recompute region if needed */
29 skin_region_reset(p->any.region);
37 skin_region_union( p->any.region, r );
44 /* return region in 'region' */
46 skin_plate_get_region( SkinPlate* p, SkinRegion* region )
51 skin_region_init_copy( region, p->any.region );
55 /* recompute opaque region is needed */
78 /* return opaque pixels region */
    [all...]
  /external/skia/include/images/
SkPageFlipper.h 26 two things to you: 1) the final inval region to be drawn into, and 2) the
27 region of pixels that should be copied from the "front" page onto the one
28 you're about to draw into. This copyBits region will be disjoint from the
29 inval region, so both need to be handled.
50 region is the invalidate are that needs to be drawn to. The copyBits
51 region (provided by the caller) is the area that should be copied from
53 inval region.
56 back inval region is ready to receive new inval calls.
  /external/sonivox/arm-fm-22k/lib_src/
eas_fmsndlib.c 25 /* begin region data */
30 /* Region 0 */
39 /* Region 1 */
48 /* Region 2 */
57 /* Region 3 */
66 /* Region 4 */
75 /* Region 5 */
84 /* Region 6 */
93 /* Region 7 */
102 /* Region 8 *
    [all...]
  /external/opencore/extern_libs_v2/khronos/openmax/include/
OMX_IVCommon.h 150 OMX_COLOR_FormatKhronosExtensions = 0x6F000000, /**< Reserved region for introducing Khronos Standard Extensions */
151 OMX_COLOR_FormatVendorStartUnused = 0x7F000000, /**< Reserved region for introducing Vendor Extensions */
199 OMX_ImageFilterKhronosExtensions = 0x6F000000, /**< Reserved region for introducing Khronos Standard Extensions */
200 OMX_ImageFilterVendorStartUnused = 0x7F000000, /**< Reserved region for introducing Vendor Extensions */
285 OMX_ColorBlendKhronosExtensions = 0x6F000000, /**< Reserved region for introducing Khronos Standard Extensions */
286 OMX_ColorBlendVendorStartUnused = 0x7F000000, /**< Reserved region for introducing Vendor Extensions */
360 OMX_MirrorKhronosExtensions = 0x6F000000, /**< Reserved region for introducing Khronos Standard Extensions */
361 OMX_MirrorVendorStartUnused = 0x7F000000, /**< Reserved region for introducing Vendor Extensions */
477 OMX_WhiteBalControlKhronosExtensions = 0x6F000000, /**< Reserved region for introducing Khronos Standard Extensions */
478 OMX_WhiteBalControlVendorStartUnused = 0x7F000000, /**< Reserved region for introducing Vendor Extensions *
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
OMX_IVCommon.h 133 OMX_COLOR_FormatKhronosExtensions = 0x6F000000, /**< Reserved region for introducing Khronos Standard Extensions */
134 OMX_COLOR_FormatVendorStartUnused = 0x7F000000, /**< Reserved region for introducing Vendor Extensions */
182 OMX_ImageFilterKhronosExtensions = 0x6F000000, /**< Reserved region for introducing Khronos Standard Extensions */
183 OMX_ImageFilterVendorStartUnused = 0x7F000000, /**< Reserved region for introducing Vendor Extensions */
268 OMX_ColorBlendKhronosExtensions = 0x6F000000, /**< Reserved region for introducing Khronos Standard Extensions */
269 OMX_ColorBlendVendorStartUnused = 0x7F000000, /**< Reserved region for introducing Vendor Extensions */
343 OMX_MirrorKhronosExtensions = 0x6F000000, /**< Reserved region for introducing Khronos Standard Extensions */
344 OMX_MirrorVendorStartUnused = 0x7F000000, /**< Reserved region for introducing Vendor Extensions */
460 OMX_WhiteBalControlKhronosExtensions = 0x6F000000, /**< Reserved region for introducing Khronos Standard Extensions */
461 OMX_WhiteBalControlVendorStartUnused = 0x7F000000, /**< Reserved region for introducing Vendor Extensions */
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
PostalSplitterForJapaneseTest.java 48 private static final String REGION = "\u6771\u4EAC\u90FD";
83 assertJoinedPostal(POSTCODE + "\n" + REGION + " " + CITY + "\n" + STREET,
84 STREET, null, null, CITY, REGION, POSTCODE, null);
88 assertJoinedPostal(POSTCODE + "\n" + REGION + "\n" + STREET,
89 STREET, null, null, REGION, null, POSTCODE, null);
99 assertJoinedPostal(REGION + " " + CITY + "\n" + STREET,
100 STREET, null, null, CITY, REGION, null, null);
102 assertJoinedPostal(COUNTRY + "\n" + REGION + " " + CITY + "\n" + STREET,
103 STREET, null, null, CITY, REGION, null, COUNTRY);
115 String neighborhood, String city, String region, String postcode, String country)
    [all...]
  /frameworks/base/include/private/ui/
RegionHelper.h 49 struct region { struct in class:android::region_operator
54 inline region(const region& rhs) function in struct:android::region_operator::region
56 inline region(RECT const* r, size_t c) function in struct:android::region_operator::region
58 inline region(RECT const* r, size_t c, TYPE dx, TYPE dy) function in struct:android::region_operator::region
69 inline region_operator(int op, const region& lhs, const region& rhs)
156 region lhs;
157 region rhs;
160 inline Spanner(const region& lhs, const region& rhs
    [all...]
  /external/kernel-headers/original/linux/
android_pmem.h 32 /* Returns the total size of the pmem region it is sent to as a pmem_region
41 /* starting physical address of memory region */
43 /* size of memory region */
45 /* set to indicate the region should not be managed with an allocator */
47 /* set to indicate maps of this region should be cached, if a mix of
49 * O_SYNC to get an uncached region */
71 int pmem_remap(struct pmem_region *region, struct file *file,
88 static inline int pmem_remap(struct pmem_region *region, struct file *file,

Completed in 732 milliseconds

1 2 3 4 5 6 7 8 91011>>