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

/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/base/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...]
/frameworks/base/core/java/android/hardware/
H A DCamera.java1358 * {@link Parameters#getMaxNumFocusAreas()}. If metering or focusing area
1370 * every pixel in the area. This means that a large metering area with
1371 * the same weight as a smaller area will have more effect in the
1384 * Create an area with specified rectangle and weight.
1386 * @param rect the bounds of the area.
1387 * @param weight the weight of the area.
1394 * Compares {@code obj} to this area.
1396 * @param obj the object to compare this area with.
1398 * 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/include/private/opengles/
H A Dgl_context.h561 GGLcoord area() const { return m_area; } function in struct:android::gl::compute_iterators_t
/frameworks/base/core/java/com/google/android/mms/pdu/
H A DPduParser.java1216 * @param length area size
1217 * @return the values in this area
1221 byte[] area = new byte[length];
1222 int readLen = pduDataStream.read(area, 0, length);

Completed in 528 milliseconds