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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/graphics/java/android/graphics/
Region.aidl 20 parcelable Region;
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...]
  /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/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
RegionTest.java 19 import android.icu.util.Region;
20 import android.icu.util.Region.RegionType;
345 Region r = Region.getInstance(rd[0]);
349 errln("Numeric code mismatch for region " + r.toString() + ". Expected: " + e + " Got:" + n);
351 if (r.getType() != Region.RegionType.valueOf(rd[3])) {
352 errln("Expected region " + r.toString() + " to be of type " + rd[3] + ". Got:" + r.getType().toString());
356 Region ncRegion = Region.getInstance(nc);
357 if ( !ncRegion.equals(r) && nc != 891 ) { // 891 is special case - CS and YU both deprecated codes for region 89
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
RegionTest.java 18 import com.ibm.icu.util.Region;
19 import com.ibm.icu.util.Region.RegionType;
341 Region r = Region.getInstance(rd[0]);
345 errln("Numeric code mismatch for region " + r.toString() + ". Expected: " + e + " Got:" + n);
347 if (r.getType() != Region.RegionType.valueOf(rd[3])) {
348 errln("Expected region " + r.toString() + " to be of type " + rd[3] + ". Got:" + r.getType().toString());
352 Region ncRegion = Region.getInstance(nc);
353 if ( !ncRegion.equals(r) && nc != 891 ) { // 891 is special case - CS and YU both deprecated codes for region 89
    [all...]
  /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...]
  /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/libchrome/base/files/
memory_mapped_file.cc 16 const MemoryMappedFile::Region MemoryMappedFile::Region::kWholeFile = {0, 0};
18 bool MemoryMappedFile::Region::operator==(
19 const MemoryMappedFile::Region& other) const {
23 bool MemoryMappedFile::Region::operator!=(
24 const MemoryMappedFile::Region& other) const {
44 if (!MapFileRegionToMemory(Region::kWholeFile)) {
53 return Initialize(std::move(file), Region::kWholeFile);
56 bool MemoryMappedFile::Initialize(File file, const Region& region) {
    [all...]
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...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
RegionTest.java 21 import android.graphics.Region;
100 private Region mRegion;
115 // Test Region()
116 new Region();
118 // Test Region(Region)
119 Region oriRegion = new Region();
120 new Region(oriRegion);
122 // Test Region(Rect
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Bass/src/
LVDBE_Init.c 75 pMemoryTable->Region[LVDBE_MEMREGION_INSTANCE].Size = sizeof(LVDBE_Instance_t);
76 pMemoryTable->Region[LVDBE_MEMREGION_INSTANCE].Alignment = LVDBE_INSTANCE_ALIGN;
77 pMemoryTable->Region[LVDBE_MEMREGION_INSTANCE].Type = LVDBE_PERSISTENT;
78 pMemoryTable->Region[LVDBE_MEMREGION_INSTANCE].pBaseAddress = LVM_NULL;
83 pMemoryTable->Region[LVDBE_MEMREGION_PERSISTENT_DATA].Size = sizeof(LVDBE_Data_t);
84 pMemoryTable->Region[LVDBE_MEMREGION_PERSISTENT_DATA].Alignment = LVDBE_PERSISTENT_DATA_ALIGN;
85 pMemoryTable->Region[LVDBE_MEMREGION_PERSISTENT_DATA].Type = LVDBE_PERSISTENT_DATA;
86 pMemoryTable->Region[LVDBE_MEMREGION_PERSISTENT_DATA].pBaseAddress = LVM_NULL;
91 pMemoryTable->Region[LVDBE_MEMREGION_PERSISTENT_COEF].Size = sizeof(LVDBE_Coef_t);
92 pMemoryTable->Region[LVDBE_MEMREGION_PERSISTENT_COEF].Alignment = LVDBE_PERSISTENT_COEF_ALIGN
    [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;
  /external/icu/icu4c/source/i18n/
uregion.cpp 13 #include "unicode/region.h"
23 return (URegion*)Region::getInstance(regionCode, *status);
30 return (URegion*)Region::getInstance(code, *status);
37 StringEnumeration* strenum = Region::getAvailable(type, *status);
52 return (URegion*)((Region*)uregion)->getContainingRegion();
59 return (URegion*)((Region*)uregion)->getContainingRegion(type);
66 StringEnumeration* strenum = ((Region*)uregion)->getContainedRegions(*status);
74 StringEnumeration* strenum = ((Region*)uregion)->getContainedRegions(type, *status);
82 return ((Region*)uregion)->contains(*((Region*)otherRegion))
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/
LVCS_Init.c 80 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_SLOW_DATA].Size = (LVM_UINT32)sizeof(LVCS_Instance_t);
81 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_SLOW_DATA].Type = LVCS_PERSISTENT;
82 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_SLOW_DATA].pBaseAddress = LVM_NULL;
87 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_FAST_DATA].Size = (LVM_UINT32)sizeof(LVCS_Data_t);
88 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_FAST_DATA].Type = LVCS_DATA;
89 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_FAST_DATA].pBaseAddress = LVM_NULL;
94 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_FAST_COEF].Size = (LVM_UINT32)sizeof(LVCS_Coefficient_t);
95 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_FAST_COEF].Type = LVCS_COEFFICIENT;
96 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_FAST_COEF].pBaseAddress = LVM_NULL;
102 pMemoryTable->Region[LVCS_MEMREGION_TEMPORARY_FAST].Size = ScratchSize
    [all...]
  /frameworks/base/core/java/android/view/accessibility/
