HomeSort by relevance Sort by last modified time
    Searched defs:Region (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /external/icu/icu4c/source/i18n/unicode/
region.h 13 * \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
32 * types of region codes that are important to distinguish.
34 * Macroregion - A code for a "macro geographical (continental) region, geographical sub-region, or
39 * Macroregions are represented in ICU by one of three region types: WORLD ( region code 001 )
    [all...]
  /external/llvm/lib/Analysis/
RegionInfo.cpp 1 //===- RegionInfo.cpp - SESE region detection analysis --------------------===//
30 #define DEBUG_TYPE "region"
45 "verify-region-info",
47 cl::desc("Verify region info (time consuming)"));
50 static cl::opt<Region::PrintStyle, true> printStyleX("print-region-style",
55 clEnumValN(Region::PrintNone, "none", "print no details"),
56 clEnumValN(Region::PrintBB, "bb",
58 clEnumValN(Region::PrintRN, "rn",
64 // Region implementatio
    [all...]
  /external/libchrome/base/files/
memory_mapped_file.h 30 // Used to hold information about a region [offset + size] of a file.
31 struct BASE_EXPORT Region {
32 static const Region kWholeFile;
34 bool operator==(const Region& other) const;
35 bool operator!=(const Region& other) const;
37 // Start of the region (measured in bytes from the beginning of the file).
40 // Length of the region in bytes.
55 // As above, but works with a region of an already-opened file.
56 bool Initialize(File file, const Region& region);
    [all...]
  /external/llvm/include/llvm/Support/
FileOutputBuffer.h 46 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;
  /frameworks/compile/mclinker/include/mcld/Fragment/
Fragment.h 29 enum Type { Alignment, Fillment, Region, Target, Stub, Null };
  /external/clang/lib/StaticAnalyzer/Checkers/
DynamicTypeChecker.cpp 58 // The tracked region.
169 const MemRegion *Region = C.getSVal(CE).getAsRegion();
170 if (!Region)
174 DynamicTypeInfo DynTypeInfo = getDynamicTypeInfo(State, Region);
208 reportTypeError(DynType, StaticType, Region, CE, C);
MacOSKeychainAPIChecker.cpp 40 SymbolRef Region;
44 Region(R) {}
48 Region == X.Region);
53 ID.AddPointer(Region);
125 R->markInteresting(AP.second->Region);
130 /// region.
134 // The allocated region symbol tracked by the main analysis.
250 // Report deallocator mismatch. Remove the region from tracking - reporting a
300 if (!definitelyReturnedError(AS->Region, State, C.getSValBuilder()))
    [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);
  /frameworks/native/include/ui/
Region.h 34 class Region : public LightFlattenable<Region>
37 static const Region INVALID_REGION;
39 Region();
40 Region(const Region& rhs);
41 explicit Region(const Rect& rhs);
42 ~Region();
44 static Region createTJunctionFreeRegion(const Region& r)
    [all...]
  /external/llvm/tools/llvm-cov/
SourceCoverageView.h 28 coverage::CounterMappingRegion Region;
31 ExpansionView(const coverage::CounterMappingRegion &Region,
33 : Region(Region), View(std::move(View)) {}
35 : Region(std::move(RHS.Region)), View(std::move(RHS.View)) {}
37 Region = std::move(RHS.Region);
42 unsigned getLine() const { return Region.LineStart; }
43 unsigned getStartCol() const { return Region.ColumnStart;
    [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. */
  /frameworks/rs/java/tests/HealingBrush/src/rs/example/android/com/healingbrush/
Region.java 41 public class Region {
42 private static final String TAG = "Region";
58 public Region(float[] xy, Bitmap img) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusheaders.h 6 * Region class definitions.
487 class Region: public GdiplusBase
492 static Region* FromHRGN(HRGN hrgn);
494 Region();
495 Region(const RectF& rect);
496 Region(const Rect& rect);
497 Region(const GraphicsPath *path);
498 Region(const BYTE *regionData, INT size);
499 Region(HRGN hrgn);
500 ~Region();
    [all...]
gdiplusimpl.h 5 * Image, InstalledFontCollection, PrivateFontCollection, Region
1108 // Region
1110 __inline__ Region* Region::FromHRGN(HRGN hrgn)
1112 return new Region(hrgn);
1115 __inline__ Region::Region(): nativeRegion(NULL), lastStatus(Ok)
1120 __inline__ Region::Region(const RectF& rect): nativeRegion(NULL), lastStatus(Ok)
1125 __inline__ Region::Region(const Rect& rect): nativeRegion(NULL), lastStatus(Ok
    [all...]
  /external/icu/icu4c/source/i18n/
region.cpp 8 * File REGION.CPP
18 * \brief C++ API: Region classes (territory containment)
21 #include "unicode/region.h"
42 delete (icu::Region *)obj;
50 icu::Region::cleanupRegionData();
76 * Initializes the region data from the ICU resource bundles. The region data
80 * If the region data has already loaded, then this method simply returns without doing
83 void Region::loadRegionData(UErrorCode &status) {
103 LocalUResourceBundlePointer regionList(ures_getByKey(idValidity.getAlias(),"region",NULL,&status))
    [all...]
  /frameworks/native/libs/ui/
Region.cpp 17 #define LOG_TAG "Region"
27 #include <ui/Region.h>
56 const Region Region::INVALID_REGION(Rect::INVALID_RECT);
60 Region::Region() {
64 Region::Region(const Region& rhs)
72 Region::Region(const Rect& rhs)
    [all...]
  /external/drm_hwcomposer/
drmdisplaycompositor.h 48 struct Region {
60 const std::vector<Region> &regions() const {
81 std::vector<Region> regions_;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUCurrencyMetaInfo.java 73 // priorities in order within region. This means we don't need
80 if (filter.region != null) {
81 needed |= Region;
94 if (filter.region != null) {
95 ICUResourceBundle b = regionInfo.findWithFallback(filter.region);
112 String region = b.getKey(); local
113 if (needed == Region) {
162 collector.collect(region, currency, from, to, i, tender);
198 // Data is already unique by region/priority, so we don't need to be concerned
202 public void collect(String region, String currency, long from, long to, int priority, boolean tender)
    [all...]
  /external/icu/icu4j/main/classes/currdata/src/com/ibm/icu/impl/
ICUCurrencyMetaInfo.java 71 // priorities in order within region. This means we don't need
78 if (filter.region != null) {
79 needed |= Region;
92 if (filter.region != null) {
93 ICUResourceBundle b = regionInfo.findWithFallback(filter.region);
110 String region = b.getKey(); local
111 if (needed == Region) {
160 collector.collect(region, currency, from, to, i, tender);
196 // Data is already unique by region/priority, so we don't need to be concerned
200 public void collect(String region, String currency, long from, long to, int priority, boolean tender)
    [all...]
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_region_unittest.cc 25 void CompareRegion(const DesktopRegion& region,
27 DesktopRegion::Iterator it(region);
216 // region in an array and comparing it with the expected values.
314 struct Region {
319 // Same region with one of the rectangles 1 pixel wider/taller.
327 // Same region with one of the rectangles shifted horizontally and
342 // Same region defined by a different set of rectangles - one of the
352 // Rectangle region defined by a set of rectangles that merge into one.
358 int kTotalRegions = sizeof(regions) / sizeof(Region);
547 // is verified by building a map of the region in an array and comparing it wit
    [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/llvm/lib/Target/X86/Disassembler/
X86Disassembler.cpp 99 struct Region {
102 Region(ArrayRef<uint8_t> Bytes, uint64_t Base) : Bytes(Bytes), Base(Base) {}
106 /// A callback function that wraps the readByte method from Region.
109 /// be a pointer to a Region.
113 auto *R = static_cast<const Region *>(Arg);
151 Region R(Bytes, Address);
    [all...]
  /external/opencv/cvaux/src/
cvscanlines.cpp     [all...]

Completed in 722 milliseconds

1 2 3 4