Searched refs:ty (Results 1 - 15 of 15) sorted by relevance

/frameworks/base/libs/surfaceflinger/
H A DTransform.h69 int ty() const;
73 void set(float tx, float ty);
H A DTransform.cpp119 int Transform::ty() const { function in class:android::Transform
132 void Transform::set(float tx, float ty) argument
135 mMatrix[2][1] = ty;
138 if (isZero(tx) && isZero(ty)) {
282 out = reg.translate(tx(), ty());
H A DLayerBase.h238 int ty() const { return mTop; } function in class:android::LayerBase
H A DLayerBase.cpp130 if (mCurrentState.transform.tx() == x && mCurrentState.transform.ty() == y)
272 mTop = tr.ty();
H A DSurfaceFlinger.cpp1535 s.z, layer->tx(), layer->ty(), s.w, s.h,
/frameworks/base/libs/rs/
H A DrsType.cpp92 uint32_t ty = mDimY; local
97 mLODs[lod].mY = ty;
100 offset += tx * rsMax(ty, 1u) * rsMax(tz, 1u) * mElement->getSizeBytes();
102 if (ty > 1) ty >>= 1;
/frameworks/base/awt/java/awt/
H A DGraphics2D.java441 * @param ty
444 public abstract void translate(double tx, double ty); argument
/frameworks/base/awt/org/apache/harmony/awt/gl/
H A DCommonGraphics2D.java166 protected CommonGraphics2D(int tx, int ty) { argument
167 this(tx, ty, null);
170 protected CommonGraphics2D(int tx, int ty, MultiRectArea clip) { argument
171 setTransform(AffineTransform.getTranslateInstance(tx, ty));
172 //origTransform = AffineTransform.getTranslateInstance(tx, ty);
173 origPoint = new Point(tx, ty);
907 public void translate(double tx, double ty) { argument
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) { argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DMatrix.java670 float ty, sy = dst.height() / src.height();
683 ty = dst.top - src.top * sy;
700 ty += diff;
707 mValues[5] = ty;
/frameworks/base/opengl/java/android/opengl/
H A DMatrix.java255 final float ty = -(top + bottom) * r_height;
261 m[mOffset +13] = ty;
/frameworks/base/libs/utils/
H A DResourceTypes.cpp2512 const ResTable_type* const ty = typeConfigs->configs[tci]; local
2513 const uint32_t typeOffset = dtohl(ty->entriesStart);
2515 const uint8_t* const end = ((const uint8_t*)ty) + dtohl(ty->header.size);
2517 (((const uint8_t*)ty) + dtohs(ty->header.headerSize));
2519 const size_t NE = dtohl(ty->entryCount);
2528 if (offset > (dtohl(ty->header.size)-sizeof(ResTable_entry))) {
2530 offset, dtohl(ty->header.size));
2543 (((const uint8_t*)ty)
[all...]
/frameworks/base/awt/com/android/internal/awt/
H A DAndroidGraphics2D.java713 public void translate(double tx, double ty) { argument
714 mM.setTranslate((float) tx, (float) ty);
/frameworks/base/core/java/android/webkit/
H A DWebView.java3416 int ty = Math.round(scale
3419 ty = -(ty <= titleHeight ? Math.max(ty, 0) : pinLoc(ty
3422 canvas.translate(tx, ty);
/frameworks/base/opengl/libagl/
H A Dmatrix.cpp872 const GLfloat ty = -(top + bottom) * r_height; local
879 f[13] = ty;
/frameworks/base/tools/aapt/
H A DResourceTable.cpp3148 const type ty = this != NULL ? mType : TYPE_ITEM; local
3150 if (ty == TYPE_BAG) {
3158 if (ty != TYPE_BAG) {

Completed in 428 milliseconds