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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/css/
DashboardSupportCSSPropertyNames.in 1 -webkit-dashboard-region
  /frameworks/native/include/ui/
Region.h 33 class Region
36 Region();
37 Region(const Region& rhs);
38 explicit Region(const Rect& rhs);
39 explicit Region(const void* buffer);
40 ~Region();
42 Region& operator = (const Region& rhs);
50 // the region becomes its bound
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Region.java 22 public class Region implements Parcelable {
47 /** Create an empty region
49 public Region() {
53 /** Return a copy of the specified region
55 public Region(Region region) {
57 nativeSetRegion(mNativeRegion, region.mNativeRegion);
60 /** Return a region set to the specified rectangle
62 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;
100 private Region mRegion;
115 // Test Region()
116 new Region();
118 // Test Region(Region)
119 Region oriRegion = new Region();
120 new Region(oriRegion);
122 // Test Region(Rect
    [all...]
RegionIteratorTest.java 20 import android.graphics.Region;
27 new RegionIterator(new Region());
31 Region region = new Region(); local
32 region.set(1, 1, 10, 10);
35 RegionIterator regionIterator = new RegionIterator(region);
53 region.set(1, 1, 10, 10);
55 region.op(rect, Region.Op.UNION)
    [all...]
  /external/llvm/include/llvm/Analysis/
RegionInfo.h 1 //===- RegionInfo.h - SESE region analysis ----------------------*- C++ -*-===//
38 class Region;
44 /// @brief Marker class to iterate over the elements of a Region in flat mode.
55 /// Region.
63 /// This is the entry basic block that starts this region node. If this is a
70 /// The node can hold either a Region or a BasicBlock.
75 /// @brief The parent Region of this RegionNode.
77 Region* parent;
88 inline RegionNode(Region* Parent, BasicBlock* Entry, bool isSubRegion = 0)
91 /// @brief Get the parent Region of this RegionNode
    [all...]
  /frameworks/native/libs/ui/tests/region/
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;
  /frameworks/native/libs/ui/
Region.cpp 17 #define LOG_TAG "Region"
25 #include <ui/Region.h>
51 Region::Region()
56 Region::Region(const Region& rhs)
64 Region::Region(const Rect& rhs)
69 Region::Region(const void* buffer
    [all...]
  /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...]
  /external/llvm/lib/Analysis/
RegionInfo.cpp 1 //===- RegionInfo.cpp - SESE region detection analysis --------------------===//
22 #define DEBUG_TYPE "region"
38 VerifyRegionInfoX("verify-region-info", cl::location(VerifyRegionInfo),
39 cl::desc("Verify region info (time consuming)"));
44 static cl::opt<enum Region::PrintStyle> printStyle("print-region-style",
48 clEnumValN(Region::PrintNone, "none", "print no details"),
49 clEnumValN(Region::PrintBB, "bb",
51 clEnumValN(Region::PrintRN, "rn",
55 /// Region Implementatio
    [all...]
  /frameworks/base/core/jni/android/graphics/
Region.cpp 42 static void Region_destructor(JNIEnv* env, jobject, SkRegion* region) {
43 SkASSERT(region);
44 delete region;
62 static jboolean Region_getBounds(JNIEnv* env, jobject, SkRegion* region, jobject rectBounds) {
63 GraphicsJNI::irect_to_jrect(region->getBounds(), env, rectBounds);
64 return !region->isEmpty();
67 static jboolean Region_getBoundaryPath(JNIEnv* env, jobject, const SkRegion* region, SkPath* path) {
68 return region->getBoundaryPath(path);
78 static jboolean Region_op1(JNIEnv* env, jobject, SkRegion* dst, jobject rectObject, const SkRegion* region, int op) {
81 return dst->op(ir, *region, (SkRegion::Op)op)
178 SkRegion* region = new SkRegion; local
    [all...]
  /external/skia/include/core/
SkRegion.h 19 class Region;
27 The SkRegion class encapsulates the geometric region used to specify
58 * Replace this region with the specified region, and return true if the
59 * resulting region is non-empty.
68 * Swap the contents of this and the specified region. This operation
73 /** Return true if this region is empty */
76 /** Return true if this region is a single, non-empty rectangle */
79 /** Return true if this region consists of more than 1 rectangular area */
83 * Return the bounds of this region. If the region is empty, returns a
    [all...]
  /external/libxslt/libxslt/
xsltlocale.c 84 const char *region = NULL; local
134 region = (char *)xsltDefaultRegion((xmlChar *)localeName);
135 if (region == NULL)
139 *q++ = region[0];
140 *q++ = region[1];
154 const xmlChar *region = NULL; local
178 region = xsltDefaultRegion(localeName);
179 if (region == NULL) goto end;
181 strcpy(localeName + llen + 1, region);
196 /* region should be xmlChar, but gcc warns on all string assignments *
197 const char *region = NULL; local
    [all...]
  /external/valgrind/main/memcheck/tests/
filter_addressable 5 perl -p -e 's/(Bad permissions for mapped region|Access not within mapped region|Non-existent physical address) at address 0x/Bad memory (SIGSEGV or SIGBUS) at address 0x/'
  /external/webkit/Source/WebKit2/Platform/
Region.h 36 class Region {
38 Region();
39 Region(const WebCore::IntRect&);
46 void unite(const Region&);
47 void intersect(const Region&);
48 void subtract(const Region&);
118 static inline Region intersect(const Region& a, const Region& b)
120 Region result(a)
    [all...]
  /external/e2fsprogs/e2fsck/
region.c 2 * region.c --- code which manages allocations within a region.
36 region_t region; local
38 region = malloc(sizeof(struct region_struct));
39 if (!region)
41 memset(region, 0, sizeof(struct region_struct));
42 region->min = min;
43 region->max = max;
44 return region;
47 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...]
  /cts/tests/tests/webkitsecurity/assets/
dashboard-regions-attr-crash.html 11 <br style="-webkit-dashboard-region: dashboard-region("a");">
12 <table style="-webkit-dashboard-region: attr("a");">
set-box-style-in-region-crash.html 8 #region { -webkit-flow-from: flow; }
10 @-webkit-region #region { span { background-color: red } };
40 <div id="region" class="regionBox2"></div>
  /external/webkit/Source/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/skia/include/images/
SkPageFlipper.h 19 two things to you: 1) the final inval region to be drawn into, and 2) the
20 region of pixels that should be copied from the "front" page onto the one
21 you're about to draw into. This copyBits region will be disjoint from the
22 inval region, so both need to be handled.
43 region is the invalidate are that needs to be drawn to. The copyBits
44 region (provided by the caller) is the area that should be copied from
46 inval region.
49 back inval region is ready to receive new inval calls.
  /packages/apps/Mms/src/com/android/mms/model/
RegionMediaModel.java 32 RegionModel region) throws MmsException {
33 this(context, tag, null, null, uri, region);
37 String src, Uri uri, RegionModel region) throws MmsException {
39 mRegion = region;
43 String src, byte[] data, RegionModel region) {
45 mRegion = region;
52 public void setRegion(RegionModel region) {
53 mRegion = region;
  /external/icu4c/stubdata/
icudt48l-default.txt 449 region/res_index.res
450 region/pool.res
451 region/root.res
452 region/af.res
453 region/am.res
454 region/ar.res
455 region/be.res
456 region/bg.res
457 region/ca.res
458 region/cs.re
    [all...]

Completed in 590 milliseconds

1 2 3 4 5 6 7 8 91011>>