/external/chromium_org/courgette/ |
region.h | 14 // A Region is a descriptor for a region of memory. It has a start address and 15 // a length measured in bytes. The Region object does not own the memory. 17 class Region { 19 // Default constructor: and empty region. 20 Region() : start_(NULL), length_(0) {} 23 Region(const void* start, size_t length) 28 // String constructor. Region is owned by the string, so the string should 29 // have a lifetime greater than the region. 30 explicit Region(const std::string& string [all...] |
/external/chromium_org/cc/base/ |
region.cc | 5 #include "cc/base/region.h" 10 Region::Region() { 13 Region::Region(const Region& region) 14 : skregion_(region.skregion_) { 17 Region::Region(gfx::Rect rect [all...] |
region.h | 23 class CC_EXPORT Region { 25 Region(); 26 Region(const Region& region); 27 Region(gfx::Rect rect); // NOLINT(runtime/explicit) 28 ~Region(); 30 const Region& operator=(gfx::Rect rect); 31 const Region& operator=(const Region& region) [all...] |
/external/llvm/include/llvm/Support/ |
FileOutputBuffer.h | 49 return (uint8_t*)Region->data(); 54 return (uint8_t*)Region->data() + Region->size(); 59 return Region->size(); 86 OwningPtr<llvm::sys::fs::mapped_file_region> Region;
|
/external/chromium_org/third_party/WebKit/Source/platform/geometry/ |
Region.h | 35 class PLATFORM_EXPORT Region { 37 Region(); 38 Region(const IntRect&); 46 void unite(const Region&); 47 void intersect(const Region&); 48 void subtract(const Region&); 52 // Returns true if the query region is a subset of this region. 53 bool contains(const Region&) const; 57 // Returns true if the query region intersects any part of this region [all...] |
Region.cpp | 27 #include "platform/geometry/Region.h" 31 // 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 bool Region::contains(const Region& region) cons [all...] |
/external/icu4c/i18n/unicode/ |
region.h | 13 * \brief C++ API: Region classes (territory containment) 29 * Type representing the unknown region. 66 * Type representing a region whose code has been deprecated, usually 91 * <code>Region</code> is the class representing a Unicode Region Code, also known as a 92 * Unicode Region Subtag, which is defined based upon the BCP 47 standard. We often think of 93 * "regions" as "countries" when defining the characteristics of a locale. Region codes There are different 94 * types of region codes that are important to distinguish. 96 * Macroregion - A code for a "macro geographical (continental) region, geographical sub-region, or [all...] |
/frameworks/compile/mclinker/include/mcld/Fragment/ |
Fragment.h | 35 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/tests/HwAccelerationTest/src/com/android/test/hwui/ |
ClipRegion2Activity.java | 22 import android.graphics.Region; 51 private Region mRegion = new Region(); 74 Region.Op.DIFFERENCE);
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
memory_region_map.h | 56 // For each memory region, we keep track of (and provide to users) 57 // the stack trace that allocated that memory region. 121 // A memory region that we know about through malloc_hook-s. 124 struct Region { 125 uintptr_t start_addr; // region start address 126 uintptr_t end_addr; // region end address 130 bool is_stack; // does this region contain a thread's stack: 135 // of this region's allocation function, 145 // Return true iff this region overlaps region x [all...] |
/frameworks/av/media/libeffects/lvm/lib/Reverb/lib/ |
LVREV.h | 93 /* Memory table containing the region definitions */ 96 LVM_MemoryRegion_st Region[LVREV_NR_MEMORY_REGIONS]; /* One definition for each region */ 191 /* region base addresses in the memory table before calling this function. */
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
PagedViewIcon.java | 22 import android.graphics.Region; 128 getScrollY() + getHeight(), Region.Op.INTERSECT);
|
/external/icu4c/i18n/ |
region.cpp | 8 * File REGION.CPP 18 * \brief C++ API: Region classes (territory containment) 21 #include "unicode/region.h" 41 delete (icu::Region *)obj; 49 icu::Region::cleanupRegionData(); 73 * Initializes the region data from the ICU resource bundles. The region data 77 * If the region data has already loaded, then this method simply returns without doing 80 void Region::loadRegionData() { 144 Region *r = new Region() [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...] |
/art/compiler/sea_ir/ir/ |
sea.h | 42 class Region; 142 class Region : public SeaNode { 144 explicit Region(): 149 // Adds @instruction as an instruction node child in the current region. 151 // Returns the last instruction node child of the current region. 154 // Returns all the child instructions of this region, in program order. 165 // Returns the set of reaching definitions for the current region. 176 void SetIDominator(Region* dom) { 180 Region* GetIDominator() const { 184 void AddToIDominatedSet(Region* dominated) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
StyleRule.h | 52 Region = 16, 64 bool isRegionRule() const { return type() == Region; } 288 DEFINE_STYLE_RULE_TYPE_CASTS(Region);
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
memory_region_map.h | 57 // For each memory region, we keep track of (and provide to users) 58 // the stack trace that allocated that memory region. 133 // A memory region that we know about through malloc_hook-s. 136 struct Region { 137 uintptr_t start_addr; // region start address 138 uintptr_t end_addr; // region end address 142 bool is_stack; // does this region contain a thread's stack: 147 // of this region's allocation function, 157 // Return true iff this region overlaps region x [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/av/media/libeffects/lvm/lib/SpectrumAnalyzer/lib/ |
LVPSA.h | 89 /* Memory region definition */ 92 LVM_UINT32 Size; /* Region size in bytes */ 93 LVPSA_MemoryTypes_en Type; /* Region type */ 94 void *pBaseAddress; /* Pointer to the region base address */ 97 /* Memory table containing the region definitions */ 100 LVPSA_MemoryRegion_t Region[LVPSA_NR_MEMORY_REGIONS];/* One definition for each region */
|
/frameworks/av/media/libeffects/lvm/lib/StereoWidening/lib/ |
LVCS.h | 81 #define LVCS_MEMREGION_PERSISTENT_SLOW_DATA 0 /* Offset to the instance memory region */ 82 #define LVCS_MEMREGION_PERSISTENT_FAST_DATA 1 /* Offset to the persistent data memory region */ 83 #define LVCS_MEMREGION_PERSISTENT_FAST_COEF 2 /* Offset to the persistent coefficient memory region */ 84 #define LVCS_MEMREGION_TEMPORARY_FAST 3 /* Offset to temporary memory region */ 182 /* Memory region definition */ 185 LVM_UINT32 Size; /* Region size in bytes */ 186 LVCS_MemoryTypes_en Type; /* Region type */ 187 void *pBaseAddress; /* Pointer to the region base address */ 191 /* Memory table containing the region definitions */ 194 LVCS_MemoryRegion_t Region[LVCS_NR_MEMORY_REGIONS]; /* One definition for each region * [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...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
MacOSKeychainAPIChecker.cpp | 40 SymbolRef Region; 44 Region(R) {} 48 Region == X.Region); 53 ID.AddPointer(Region); 126 R->markInteresting(AP.second->Region); 131 /// region. 135 // The allocated region symbol tracked by the main analysis. 252 // Report deallocator mismatch. Remove the region from tracking - reporting a 298 if (!definitelyReturnedError(AS->Region, State, C.getSValBuilder())) [all...] |
/external/opencv/cvaux/src/ |
cvscanlines.cpp | [all...] |