Searched defs:transform (Results 1 - 24 of 24) sorted by relevance

/frameworks/base/awt/java/awt/font/
H A DTransformAttribute.java42 // affine transform of this TransformAttribute instance
44 * The transform.
51 * @param transform
54 public TransformAttribute(AffineTransform transform) { argument
55 if (transform == null) {
56 // awt.94=transform can not be null
59 if (!transform.isIdentity()) {
60 this.fTransform = new AffineTransform(transform);
77 * Checks if this transform is an identity transform
[all...]
H A DFontRenderContext.java34 // Affine transform of this mode
36 * The transform.
38 private AffineTransform transform; field in class:FontRenderContext
67 transform = new AffineTransform(trans);
105 * Gets the transform which is used for scaling typographical points to
112 if (transform != null){
113 return new AffineTransform(transform);
/frameworks/base/include/ui/
H A DISurface.h65 PixelFormat format, uint32_t transform, uint32_t flags,
75 uint32_t transform; member in class:android::ISurface::BufferHeap
/frameworks/base/awt/java/awt/image/renderable/
H A DRenderContext.java30 * affine transform, the area of interest, and the rendering hints.
37 * The affine transform.
39 AffineTransform transform; field in class:RenderContext
55 * the affine transform.
62 this.transform = (AffineTransform)usr2dev.clone();
71 * the affine transform.
83 * the affine transform.
96 * the affine transform.
104 return new RenderContext(transform, aoi, hints);
108 * Sets the affine transform fo
[all...]
/frameworks/base/awt/java/awt/geom/
H A DArea.java306 * the transform to use to transform the data.
308 public void transform(AffineTransform t) { method in class:Area
317 * the transform to use to transform the data.
H A DGeneralPath.java171 t.transform(coords, 0, coords, 0, count / 2);
186 t.transform(coords, 0, coords, 0, count / 2);
510 public void transform(AffineTransform t) { method in class:GeneralPath
511 t.transform(points, 0, points, 0, pointSize / 2);
526 p.transform(t);
H A DAffineTransform.java36 * transformed via the affine transform, the images of the three points will
147 * Instantiates a new affine transform of type <code>TYPE_IDENTITY</code>
157 * Instantiates a new affine transform that has the same data as the given
161 * the transform to copy.
174 * Instantiates a new affine transform by specifying the values of the 2x3
202 * Instantiates a new affine transform by specifying the values of the 2x3
230 * Instantiates a new affine transform by reading the values of the
258 * Instantiates a new affine transform by reading the values of the
448 * Sets the transform in terms of a list of double values.
474 * Sets the transform'
834 public Point2D transform(Point2D src, Point2D dst) { method in class:AffineTransform
870 public void transform(Point2D[] src, int srcOff, Point2D[] dst, int dstOff, int length) { method in class:AffineTransform
911 public void transform(double[] src, int srcOff, double[] dst, int dstOff, int length) { method in class:AffineTransform
951 public void transform(float[] src, int srcOff, float[] dst, int dstOff, int length) { method in class:AffineTransform
992 public void transform(float[] src, int srcOff, double[] dst, int dstOff, int length) { method in class:AffineTransform
1025 public void transform(double[] src, int srcOff, float[] dst, int dstOff, int length) { method in class:AffineTransform
[all...]
/frameworks/base/awt/java/awt/image/
H A DColorConvertOp.java89 * The transform.
91 private ICC_Transform transform; field in class:ColorConvertOp.ICC_TransfomCreator
107 * @return the transform.
110 if (transform != null && src == transform.getSrc() && dst == transform.getDst()) {
111 return transform;
146 return transform = new ICC_Transform(profiles);
207 // If only one profile left we skip the transform -
238 if (iccSequenceStarted) { // Make last transform i
[all...]
/frameworks/base/libs/ui/
H A DISurface.cpp32 transform(0), flags(0)
40 format(format), transform(0), flags(0), heap(heap)
46 PixelFormat format, uint32_t transform, uint32_t flags,
49 format(format), transform(transform), flags(flags), heap(heap)
75 data.writeInt32(buffers.transform);
133 buffer.transform = data.readInt32();
44 BufferHeap(uint32_t w, uint32_t h, int32_t hor_stride, int32_t ver_stride, PixelFormat format, uint32_t transform, uint32_t flags, const sp<IMemoryHeap>& heap) argument
/frameworks/base/awt/org/apache/harmony/awt/gl/font/
H A DAndroidGlyphVector.java27 // without applying GlyphVector's transform
63 // transform of the GlyphVector
64 AffineTransform transform; field in class:AndroidGlyphVector
H A DCommonGlyphVector.java52 // without applying GlyphVector's transform
88 // transform of the GlyphVector
89 AffineTransform transform; field in class:CommonGlyphVector
105 this.transform = fnt.getTransform();
206 transform.transform(defaultPositions, 0, logicalPositions, 0, getNumGlyphs()+1);
349 // For last position we don't have to transform !!
365 * Sets new transform to the specified glyph.
386 * Returns the affine transform of the specified glyph.
413 // if certain glyph or Font has a transform
[all...]
/frameworks/base/libs/surfaceflinger/
H A DTransform.cpp138 void Transform::transform(GLfixed* point, int x, int y) const function in class:android::Transform
159 Rect Transform::transform(const Rect& bounds) const function in class:android::Transform
175 Region Transform::transform(const Region& reg) const function in class:android::Transform
183 out.orSelf(transform(r));
186 out.set(transform(reg.bounds()));
H A DLayerBase.h92 Transform transform; member in struct:android::LayerBase::State
235 int transform = 0) const;
H A DSurfaceFlinger.cpp727 const Transform& planeTransform(plane.transform());
851 const Transform& planeTransform(plane.transform());
1482 s.transform[0], s.transform[1],
1483 s.transform[2], s.transform[3]);
1865 const Transform& GraphicPlane::transform() const { function in class:android::GraphicPlane
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
H A Ductralgo.h122 /// The first version of transform performs the operation op(*i) for each
131 inline void transform (Container& ctr, UnaryFunction op) function in namespace:ustl
133 transform (ctr.begin(), ctr.end(), ctr.begin(), op);
136 /// The first version of transform performs the operation op(*i) for each
145 inline OutputIterator transform (Container& ctr, OutputIterator result, UnaryFunction op) function in namespace:ustl
147 return (transform (ctr.begin(), ctr.end(), result, op));
150 /// The second version of transform is very similar, except that it uses a
161 inline OutputIterator transform (Container& ctr, InputIterator first, OutputIterator result, BinaryFunction op) function in namespace:ustl
163 return (transform (ctr.begin(), ctr.end(), first, result, op));
H A Dualgo.h101 /// The first version of transform performs the operation op(*i) for each
111 inline OutputIterator transform (InputIterator first, InputIterator last, OutputIterator result, UnaryFunction op) function in namespace:ustl
119 /// The second version of transform is very similar, except that it uses a
131 inline OutputIterator transform (InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, OutputIterator result, BinaryFunction op) function in namespace:ustl
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmGenerator.java55 /** Counter of number of classes renamed during transform. */
184 byte[] b = transform(cr, true /* stubNativesOnly */);
191 byte[] b = transform(cr, true /* stubNativesOnly */);
198 byte[] b = transform(cr, true /* stubNativesOnly */);
269 byte[] transform(ClassReader cr, boolean stubNativesOnly) { method in class:AsmGenerator
/frameworks/base/awt/java/awt/
H A DGraphics2D.java279 * Gets current affine transform of the Graphics2D.
305 * Performs a rotation transform relative to current Graphics2D Transform.
315 * Performs a translated rotation transform relative to current Graphics2D
330 * Performs a linear scale transform relative to current Graphics2D
396 * used only for restoring the original Graphics2D transform after calling
405 * Performs a shear transform relative to current Graphics2D Transform. The
421 * specified transform applied first and the next transformation applied to
423 * current Graphics2D transform, the transform method's result with Tx as
432 public abstract void transform(AffineTransfor method in class:Graphics2D
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath.java598 public void transform(Matrix matrix, Path dst) { method in class:Path
608 public void transform(Matrix matrix) { method in class:Path
609 transform(matrix, null /* dst */);
/frameworks/base/awt/org/apache/harmony/awt/gl/
H A DCommonGraphics2D.java150 // Current graphics transform
151 protected AffineTransform transform = new AffineTransform(); field in class:CommonGraphics2D
154 // Original user->device translation as transform and point
212 mra.translate((int)transform.getTranslateX(), (int)transform.getTranslateY());
214 int type = transform.getType();
219 mra.translate((int)transform.getTranslateX(), (int)transform.getTranslateY());
222 s = transform.createTransformedShape(s);
255 PathIterator pi = s.getPathIterator(transform, 0.
901 public void transform(AffineTransform at) { method in class:CommonGraphics2D
1030 setTransform(AffineTransform transform) argument
[all...]
/frameworks/base/camera/libcameraservice/
H A DCameraService.cpp551 uint32_t transform = 0; local
555 transform = ISurface::BufferHeap::ROT_90;
559 transform,
876 uint32_t transform = 0; local
879 transform = ISurface::BufferHeap::ROT_90;
882 PIXEL_FORMAT_YCbCr_420_SP, transform, 0, client->mHardware->getRawHeap());
/frameworks/base/graphics/java/android/graphics/
H A DPath.java517 public void transform(Matrix matrix, Path dst) { method in class:Path
530 public void transform(Matrix matrix) { method in class:Path
/frameworks/base/awt/com/android/internal/awt/
H A DAndroidGraphics2D.java88 protected AffineTransform transform = new AffineTransform(); field in class:AndroidGraphics2D
341 s.transform(mM);
354 pth.transform(matrix);
706 public void transform(AffineTransform Tx) { method in class:AndroidGraphics2D
803 blitter.blit(0, 0, srcSurf, x, y, dstSurf, w, h, (AffineTransform) transform.clone(),
847 (AffineTransform) transform.clone(),
853 (AffineTransform) transform.clone(),
908 (AffineTransform) transform.clone(),
914 (AffineTransform) transform.clone(),
946 (AffineTransform) transform
[all...]
/frameworks/base/include/private/opengles/
H A Dgl_context.h438 transform_t transform; member in struct:android::gl::matrix_stack_t
466 transform_t transform; member in struct:android::gl::vp_transform_t

Completed in 1598 milliseconds