HomeSort by relevance Sort by last modified time
    Searched full:region (Results 1 - 25 of 2490) 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 35 class Region : public LightFlattenable<Region>
38 Region();
39 Region(const Region& rhs);
40 explicit Region(const Rect& rhs);
41 ~Region();
43 static Region createTJunctionFreeRegion(const Region& r);
45 Region& operator = (const Region& rhs)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Region.java 23 public class Region implements Parcelable {
27 private static final SynchronizedPool<Region> sPool =
28 new SynchronizedPool<Region>(MAX_POOL_SIZE);
54 /** Create an empty region
56 public Region() {
60 /** Return a copy of the specified region
62 public Region(Region region) {
64 nativeSetRegion(mNativeRegion, region.mNativeRegion)
308 Region region = sPool.acquire(); local
320 Region region = obtain(); local
    [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
  /external/clang/test/Lexer/
pragma-region.c 1 /* Test pragma region directive from
6 // #pragma region optional name
11 #pragma region
15 #pragma region long name
22 __pragma(region) // no sense, but ignored
23 _Pragma("region")// ditto
27 #pragma region one
28 #pragma region inner
33 // {{unclosed pragma region}} - region mismatches is not detected ye
    [all...]
  /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...]
  /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/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.
61 /// This is the entry basic block that starts this region node. If this is a
68 /// The node can hold either a Region or a BasicBlock.
73 /// @brief The parent Region of this RegionNode.
75 Region* parent;
86 inline RegionNode(Region* Parent, BasicBlock* Entry, bool isSubRegion = 0)
89 /// @brief Get the parent Region of this RegionNode
    [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/skia/legacy/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/llvm/lib/Analysis/
RegionInfo.cpp 1 //===- RegionInfo.cpp - SESE region detection analysis --------------------===//
21 #define DEBUG_TYPE "region"
37 VerifyRegionInfoX("verify-region-info", cl::location(VerifyRegionInfo),
38 cl::desc("Verify region info (time consuming)"));
43 static cl::opt<enum Region::PrintStyle> printStyle("print-region-style",
47 clEnumValN(Region::PrintNone, "none", "print no details"),
48 clEnumValN(Region::PrintBB, "bb",
50 clEnumValN(Region::PrintRN, "rn",
54 /// Region Implementatio
    [all...]
  /frameworks/native/libs/ui/
Region.cpp 17 #define LOG_TAG "Region"
26 #include <ui/Region.h>
57 Region::Region() {
61 Region::Region(const Region& rhs)
69 Region::Region(const Rect& rhs) {
73 Region::~Region(
    [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/'
  /packages/apps/Mms/src/com/android/mms/model/
RegionMediaModel.java 30 RegionModel region) throws MmsException {
31 this(context, tag, null, null, uri, region);
35 String src, Uri uri, RegionModel region) throws MmsException {
37 mRegion = region;
41 String src, byte[] data, RegionModel region) {
43 mRegion = region;
50 public void setRegion(RegionModel region) {
51 mRegion = region;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
Locale.java 29 /** A language,region pair */
31 /** A special marker region qualifier representing any region */
37 /** A locale which matches any language and region */
44 /** The language qualifier, or {@link #ANY_REGION} if this locale matches any region */
46 public final RegionQualifier region; field in class:Locale
52 * @param region the region
54 private Locale(@NonNull LanguageQualifier language, @NonNull RegionQualifier region) {
58 if (region.getValue().equals(FAKE_REGION_VALUE))
    [all...]
  /external/openfst/src/lib/
mapped-file.cc 30 MappedFile::MappedFile(const MemoryRegion &region) : region_(region) { }
37 LOG(ERROR) << "failed to unmap region: "<< strerror(errno);
46 MemoryRegion region; local
47 region.data = size == 0 ? NULL : operator new(size);
48 region.mmap = NULL;
49 region.size = size;
50 return new MappedFile(region);
54 MemoryRegion region; local
55 region.data = data
75 MemoryRegion region; local
    [all...]
  /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...]
  /frameworks/compile/mclinker/unittests/
MemoryAreaTest.cpp 55 MemoryRegion* region = area->request(3, 2); local
56 ASSERT_EQ('L', region->getBuffer()[0]);
57 ASSERT_EQ('O', region->getBuffer()[1]);
58 area->release(region);
71 MemoryRegion* region = area->request(3, 4); local
72 region->getBuffer()[0] = 'L';
73 region->getBuffer()[1] = 'i';
74 region->getBuffer()[2] = 'n';
75 region->getBuffer()[3] = 'k';
76 area->release(region);
99 MemoryRegion* region = area->request(0, 4096); local
115 MemoryRegion* region = area->request(0, 4096) ; local
    [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...]
  /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/ceres-solver/internal/ceres/
trust_region_strategy.cc 17 LOG(FATAL) << "Unknown trust region strategy: "
21 LOG(FATAL) << "Unknown trust region strategy: "

Completed in 1463 milliseconds

1 2 3 4 5 6 7 8 91011>>