Searched refs:area (Results 1 - 14 of 14) sorted by relevance

/frameworks/compile/mclinker/unittests/
H A DMemoryAreaTest.cpp54 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadOnly); local
55 MemoryRegion* region = area->request(3, 2);
58 area->release(region);
59 AreaFactory->destruct(area);
68 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadOnly); local
69 ASSERT_TRUE(area->handler()->isOpened());
70 ASSERT_TRUE(area->handler()->isGood());
71 MemoryRegion* region = area->request(3, 4);
76 area->release(region);
77 area
96 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadOnly) ; local
112 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadWrite); local
140 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadWrite) ; local
[all...]
H A DMCRegionFragmentTest.cpp49 MemoryArea* area = areaFactory->produce(path, MemoryArea::ReadWrite); local
51 MemoryRegion* region = area->request(0, 4096);
64 MemoryArea* area = areaFactory->produce(path, MemoryArea::ReadWrite); local
66 MemoryRegion* region = area->request(0, 4096);
H A DFragmentRefTest.cpp49 MemoryArea* area = areaFactory->produce(path, FileHandle::ReadWrite); local
51 MemoryRegion* region = area->request(0, 4096);
/frameworks/compile/mclinker/include/mcld/Support/
H A DHandleToArea.h42 MemoryArea* area; member in struct:mcld::HandleToArea::Bucket
60 : handle(pHandle), area(pArea) { }
64 MemoryArea* area; member in struct:mcld::HandleToArea::Result
70 : handle(pHandle), area(pArea) { }
74 const MemoryArea* area; member in struct:mcld::HandleToArea::ConstResult
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsCbLocation.java86 * Returns the GSM location area code, or UMTS service area code.
87 * @return location area code, -1 if unknown, 0xffff max legal value
127 * Test whether this location is within the location area of the specified object.
129 * @param area the location area to compare with this location
130 * @return true if this location is contained within the specified location area
132 public boolean isInLocationArea(SmsCbLocation area) { argument
133 if (mCid != -1 && mCid != area.mCid) {
136 if (mLac != -1 && mLac != area
[all...]
/frameworks/compile/mclinker/lib/Support/
H A DMemoryAreaFactory.cpp39 if (NULL == map_result.area) {
54 return map_result.area;
63 if (NULL == map_result.area) {
78 return map_result.area;
H A DHandleToArea.cpp29 bucket.area = pArea;
70 return Result(bucket->handle, bucket->area);
88 return ConstResult(bucket->handle, bucket->area);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DGcSnapshot.java495 Area area = null;
498 area = new Area(shape);
500 area = Region_Delegate.combineShapes(getClip(), shape, regionOp);
503 assert area != null;
506 if (area != null) {
508 layer.setClip(area);
515 if (area != null) {
516 mClip = area;
/frameworks/native/opengl/libagl/
H A Dprimitives.cpp258 const GGLcoord area = (m_area + TRI_HALF) >> TRI_FRACTION_BITS; local
260 // triangles with an area smaller than 1.0 are not smooth-shaded
263 if (abs(area) >= minArea) {
265 // factor for deltas/area:
267 // First compute the 1/area with full 32-bits precision,
269 d = gglRecipQNormalized(area, &q);
275 // We'll keep 16-bits of precision for deltas/area. So we need
698 // rho = sqrt( texelArea / area )
700 // lod = log2( texelArea / area ) / 2
701 // lod = (log2( texelArea ) - log2( area )) /
703 const GGLcoord area = abs(lerp.area()); local
[all...]
H A Dcontext.h561 GGLcoord area() const { return m_area; } function in struct:android::gl::compute_iterators_t
/frameworks/base/core/java/android/hardware/
H A DCamera.java1726 * {@link Parameters#getMaxNumFocusAreas()}. If metering or focusing area
1738 * every pixel in the area. This means that a large metering area with
1739 * the same weight as a smaller area will have more effect in the
1752 * Create an area with specified rectangle and weight.
1754 * @param rect the bounds of the area.
1755 * @param weight the weight of the area.
1762 * Compares {@code obj} to this area.
1764 * @param obj the object to compare this area with.
1766 * the same as those of this area
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java182 Area area = new Area(pathDelegate.mPath);
183 if (area.isRectangular()) {
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.cpp2370 const char* area = areasStr.string() + areaStart; local
2375 vals[i] = strtol(area, &numEnd, 10);
2376 if (errno || numEnd == area) return BAD_VALUE;
2377 area = numEnd + 1;
2389 // Definition of valid area can be found in
2403 // fixed focus can only set (0,0,0,0,0) focus area
2633 // chosen to maximize its area on the sensor
2728 // centering the zoom area within the active area
2786 * ratios. Since each stream will maximize its area withi
[all...]
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DPduParser.java1314 * @param length area size
1315 * @return the values in this area
1319 byte[] area = new byte[length];
1320 int readLen = pduDataStream.read(area, 0, length);

Completed in 1104 milliseconds