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

/frameworks/base/awt/java/awt/
H A DShape.java7 * the License. You may obtain a copy of the License at
111 * @param at
115 public PathIterator getPathIterator(AffineTransform at); argument
125 * @param at
133 public PathIterator getPathIterator(AffineTransform at, double flatness); argument
H A DPolygon.java7 * the License. You may obtain a copy of the License at
106 * @param at
111 public Iterator(AffineTransform at, Polygon p) { argument
113 this.t = at;
/frameworks/base/awt/java/awt/geom/
H A DEllipse2D.java7 * the License. You may obtain a copy of the License at
455 public PathIterator getPathIterator(AffineTransform at) { argument
456 return new Iterator(this, at);
H A DLine2D.java7 * the License. You may obtain a copy of the License at
342 * @param at
345 Iterator(Line2D l, AffineTransform at) { argument
350 this.t = at;
931 public PathIterator getPathIterator(AffineTransform at) { argument
932 return new Iterator(this, at);
935 public PathIterator getPathIterator(AffineTransform at, double flatness) { argument
936 return new Iterator(this, at);
H A DRectangle2D.java7 * the License. You may obtain a copy of the License at
421 * @param at
425 Iterator(Rectangle2D r, AffineTransform at) { argument
430 this.t = at;
626 * @return true, if at least one point of the line segment between the two
647 * @return true, if at least one point of the given line segment matches any
H A DRoundRectangle2D.java7 * the License. You may obtain a copy of the License at
422 * @param at
425 Iterator(RoundRectangle2D rr, AffineTransform at) { argument
432 this.t = at;
631 public PathIterator getPathIterator(AffineTransform at) { argument
632 return new Iterator(this, at);
H A DArc2D.java7 * the License. You may obtain a copy of the License at
1153 public PathIterator getPathIterator(AffineTransform at) { argument
1154 return new Iterator(this, at);
H A DCubicCurve2D.java7 * the License. You may obtain a copy of the License at
35 * information about the tangent and next derivative at the endpoints according
1035 public PathIterator getPathIterator(AffineTransform at, double flatness) { argument
1036 return new FlatteningPathIterator(getPathIterator(at), flatness);
H A DGeneralPath.java7 * the License. You may obtain a copy of the License at
140 * @param at
143 Iterator(GeneralPath path, AffineTransform at) { argument
145 this.t = at;
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
H A Dumatrix.h43 inline const_iterator at (size_type i) const { return (matrix::begin() + i * NX); } function in class:ustl::matrix
44 inline iterator at (size_type i) { return (matrix::begin() + i * NX); } function in class:ustl::matrix
45 inline const_iterator operator[] (size_type i) const { return (at (i)); }
46 inline iterator operator[] (size_type i) { return (at (i)); }
47 inline row_type row (size_type r) const { return (row_type (at (r))); }
H A Duvector.h71 inline reference at (size_type i) { assert (i < size()); return (begin()[i]); } function in class:ustl::vector
72 inline const_reference at (size_type i) const { assert (i < size()); return (begin()[i]); }
73 inline reference operator[] (size_type i) { return (at (i)); }
74 inline const_reference operator[] (size_type i) const { return (at (i)); }
75 inline reference front (void) { return (at(0)); }
76 inline const_reference front (void) const { return (at(0)); }
109 /// Allocates space for at least \p n elements.
212 /// Inserts \p n uninitialized elements at \p ip.
221 /// Inserts \p n elements with value \p v at offsets \p ip.
230 /// Inserts value \p v at offse
[all...]
H A Dutuple.h54 inline const_reference at (size_type i) const { return (m_v[i]); } function in class:ustl::tuple
55 inline reference at (size_type i) { return (m_v[i]); } function in class:ustl::tuple
H A Dustring.h26 /// encoded with utf8 at all times except when rendering or editing,
82 inline const_reference at (uoff_t pos) const { assert (pos <= size() && begin()); return (begin()[pos]); } function in class:ustl::string
83 inline reference at (uoff_t pos) { assert (pos <= size() && begin()); return (begin()[pos]); } function in class:ustl::string
121 inline bool operator== (const_reference c) const { return (size() == 1 && c == at(0)); }
/frameworks/base/awt/java/awt/image/
H A DAffineTransformOp.java7 * the License. You may obtain a copy of the License at
66 * The at.
68 private AffineTransform at; field in class:AffineTransformOp
131 this.at = (AffineTransform)xform.clone();
180 return (AffineTransform)at.clone();
184 return at.transform(srcPt, dstPt);
202 at.transform(corners, 0, corners, 0, 4);
468 double m00 = at.getScaleX();
469 double m01 = at.getShearX();
470 double m02 = at
[all...]
/frameworks/base/awt/org/apache/harmony/awt/gl/font/
H A DAndroidFont.java7 * the License. You may obtain a copy of the License at
98 public LineMetrics getLineMetrics(String str, FontRenderContext frc, AffineTransform at) { argument
106 if ((at != null) && (!at.isIdentity())){
107 lm.scale((float)at.getScaleX(), (float)at.getScaleY());
H A DCompositeFont.java7 * the License. You may obtain a copy of the License at
162 * @param at specified AffineTransform
165 public LineMetrics getLineMetrics(String str, FontRenderContext frc , AffineTransform at){ argument
169 if ((at != null) && (!at.isIdentity())){
170 lm.scale((float)at.getScaleX(), (float)at.getScaleY());
H A DFontPeerImpl.java7 * the License. You may obtain a copy of the License at
134 * @param at specified affine transform
137 public abstract LineMetrics getLineMetrics(String str, FontRenderContext frc, AffineTransform at); argument
/frameworks/base/awt/org/apache/harmony/awt/gl/render/
H A DJavaBlitter.java7 * the License. You may obtain a copy of the License at
95 AffineTransform at = new AffineTransform();
96 at.setToTranslation(scaledX, scaledY);
97 xform.concatenate(at);
353 int width, int height, AffineTransform at, Composite comp,
359 Rectangle transSrcBounds = getBounds2D(at, srcBounds).getBounds();
360 Rectangle transDstBlitBounds = getBounds2D(at, dstBlitBounds).getBounds();
367 inv = at.createInverse();
477 private Rectangle2D getBounds2D(AffineTransform at, Rectangle r) { argument
490 at
351 transformedBlit(ColorModel srcCM, Raster srcR, int srcX, int srcY, ColorModel dstCM, WritableRaster dstR, int dstX, int dstY, int width, int height, AffineTransform at, Composite comp, Color bgcolor,MultiRectArea clip) argument
[all...]
/frameworks/base/core/java/android/content/res/
H A DTypedArray.java6 * You may obtain a copy of the License at
64 * @param at The index you would like to returned, ranging from 0 to
67 * @return The index at the given offset, which can be used with
70 public int getIndex(int at) { argument
71 return mIndices[1+at];
82 * Retrieve the styled string value for the attribute at <var>index</var>.
110 * Retrieve the string value for the attribute at <var>index</var>.
139 * Retrieve the string value for the attribute at <var>index</var>, but
168 * Retrieve the string value for the attribute at <var>index</var> that is
203 * Retrieve the boolean value for the attribute at <va
[all...]
/frameworks/base/awt/com/android/internal/awt/
H A DAndroidJavaBlitter.java6 * You may obtain a copy of the License at
90 AffineTransform at = new AffineTransform();
91 at.setToTranslation(scaledX, scaledY);
92 xform.concatenate(at);
340 int width, int height, AffineTransform at, Composite comp,
354 tm.setConcat(canvas.getMatrix(), AndroidGraphics2D.createMatrixObj(at));
355 if(at.getType() > 1) {
360 canvas.drawBitmap(bmp, dstX + (float)at.getTranslateX(), dstY + (float)at.getTranslateY(), paint);
363 private Rectangle2D getBounds2D(AffineTransform at, Rectangl argument
338 transformedBlit(ColorModel srcCM, Raster srcR, int srcX, int srcY, ColorModel dstCM, WritableRaster dstR, int dstX, int dstY, int width, int height, AffineTransform at, Composite comp, Color bgcolor, MultiRectArea clip) argument
[all...]
/frameworks/base/awt/org/apache/harmony/awt/gl/
H A DCommonGraphics2D.java7 * the License. You may obtain a copy of the License at
658 AffineTransform at = (AffineTransform)this.getTransform().clone();
660 at.concatenate(fontTransform);
663 if (!at.isIdentity()){
665 int atType = at.getType();
666 at.getMatrix(matrix);
690 AffineTransform at = gv.getFont().getTransform();
693 if ((at != null) && (!at.isIdentity())){
695 int atType = at
901 transform(AffineTransform at) argument
[all...]

Completed in 210 milliseconds