Searched defs:translate (Results 1 - 21 of 21) sorted by relevance

/frameworks/base/awt/java/awt/
H A DPoint.java206 public void translate(int dx, int dy) { method in class:Point
H A DPolygon.java322 * the distance to translate horizontally.
324 * the distance to translate vertically.
326 public void translate(int mx, int my) { method in class:Polygon
332 bounds.translate(mx, my);
H A DRectangle.java426 public void translate(int mx, int my) { method in class:Rectangle
H A DGraphics2D.java435 * Performs a translate transform relative to current Graphics2D Transform.
444 public abstract void translate(double tx, double ty); method in class:Graphics2D
456 * @see java.awt.Graphics#translate(int, int)
459 public abstract void translate(int x, int y); method in class:Graphics2D
H A DEvent.java564 public void translate(int dx, int dy) { method in class:Event
H A DGraphics.java76 res.translate(x, y);
923 public abstract void translate(int x, int y); method in class:Graphics
/frameworks/base/libs/rs/
H A DrsMatrix.h67 void translate(float x, float y, float z) { function in struct:android::renderscript::Matrix
/frameworks/base/graphics/java/android/graphics/
H A DCamera.java29 public native void translate(float x, float y, float z); method in class:Camera
H A DRegion.java204 public void translate(int dx, int dy) { method in class:Region
205 translate(dx, dy, null);
212 public native void translate(int dx, int dy, Region dst); method in class:Region
H A DCanvas.java247 * calls to translate,scale,rotate,skew,concat or clipRect,clipPath
258 * stack. Subsequent calls to translate,scale,rotate,skew,concat or
273 * the canvas (or the previous layer). Subsequent calls to translate,
305 * the canvas (or the previous layer). Subsequent calls to translate,
362 * @param dx The distance to translate in X
363 * @param dy The distance to translate in Y
365 public native void translate(float dx, float dy); method in class:Canvas
384 translate(px, py);
386 translate(-px, -py);
404 translate(p
[all...]
/frameworks/base/graphics/java/android/renderscript/
H A DMatrix4f.java177 public void translate(float x, float y, float z) { method in class:Matrix4f
/frameworks/base/core/java/android/gesture/
H A DGestureUtils.java500 translate(points, -centroid[0], -centroid[1]);
576 static float[] translate(float[] points, float dx, float dy) { method in class:GestureUtils
/frameworks/base/include/ui/
H A DRect.h139 void translate(int dx, int dy) { // legacy, don't use. function in class:android::Rect
/frameworks/base/libs/rs/java/Film/src/com/android/film/
H A DFilmRS.java30 public float translate; field in class:FilmRS.StripPosition
59 mPos.translate = 2f * anim + 0.5f; // translation
/frameworks/base/awt/org/apache/harmony/awt/gl/
H A DMultiRectArea.java632 public void translate(int x, int y) { method in class:MultiRectArea
641 bounds.translate(x, y);
646 element.translate(x, y);
H A DCommonGraphics2D.java212 mra.translate((int)transform.getTranslateX(), (int)transform.getTranslateY());
219 mra.translate((int)transform.getTranslateX(), (int)transform.getTranslateY());
795 res.translate(-Math.round((float)transform.getTranslateX()), -Math.round((float)transform.getTranslateY()));
806 res.translate(-Math.round((float)transform.getTranslateX()), -Math.round((float)transform.getTranslateY()));
907 public void translate(double tx, double ty) { method in class:CommonGraphics2D
909 System.err.println("CommonGraphics2D.translate("+tx+", "+ty+")"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
912 transform.translate(tx, ty);
917 public void translate(int tx, int ty) { method in class:CommonGraphics2D
919 System.err.println("CommonGraphics2D.translate("+tx+", "+ty+")"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
922 transform.translate(t
[all...]
/frameworks/base/awt/java/awt/geom/
H A DAffineTransform.java502 * the distance to translate in the x direction.
504 * the distance to translate in the y direction.
596 * the distance to translate in the x direction.
598 * the distance to translate in the y direction.
615 * the distance to translate in the x direction.
617 * the distance to translate in the y direction.
685 * the distance to translate in the x direction.
687 * the distance to translate in the y direction.
700 * the distance to translate in the x direction.
702 * the distance to translate i
704 public void translate(double mx, double my) { method in class:AffineTransform
[all...]
/frameworks/base/opengl/libagl/
H A Dmatrix.cpp317 void matrixf_t::translate(GLfloat x, GLfloat y, GLfloat z) { function in class:android::matrixf_t
425 void matrix_stack_t::translate(GLfloat x, GLfloat y, GLfloat z) function in class:android::matrix_stack_t
427 stack[depth].translate(x,y,z);
1070 c->transforms.current->translate(x, y, z);
1077 c->transforms.current->translate(
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas.java250 * @see android.graphics.Canvas#translate(float, float)
253 public void translate(float dx, float dy) { method in class:Canvas
254 getGraphics2d().translate(dx, dy);
614 g.translate(px, py);
616 g.translate(-px, -py);
634 g.translate(px, py);
636 g.translate(-px, -py);
/frameworks/base/awt/com/android/internal/awt/
H A DAndroidGraphics2D.java713 public void translate(double tx, double ty) { method in class:AndroidGraphics2D
719 public void translate(int x, int y) { method in class:AndroidGraphics2D
/frameworks/base/core/jni/android/graphics/
H A DCanvas.cpp193 static void translate(JNIEnv* env, jobject jcanvas, jfloat dx, jfloat dy) { function in class:android::SkCanvasGlue
197 (void)GraphicsJNI::getNativeCanvas(env, jcanvas)->translate(dx_, dy_);
489 canvas->translate(left_, top_);
889 {"translate","(FF)V", (void*) SkCanvasGlue::translate},

Completed in 304 milliseconds