IAccessibilityInteractionConnection.aidl 19 import android.graphics.Region;
34 void findAccessibilityNodeInfoByAccessibilityId(long accessibilityNodeId, in Region bounds,
39 in Region bounds, int interactionId, IAccessibilityInteractionConnectionCallback callback,
42 void findAccessibilityNodeInfosByText(long accessibilityNodeId, String text, in Region bounds,
46 void findFocus(long accessibilityNodeId, int focusType, in Region bounds, int interactionId,
50 void focusSearch(long accessibilityNodeId, int direction, in Region bounds, int interactionId,
  /external/icu/android_icu4j/src/main/java/android/icu/util/
Region.java 22 * <code>Region</code> is the class representing a Unicode Region Code, also known as a
23 * Unicode Region Subtag, which is defined based upon the BCP 47 standard. We often think of
24 * "regions" as "countries" when defining the characteristics of a locale. Region codes There are different
25 * types of region codes that are important to distinguish.
27 * Macroregion - A code for a "macro geographical (continental) region, geographical sub-region, or
32 * Macroregions are represented in ICU by one of three region types: WORLD ( region code 001 ),
36 * TERRITORY - A Region that is not a Macroregion. These are typically codes for countries, but als
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
Region.java 21 * <code>Region</code> is the class representing a Unicode Region Code, also known as a
22 * Unicode Region Subtag, which is defined based upon the BCP 47 standard. We often think of
23 * "regions" as "countries" when defining the characteristics of a locale. Region codes There are different
24 * types of region codes that are important to distinguish.
26 * Macroregion - A code for a "macro geographical (continental) region, geographical sub-region, or
31 * Macroregions are represented in ICU by one of three region types: WORLD ( region code 001 ),
35 * TERRITORY - A Region that is not a Macroregion. These are typically codes for countries, but als
    [all...]
  /external/libchrome/base/posix/
global_descriptors.h 42 Descriptor(Key key, int fd, base::MemoryMappedFile::Region region);
48 // Optional region, defaults to kWholeFile.
49 base::MemoryMappedFile::Region region; member in struct:base::GlobalDescriptors::Descriptor
70 // Get a region given a key. It is a fatal error if the key is not known.
71 base::MemoryMappedFile::Region GetRegion(Key key) const;
73 // Set the descriptor for the given |key|. This sets the region associated
77 // Set the descriptor and |region| for the given |key|.
78 void Set(Key key, int fd, base::MemoryMappedFile::Region region)
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
InstAlloc.c 89 StartAddr = (uintptr_t)pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].pBaseAddress;
95 StartAddr = (uintptr_t)pMemoryTable->Region[LVM_PERSISTENT_FAST_DATA].pBaseAddress;
101 StartAddr = (uintptr_t)pMemoryTable->Region[LVM_PERSISTENT_FAST_COEF].pBaseAddress;
107 StartAddr = (uintptr_t)pMemoryTable->Region[LVM_TEMPORARY_FAST].pBaseAddress;
150 pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].Size = InstAlloc_GetTotal(&pms[LVM_PERSISTENT_SLOW_DATA]);
151 pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].Type = LVM_PERSISTENT_SLOW_DATA;
152 pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].pBaseAddress = LVM_NULL;
156 pMemoryTable->Region[LVM_PERSISTENT_FAST_DATA].Size = InstAlloc_GetTotal(&pms[LVM_PERSISTENT_FAST_DATA]);
157 pMemoryTable->Region[LVM_PERSISTENT_FAST_DATA].Type = LVM_PERSISTENT_FAST_DATA;
158 pMemoryTable->Region[LVM_PERSISTENT_FAST_DATA].pBaseAddress = LVM_NULL
    [all...]
  /hardware/qcom/display/msm8084/libqdutils/
cb_utils.h 32 #include <ui/Region.h>
  /hardware/qcom/display/msm8226/libqdutils/
cb_utils.h 32 #include <ui/Region.h>
  /hardware/qcom/display/msm8909/libqdutils/
cb_utils.h 32 #include <ui/Region.h>
  /hardware/qcom/display/msm8994/libqdutils/
cb_utils.h 32 #include <ui/Region.h>
  /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/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...]

Completed in 484 milliseconds

1 2 3 4 5 6 7 8 91011>>