/external/webkit/Source/WebCore/css/ |
DashboardSupportCSSPropertyNames.in | 1 -webkit-dashboard-region
|
/frameworks/base/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; 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...] |
/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/base/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;
|
/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 | 41 static void Region_destructor(JNIEnv* env, jobject, SkRegion* region) { 42 SkASSERT(region); 43 delete region; 61 static jboolean Region_getBounds(JNIEnv* env, jobject, SkRegion* region, jobject rectBounds) { 62 GraphicsJNI::irect_to_jrect(region->getBounds(), env, rectBounds); 63 return !region->isEmpty(); 66 static jboolean Region_getBoundaryPath(JNIEnv* env, jobject, const SkRegion* region, SkPath* path) { 67 return region->getBoundaryPath(path); 77 static jboolean Region_op1(JNIEnv* env, jobject, SkRegion* dst, jobject rectObject, const SkRegion* region, int op) { 80 return dst->op(ir, *region, (SkRegion::Op)op) 177 SkRegion* region = new SkRegion; local [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) 64 Region::Region(const Rect& rhs) 69 Region::Region(const void* buffer [all...] |
/external/skia/include/core/ |
SkRegion.h | 26 class Region; 34 The SkRegion class encapsulates the geometric region used to specify 65 * Replace this region with the specified region, and return true if the 66 * resulting region is non-empty. 75 * Swap the contents of this and the specified region. This operation 80 /** Return true if this region is empty */ 83 /** Return true if this region is a single, non-empty rectangle */ 86 /** Return true if this region consists of more than 1 rectangular area */ 90 * 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/'
|
/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/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...] |
Region.cpp | 27 #include "Region.h" 29 // A region class based on the paper "Scanline Coherent Shape Algebra" 39 Region::Region() 43 Region::Region(const IntRect& rect) 49 Vector<IntRect> Region::rects() const 68 Region::Shape::Shape() 72 Region::Shape::Shape(const IntRect& rect) 80 void Region::Shape::appendSpan(int y [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>
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ |
AndroidXmlCharacterMatcher.java | 26 import org.eclipse.jface.text.Region; 65 IStructuredDocumentRegion region = doc.getRegionAtCharacterOffset(offset); local 66 if (region == null) { 70 ITextRegion subRegion = region.getRegionAtCharacterOffset(offset); 74 ITextRegionList subRegions = region.getRegions(); 86 (subRegion.getStart() + region.getStartOffset() == offset)) { 91 region = doc.getRegionAtCharacterOffset(offset); 92 if (region == null) { 95 subRegion = region.getRegionAtCharacterOffset(offset); 101 subRegions = region.getRegions() 149 IStructuredDocumentRegion region = doc.getRegionAtCharacterOffset(offset); local 201 IStructuredDocumentRegion region = doc.getRegionAtCharacterOffset(start); local [all...] |
/external/icu4c/stubdata/ |
icudt46l-default.txt | 419 region/res_index.res 420 region/pool.res 421 region/root.res 422 region/ar.res 423 region/bg.res 424 region/ca.res 425 region/cs.res 426 region/da.res 427 region/de.res 428 region/de_CH.re [all...] |
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Region_Delegate.java | 33 * Delegate implementing the native methods of android.graphics.Region 35 * Through the layoutlib_create tool, the original native methods of Region have been replaced 40 * it and the original Region class. 42 * This also serve as a base class for all Region delegate classes. 70 * to the given {@link Region.Op}. 80 if (regionOp == Region.Op.DIFFERENCE.nativeInt) { 91 } else if (regionOp == Region.Op.INTERSECT.nativeInt) { 102 } else if (regionOp == Region.Op.UNION.nativeInt) { 113 } else if (regionOp == Region.Op.XOR.nativeInt) { 124 } else if (regionOp == Region.Op.REVERSE_DIFFERENCE.nativeInt) 331 Region_Delegate region = sManager.getDelegate(native_region); local 351 Region_Delegate region = sManager.getDelegate(native_region); local 373 Region_Delegate region = sManager.getDelegate(native_dst); local 391 Region_Delegate region = sManager.getDelegate(native_dst); local 474 Region_Delegate region = sManager.getDelegate(native_region); local [all...] |