Searched refs:Region (Results 1 - 25 of 177) sorted by relevance

12345678

/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Dregion.h13 * \brief C++ API: Region classes (territory containment)
30 * <code>Region</code> is the class representing a Unicode Region Code, also known as a
31 * Unicode Region Subtag, which is defined based upon the BCP 47 standard. We often think of
32 * "regions" as "countries" when defining the characteristics of a locale. Region codes There are different
44 * TERRITORY - A Region that is not a Macroregion. These are typically codes for countries, but also
50 * UNKNOWN - The code ZZ is defined by Unicode LDML for use to indicate that the Region is unknown,
53 * DEPRECATED - Region codes that have been defined in the past but are no longer in modern usage,
59 * their own region code. Region "EU" (European Union) is one such region code that is a grouping.
63 * The Region clas
69 class U_I18N_API Region : public UObject { class in inherits:UObject
[all...]
/external/chromium_org/cc/base/
H A Dregion.cc13 Region::Region() { function in class:cc::Region
16 Region::Region(const Region& region) function in class:cc::Region
20 Region::Region(const gfx::Rect& rect) function in class:cc::Region
24 Region::~Region() {
27 const Region
[all...]
H A Dregion.h26 class CC_EXPORT Region { class in namespace:cc
28 Region();
29 Region(const Region& region);
30 Region(const gfx::Rect& rect); // NOLINT(runtime/explicit)
31 ~Region();
33 const Region& operator=(const gfx::Rect& rect);
34 const Region& operator=(const Region& region);
36 void Swap(Region* regio
[all...]
H A Dinvalidation_region.h14 // This class behaves similarly to Region, but it may have false positives. That
22 void Swap(Region* region);
30 Region region_;
/external/chromium_org/courgette/
H A Dregion.h14 // 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 { class in namespace:courgette
20 Region() : start_(NULL), length_(0) {} function in class:courgette::Region
23 Region(const void* start, size_t length) function in class:courgette::Region
28 // String constructor. Region is owned by the string, so the string should
30 explicit Region(const std::string& string) function in class:courgette::Region
36 Region(const Region& other) : start_(other.start_), length_(other.length_) {} function in class:courgette::Region
39 Region
[all...]
H A Ddifference_estimator_unittest.cc13 using courgette::Region;
21 difference_estimator.MakeBase(Region(kString1, sizeof(kString1)));
23 difference_estimator.MakeSubject(Region(kString2, sizeof(kString2)));
32 difference_estimator.MakeBase(Region(kString1, sizeof(kString1)));
34 difference_estimator.MakeSubject(Region(kString2, sizeof(kString2)));
43 difference_estimator.MakeBase(Region(kString1, sizeof(kString1)-1));
45 difference_estimator.MakeSubject(Region(kString2, sizeof(kString2)-1));
54 difference_estimator.MakeBase(Region(kString1, sizeof(kString1)-1));
56 difference_estimator.MakeSubject(Region(kString2, sizeof(kString2)-1));
H A Ddifference_estimator.h42 Base* MakeBase(const Region& region);
43 Subject* MakeSubject(const Region& region);
H A Ddifference_estimator.cc30 bool RegionsEqual(const Region& a, const Region& b) {
40 explicit Base(const Region& region) : region_(region) { }
51 const Region& region() const { return region_; }
54 Region region_;
63 explicit Subject(const Region& region) : region_(region) {}
65 const Region& region() const { return region_; }
68 Region region_;
82 DifferenceEstimator::Base* DifferenceEstimator::MakeBase(const Region& region) {
90 const Region
[all...]
/external/chromium-trace/trace-viewer/src/cc/
H A Dregion.js14 var r = new Region();
25 function Region() {
29 Region.prototype = {
30 __proto__: Region.prototype,
42 Region: Region,
/external/chromium_org/base/files/
H A Dmemory_mapped_file.cc13 const MemoryMappedFile::Region MemoryMappedFile::Region::kWholeFile(
16 MemoryMappedFile::Region::Region(base::LinkerInitialized) : offset(0), size(0) { function in class:base::MemoryMappedFile::Region
19 MemoryMappedFile::Region::Region(int64 offset, int64 size) function in class:base::MemoryMappedFile::Region
25 bool MemoryMappedFile::Region::operator==(
26 const MemoryMappedFile::Region& other) const {
45 if (!MapFileRegionToMemory(Region::kWholeFile)) {
54 return Initialize(file.Pass(), Region
[all...]
H A Dmemory_mapped_file.h28 struct BASE_EXPORT Region { struct in class:base::MemoryMappedFile
29 static const Region kWholeFile;
31 Region(int64 offset, int64 size);
33 bool operator==(const Region& other) const;
42 // This ctor is used only by kWholeFile, to construct a zero-sized Region
44 Region(base::LinkerInitialized);
59 bool Initialize(File file, const Region& region);
88 bool MapFileRegionToMemory(const Region& region);
/external/icu/icu4c/source/i18n/unicode/
H A Dregion.h13 * \brief C++ API: Region classes (territory containment)
29 * <code>Region</code> is the class representing a Unicode Region Code, also known as a
30 * Unicode Region Subtag, which is defined based upon the BCP 47 standard. We often think of
31 * "regions" as "countries" when defining the characteristics of a locale. Region codes There are different
43 * TERRITORY - A Region that is not a Macroregion. These are typically codes for countries, but also
49 * UNKNOWN - The code ZZ is defined by Unicode LDML for use to indicate that the Region is unknown,
52 * DEPRECATED - Region codes that have been defined in the past but are no longer in modern usage,
58 * their own region code. Region "EU" (European Union) is one such region code that is a grouping.
62 * The Region clas
68 class U_I18N_API Region : public UObject { class in inherits:UObject
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DRegion.h35 class PLATFORM_EXPORT Region { class in namespace:blink
37 Region();
38 Region(const IntRect&);
46 void unite(const Region&);
47 void intersect(const Region&);
48 void subtract(const Region&);
53 bool contains(const Region&) const;
58 bool intersects(const Region&) const;
139 friend bool operator==(const Region&, const Region
[all...]
H A DRegion.cpp27 #include "platform/geometry/Region.h"
39 Region::Region() function in class:blink::Region
43 Region::Region(const IntRect& rect) function in class:blink::Region
49 Vector<IntRect> Region::rects() const
68 bool Region::contains(const Region& region) const
76 bool Region::contains(const IntPoint& point) const
104 bool Region
[all...]
H A DRegionTest.cpp27 #include "platform/geometry/Region.h"
64 Region r;
117 Region r;
129 Region ar = a; \
130 Region br = b; \
137 Region ar = a; \
138 Region br = b; \
145 Region r;
210 Region r;
225 // This query rect goes past the bottom of the Region, causin
[all...]
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusRegion.h11 * Region API related declarations
23 Region::Region() function in class:Region
33 Region::Region(IN const RectF& rect) function in class:Region
43 Region::Region(IN const Rect& rect) function in class:Region
53 Region::Region(IN const GraphicsPath* path) function in class:Region
63 Region function in class:Region
73 Region::Region(IN HRGN hRgn) function in class:Region
479 inline Region::Region(GpRegion* nativeRegion) function in class:Region
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Duregion.cpp22 return (URegion*)Region::getInstance(regionCode, *status);
29 return (URegion*)Region::getInstance(code, *status);
36 return uenum_openFromStringEnumeration( Region::getAvailable(type), status );
50 return (URegion*)((Region*)uregion)->getContainingRegion();
57 return (URegion*)((Region*)uregion)->getContainingRegion(type);
64 return uenum_openFromStringEnumeration( ((Region*)uregion)->getContainedRegions(), status);
71 return uenum_openFromStringEnumeration( ((Region*)uregion)->getContainedRegions(type), status);
78 return ((Region*)uregion)->contains(*((Region*)otherRegion));
85 return uenum_openFromStringEnumeration( ((Region*)uregio
[all...]
H A Dregion.cpp18 * \brief C++ API: Region classes (territory containment)
41 delete (icu::Region *)obj;
49 icu::Region::cleanupRegionData();
80 void Region::loadRegionData() {
144 Region *r = new Region();
171 Region *aliasToRegion = (Region *) uhash_get(regionIDMap,&aliasTo);
172 Region *aliasFromRegion = (Region *)uhash_ge
362 Region::Region () function in class:Region
[all...]
/external/icu/icu4c/source/i18n/
H A Duregion.cpp22 return (URegion*)Region::getInstance(regionCode, *status);
29 return (URegion*)Region::getInstance(code, *status);
36 return uenum_openFromStringEnumeration( Region::getAvailable(type), status );
50 return (URegion*)((Region*)uregion)->getContainingRegion();
57 return (URegion*)((Region*)uregion)->getContainingRegion(type);
64 return uenum_openFromStringEnumeration( ((Region*)uregion)->getContainedRegions(), status);
71 return uenum_openFromStringEnumeration( ((Region*)uregion)->getContainedRegions(type), status);
78 return ((Region*)uregion)->contains(*((Region*)otherRegion));
85 return uenum_openFromStringEnumeration( ((Region*)uregio
[all...]
H A Dregion.cpp18 * \brief C++ API: Region classes (territory containment)
41 delete (icu::Region *)obj;
49 icu::Region::cleanupRegionData();
80 void Region::loadRegionData() {
144 Region *r = new Region();
171 Region *aliasToRegion = (Region *) uhash_get(regionIDMap,&aliasTo);
172 Region *aliasFromRegion = (Region *)uhash_ge
362 Region::Region () function in class:Region
[all...]
/external/llvm/include/llvm/Analysis/
H A DRegionInfo.h50 class Region;
56 /// @brief Marker class to iterate over the elements of a Region in flat mode.
67 /// Region.
80 /// The node can hold either a Region or a BasicBlock.
85 /// @brief The parent Region of this RegionNode.
87 Region* parent;
98 inline RegionNode(Region* Parent, BasicBlock* Entry, bool isSubRegion = 0)
101 /// @brief Get the parent Region of this RegionNode.
103 /// The parent Region is the Region thi
214 class Region : public RegionNode { class in namespace:llvm
[all...]
/external/llvm/include/llvm/Support/
H A DFileOutputBuffer.h46 return (uint8_t*)Region->data();
51 return (uint8_t*)Region->data() + Region->size();
56 return Region->size();
83 std::unique_ptr<llvm::sys::fs::mapped_file_region> Region; member in class:llvm::FileOutputBuffer
/external/llvm/lib/Analysis/
H A DRegionInfo.cpp42 static cl::opt<enum Region::PrintStyle> printStyle("print-region-style",
46 clEnumValN(Region::PrintNone, "none", "print no details"),
47 clEnumValN(Region::PrintBB, "bb",
49 clEnumValN(Region::PrintRN, "rn",
53 /// Region Implementation
54 Region::Region(BasicBlock *Entry, BasicBlock *Exit, RegionInfo* RInfo, function in class:Region
55 DominatorTree *dt, Region *Parent)
58 Region::~Region() {
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dmemory_region_map.h136 struct Region { struct in class:MemoryRegionMap
158 bool Overlaps(const Region& x) const {
165 // The ways we create Region-s:
179 // The ways we modify Region-s:
197 // Post-default construction helper to make a Region suitable
205 // Note: call_stack[kMaxStackDepth] as a member lets us make Region
211 // substantially complicates memory management for the Region-s:
220 static bool FindRegion(uintptr_t addr, Region* result);
227 static bool FindAndMarkStackRegion(uintptr_t stack_top, Region* result);
243 // Region comparato
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dmemory_region_map.h124 struct Region { struct in class:MemoryRegionMap
146 bool Overlaps(const Region& x) const {
153 // The ways we create Region-s:
167 // The ways we modify Region-s:
185 // Post-default construction helper to make a Region suitable
193 // Note: call_stack[kMaxStackDepth] as a member lets us make Region
199 // substantially complicates memory management for the Region-s:
208 static bool FindRegion(uintptr_t addr, Region* result);
215 static bool FindAndMarkStackRegion(uintptr_t stack_top, Region* result);
219 // Region comparato
[all...]

Completed in 647 milliseconds

12345678