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

/frameworks/base/awt/java/awt/
H A DShape.java42 * Checks whether or not the point with specified coordinates lies inside
74 * @param point
79 public boolean contains(Point2D point); argument
122 * point on the unflattened transformed curve can deviate from the returned
H A DPolygon.java40 * the line segments from the point (x[i], y[i]) to the point (x[i+1], y[i+1]),
41 * for -1 < i < (n-1) plus the line segment from the point (x[n-1], y[n-1]) to
42 * the point (x[0], y[0]) point. The Polygon is empty if the number of vertices
226 * Adds the point to the Polygon and updates the bounding box accordingly.
337 * Checks whether or not the point given by the coordinates x, y lies inside
341 * the X coordinate of the point to check.
343 * the Y coordinate of the point to check.
344 * @return true, if the specified point lie
451 contains(Point point) argument
464 contains(Point2D point) argument
[all...]
/frameworks/base/awt/java/awt/geom/
H A DRectangularShape.java195 * the x coordinate of the other corner point.
197 * the y coordinate of the other corner point.
226 * the other corner point.
233 * Sets the framing rectangle given the center point and one corner. Any
237 * the x coordinate of the center point.
239 * the y coordinate of the center point.
252 * Sets the framing rectangle given the center point and one corner. Any
256 * the center point.
258 * a corner point.
264 public boolean contains(Point2D point) { argument
[all...]
H A DArc2D.java31 * the start angle) as a pie wedge whose point is in the center of the
36 * center of the rectangle back to the arc's start point are included).
50 * the end point of the curved arc to the beginning point is included.
484 * The step to calculate next arc subdivision point.
514 * The x coordinate of the first path point (MOVE_TO).
519 * The y coordinate of the first path point (MOVE_TO).
788 * Gets the start point of the arc as a Point2D.
790 * @return the start point of the curved arc segment.
799 * Gets the end point o
857 setArc(Point2D point, Dimension2D size, double start, double extent, int type) argument
959 setAngleStart(Point2D point) argument
[all...]
/frameworks/base/libs/surfaceflinger/
H A DTransform.cpp232 void Transform::transform(fixed1616* point, int x, int y) const argument
238 point[0] = v[0] * toFixed;
239 point[1] = v[1] * toFixed;
/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/text/
H A DLayout.java330 // Adjust the point at which to start rendering depending on the
1121 public void getCursorPath(int point, Path dest, argument
1125 int line = getLineForOffset(point);
1129 float h1 = getPrimaryHorizontal(point) - 0.5f;
1130 float h2 = getSecondaryHorizontal(point) - 0.5f;
/frameworks/base/core/jni/android/graphics/
H A DGraphics.cpp260 SkIPoint* GraphicsJNI::jpoint_to_ipoint(JNIEnv* env, jobject obj, SkIPoint* point) argument
264 point->set(env->GetIntField(obj, gPoint_xFieldID),
266 return point;
277 SkPoint* GraphicsJNI::jpointf_to_point(JNIEnv* env, jobject obj, SkPoint* point) argument
281 point->set(SkFloatToScalar(env->GetIntField(obj, gPointF_xFieldID)),
283 return point;
/frameworks/base/core/jni/
H A Dandroid_view_Surface.cpp586 * the caller. At this point, we should only have a SurfaceControl.
707 jclass point = env->FindClass("android/graphics/Point"); local
708 po.x = env->GetFieldID(point, "x", "I");
709 po.y = env->GetFieldID(point, "y", "I");
/frameworks/base/media/libdrm/mobile1/src/objmng/
H A Ddrm_api.c1272 int32_t point = DRM_MAX_MALLOC_LEN - aesStart; local
1283 memcpy(buf, s->rawContent + aesStart, point);
1284 res = s->readInputDataFunc(s->inputHandle, buf + point, bufLen - point);
1288 res += point;
/frameworks/base/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/include/private/opengles/
H A Dgl_context.h630 point_size_t point; member in struct:android::gl::ogles_context_t

Completed in 206 milliseconds