Searched defs:Region (Results 1 - 25 of 42) sorted by relevance

12

/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/cc/base/
H A Dregion.cc10 Region::Region() { function in class:cc::Region
13 Region::Region(const Region& region) function in class:cc::Region
17 Region::Region(const gfx::Rect& rect) function in class:cc::Region
21 Region::~Region() {
24 const Region
[all...]
H A Dregion.h23 class CC_EXPORT Region { class in namespace:cc
25 Region();
26 Region(const Region& region);
27 Region(const gfx::Rect& rect); // NOLINT(runtime/explicit)
28 ~Region();
30 const Region& operator=(const gfx::Rect& rect);
31 const Region& operator=(const Region& region);
33 void Swap(Region* regio
[all...]
/external/chromium_org/base/files/
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);
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...]
/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...]
/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/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DRegion.h35 class PLATFORM_EXPORT Region { class in namespace:WebCore
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:WebCore::Region
43 Region::Region(const IntRect& rect) function in class:WebCore::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...]
/external/llvm/include/llvm/MC/
H A DMCObjectDisassembler.h69 void setFallbackRegion(std::unique_ptr<MemoryObject> &Region) { argument
70 FallbackRegion.reset(Region.release());
/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...]
H A DGdiPlusHeaders.h25 class Region : public GdiplusBase class in inherits:GdiplusBase
30 Region();
31 Region(IN const RectF& rect);
32 Region(IN const Rect& rect);
33 Region(IN const GraphicsPath* path);
34 Region(IN const BYTE* regionData, IN INT size);
35 Region(IN HRGN hRgn);
36 static Region* FromHRGN(IN HRGN hRgn);
38 ~Region();
39 Region* Clon
158 Region(const Region &region) function in class:Region
[all...]
/external/chromium_org/chrome/test/telemetry/chromeos/
H A Dlogin_unittest.py227 initial_region = self.Region('', '', '', '', '')
259 # The Region class and region list will be available in regions.py.
260 class Region(object): class in class:CrOSAutoTest
280 Region('au', 'xkb:us::eng', 'Australia/Sydney', 'en-AU', _KML.ANSI,
282 Region('ca.ansi', 'xkb:us::eng', 'America/Toronto', 'en-CA', _KML.ANSI,
285 Region('ca.fr', 'xkb:ca::fra', 'America/Toronto', 'fr-CA', _KML.ISO,
289 Region('ca.hybrid', 'xkb:ca:eng:eng', 'America/Toronto', 'en-CA', _KML.ISO,
295 Region('ca.multix', 'xkb:ca:multix:fra', 'America/Toronto', 'fr-CA',
299 Region('de', 'xkb:de::ger', 'Europe/Berlin', 'de', _KML.ISO, 'Germany'),
300 Region('f
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DDynamicTypePropagation.cpp46 static void recordFixedType(const MemRegion *Region, const CXXMethodDecl *MD, argument
48 assert(Region);
55 State = State->setDynamicTypeInfo(Region, Ty, /*CanBeSubclass=*/false);
H A DMacOSKeychainAPIChecker.cpp40 SymbolRef Region; member in struct:__anon17399::MacOSKeychainAPIChecker::AllocationState
44 Region(R) {}
48 Region == X.Region);
53 ID.AddPointer(Region);
126 R->markInteresting(AP.second->Region);
298 if (!definitelyReturnedError(AS->Region, State, C.getSValBuilder())) {
316 Report->markInteresting(AS->Region);
369 Report->markInteresting(AS->Region);
426 !definitelyDidnotReturnError(AS->Region, Stat
[all...]
/external/icu/icu4c/source/i18n/
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/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...]
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_region_unittest.cc314 struct Region { struct
358 int kTotalRegions = sizeof(regions) / sizeof(Region);
/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/lib/Target/Sparc/Disassembler/
H A DSparcDisassembler.cpp243 const MemoryObject &Region,
249 DecodeStatus Result = readInstruction32(Region, Address, Size, Insn);
241 getInstruction(MCInst &instr, uint64_t &Size, const MemoryObject &Region, uint64_t Address, raw_ostream &vStream, raw_ostream &cStream) const argument
/external/llvm/lib/Target/XCore/Disassembler/
H A DXCoreDisassembler.cpp754 const MemoryObject &Region,
760 if (!readInstruction16(Region, Address, Size, insn16)) {
774 if (!readInstruction32(Region, Address, Size, insn32)) {
752 getInstruction(MCInst &instr, uint64_t &Size, const MemoryObject &Region, uint64_t Address, raw_ostream &vStream, raw_ostream &cStream) const argument
/external/llvm/lib/MC/MCAnalysis/
H A DMCObjectDisassembler.cpp356 MemoryObject *Region = getRegionFor(BeginAddr); local
357 if (!Region)
362 uint64_t EndAddr = Region->getBase() + Region->getExtent();
371 if (Dis.getInstruction(Inst, InstSize, *Region, Addr, nulls(),
396 MemoryObject *Region = getRegionFor(TA->getBeginAddr()); local
397 assert(Region && "Couldn't find region for already disassembled code!");
398 uint64_t EndRegion = Region->getBase() + Region->getExtent();
/external/llvm/lib/Target/Mips/Disassembler/
H A DMipsDisassembler.cpp746 const MemoryObject &Region,
752 DecodeStatus Result = readInstruction32(Region, Address, Size,
814 const MemoryObject &Region,
820 DecodeStatus Result = readInstruction32(Region, Address, Size,
744 getInstruction(MCInst &instr, uint64_t &Size, const MemoryObject &Region, uint64_t Address, raw_ostream &vStream, raw_ostream &cStream) const argument
812 getInstruction(MCInst &instr, uint64_t &Size, const MemoryObject &Region, uint64_t Address, raw_ostream &vStream, raw_ostream &cStream) const argument

Completed in 529 milliseconds

12