Searched defs:point (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
H A DPoint.java52 public Point plus(Point point) { argument
53 return this.plus(point.x, point.y);
60 public Point minus(Point point) { argument
61 return this.minus(point.x, point.y);
/frameworks/base/media/mca/filterfw/native/core/
H A Dgeometry.cpp131 const Point& Quad::point(int ix) const { function in class:android::filterfw::Quad
/frameworks/base/media/mca/filterpacks/native/base/
H A Dgeometry.cpp130 const Point& Quad::point(int ix) const { function in class:android::filterfw::Quad
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DPointCloud.java178 public int getAlphaForPoint(Point point) { argument
180 float glowDistance = hypot(glowManager.x - point.x, glowManager.y - point.y);
188 float radius = hypot(point.x, point.y);
207 Point point = points.get(i);
209 point.radius / mOuterRadius);
210 final float px = point.x + mCenterX;
211 final float py = point.y + mCenterY;
212 int alpha = getAlphaForPoint(point);
[all...]
/frameworks/base/media/java/android/media/
H A DFaceDetector.java54 * Sets the position of the mid-point between the eyes.
55 * @param point the PointF coordinates (float values) of the
56 * face's mid-point
58 public void getMidPoint(PointF point) { argument
60 point.set(mMidPointX, mMidPointY);
/frameworks/base/core/java/android/content/res/
H A DCompatibilityInfo.java379 public void translatePointInScreenToAppWindow(PointF point) { argument
382 point.x *= scale;
383 point.y *= scale;
/frameworks/base/core/jni/android/graphics/
H A DGraphics.cpp252 SkIPoint* GraphicsJNI::jpoint_to_ipoint(JNIEnv* env, jobject obj, SkIPoint* point) argument
256 point->set(env->GetIntField(obj, gPoint_xFieldID),
258 return point;
269 SkPoint* GraphicsJNI::jpointf_to_point(JNIEnv* env, jobject obj, SkPoint* point) argument
273 point->set(SkFloatToScalar(env->GetIntField(obj, gPointF_xFieldID)),
275 return point;
/frameworks/native/opengl/tests/angeles/
H A Ddemo.c177 static void superShapeMap(VECTOR3 *point, float r1, float r2, float t, float p) argument
180 point->x = (float)(cos(t) * cos(p) / r1 / r2);
181 point->y = (float)(sin(t) * cos(p) / r1 / r2);
182 point->z = (float)(sin(p) / r2);
/frameworks/base/core/java/android/text/
H A DLayout.java473 // Adjust the point at which to start rendering depending on the
1303 public void getCursorPath(int point, Path dest, argument
1307 int line = getLineForOffset(point);
1312 float h1 = getPrimaryHorizontal(point, clamped) - 0.5f;
1313 float h2 = isLevelBoundary(point) ? getSecondaryHorizontal(point, clamped) - 0.5f : h1;
/frameworks/base/libs/hwui/
H A DPathTessellator.cpp26 ALOGD("point %d at %f %f, alpha %f", \
31 ALOGD("point %d at %f %f", i, buffer[i].position[0], buffer[i].position[1]); \
182 * Fills a vertexBuffer with non-alpha vertices, zig-zagging at each perimeter point to create a
324 * 1 - create the AA perimeter of unit width, by zig-zagging at each point around the perimeter of
335 // generate alpha points - fill Alpha vertex gaps in between each point with
349 // AA point offset from original point is that point's normal, such that each side is offset
372 // triangle strip that fills the hull, repeating the first inner point to
417 // determine referencePoint, the center point fo
418 const Vertex* point = isFirst ? vertices.begin() : (vertices.end() - 1); local
[all...]
/frameworks/native/opengl/libagl/
H A Dcontext.h619 point_size_t point; member in struct:android::gl::ogles_context_t

Completed in 265 milliseconds