Searched defs:ty (Results 1 - 9 of 9) sorted by relevance

/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/libs/surfaceflinger/
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
/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/opengl/libagl/
H A Dmatrix.cpp872 const GLfloat ty = -(top + bottom) * r_height; local
879 f[13] = ty;
/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/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) {
/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...]

Completed in 438 milliseconds