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

/frameworks/compile/mclinker/unittests/
H A DMemoryAreaTest.cpp54 MemoryArea* area = AreaFactory->produce(path, O_RDONLY); local
55 MemoryRegion* region = area->request(3, 2);
66 MemoryArea* area = AreaFactory->produce(path, O_RDWR); local
67 ASSERT_TRUE(area->isMapped());
68 ASSERT_TRUE(area->isGood());
69 MemoryRegion* region = area->request(3, 4);
74 area->sync();
75 area->unmap();
76 area->map(path, O_RDONLY);
77 ASSERT_TRUE(area
90 MemoryArea* area = AreaFactory->produce(path, O_RDWR) ; local
104 MemoryArea* area = AreaFactory->produce(path, O_RDWR) ; local
127 MemoryArea* area = AreaFactory->produce(path, O_RDWR) ; 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 DMCFragmentRefTest.cpp48 MemoryArea* area = areaFactory->produce(path, MemoryArea::ReadWrite); local
50 MemoryRegion* region = area->request(0, 4096);
/frameworks/base/telephony/java/android/telephony/
H A DSmsCbLocation.java88 * Returns the GSM location area code, or UMTS service area code.
89 * @return location area code, -1 if unknown, 0xffff max legal value
129 * Test whether this location is within the location area of the specified object.
131 * @param area the location area to compare with this location
132 * @return true if this location is contained within the specified location area
134 public boolean isInLocationArea(SmsCbLocation area) { argument
135 if (mCid != -1 && mCid != area.mCid) {
138 if (mLac != -1 && mLac != area
[all...]
/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/base/core/java/android/webkit/
H A DViewManager.java174 float area = MAX_SURFACE_AREA;
176 fixedW = (int)Math.sqrt(area * v.width / v.height);
179 fixedH = (int)Math.sqrt(area * v.height / v.width);
185 // if we get here, either our dimensions or area (or both)
/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.java1485 * {@link Parameters#getMaxNumFocusAreas()}. If metering or focusing area
1497 * every pixel in the area. This means that a large metering area with
1498 * the same weight as a smaller area will have more effect in the
1511 * Create an area with specified rectangle and weight.
1513 * @param rect the bounds of the area.
1514 * @param weight the weight of the area.
1521 * Compares {@code obj} to this area.
1523 * @param obj the object to compare this area with.
1525 * 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/base/core/java/com/google/android/mms/pdu/
H A DPduParser.java1219 * @param length area size
1220 * @return the values in this area
1224 byte[] area = new byte[length];
1225 int readLen = pduDataStream.read(area, 0, length);

Completed in 292 milliseconds