Home
last modified time | relevance | path

Searched refs:ty (Results 1 – 22 of 22) sorted by relevance

/frameworks/base/graphics/java/android/renderscript/
DAllocationAdapter.java105 int ty = mAdaptedAllocation.mType.getY(); in initLOD() local
109 if ((tx==1) && (ty == 1) && (tz == 1)) { in initLOD()
114 if (ty > 1) ty >>= 1; in initLOD()
119 mCurrentDimY = ty; in initLOD()
/frameworks/native/services/surfaceflinger/
DTransform.cpp98 float Transform::ty() const { in ty() function in android::Transform
111 void Transform::set(float tx, float ty) in set() argument
114 mMatrix[2][1] = ty; in set()
117 if (isZero(tx) && isZero(ty)) { in set()
243 int ypos = floorf(ty() + 0.5f); in transform()
DTransform.h68 float ty() const;
72 void set(float tx, float ty);
DLayerBase.cpp122 if (mCurrentState.transform.tx() == x && mCurrentState.transform.ty() == y) in setPosition()
454 s.z, s.transform.tx(), s.transform.ty(), s.active.w, s.active.h, in dump()
/frameworks/rs/
DrsType.cpp89 uint32_t ty = mHal.state.dimY; in compute() local
94 mHal.state.lodDimY[lod] = ty; in compute()
97 offset += tx * rsMax(ty, 1u) * rsMax(tz, 1u) * mElement->getSizeBytes(); in compute()
99 if (ty > 1) ty >>= 1; in compute()
/frameworks/base/core/java/android/webkit/
DZoomManager.java494 int ty = Math.round(scale in animateZoom() local
497 ty = -(ty <= titleHeight ? Math.max(ty, 0) : WebViewClassic.pinLoc(ty in animateZoom()
502 … mWebView.updateScrollCoordinates(mWebView.getScrollX() - tx, mWebView.getScrollY() - ty); in animateZoom()
505 canvas.translate(tx, ty); in animateZoom()
518 canvas.translate(tx, ty); in animateZoom()
DWebViewClassic.java7696 float ty = mTranslate.y * mProgress; in draw() local
7698 canvas.translate(-tx, -ty); in draw()
7708 ty = mTranslate.y - ty; in draw()
7709 canvas.translate(tx, ty); in draw()
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
DGlowPadView.java820 float ty = eventY - mWaveCenterY; in handleMove()
821 float touchRadius = (float) Math.sqrt(dist2(tx, ty)); in handleMove()
824 float limitY = ty * scale; in handleMove()
825 double angleRad = Math.atan2(-ty, tx); in handleMove()
846 if (angleMatches && (dist2(tx, ty) > snapDistance2)) { in handleMove()
935 final float ty = y - mWaveCenterY;
936 if (mAlwaysTrackFinger || dist2(tx,ty) <= getScaledGlowRadiusSquared()) {
939 updateGlowPosition(tx, ty);
DMultiWaveView.java830 float ty = eventY - mWaveCenterY; in handleMove()
831 float touchRadius = (float) Math.sqrt(dist2(tx, ty)); in handleMove()
834 float limitY = ty * scale; in handleMove()
835 double angleRad = Math.atan2(-ty, tx); in handleMove()
856 if (angleMatches && (dist2(tx, ty) > snapDistance2)) { in handleMove()
951 final float ty = y - mWaveCenterY;
952 if (mAlwaysTrackFinger || dist2(tx,ty) <= getScaledTapRadiusSquared()) {
955 moveHandleTo(tx, ty, false);
/frameworks/base/core/jni/
Dandroid_view_GLES20DisplayList.cpp79 jobject clazz, DisplayList* displayList, float ty) { in android_view_GLES20DisplayList_setTranslationY() argument
80 displayList->setTranslationY(ty); in android_view_GLES20DisplayList_setTranslationY()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DBeanBag.java390 final float ty = b.getTranslationY(); in onDraw() local
392 c.drawCircle(tx, ty, 4, pt); in onDraw()
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DMatrix_Delegate.java600 float ty, sy = dst.height() / src.height(); in native_setRectToRect() local
613 ty = dst.top - src.top * sy; in native_setRectToRect()
630 ty += diff; in native_setRectToRect()
637 d.mValues[5] = ty; in native_setRectToRect()
/frameworks/native/libs/gui/
DSurfaceTexture.cpp567 float tx = 0.0f, ty = 0.0f, sx = 1.0f, sy = 1.0f; in computeCurrentTransformMatrix() local
605 ty = (float(bufferHeight - cropRect.bottom) + shrinkAmount) / in computeCurrentTransformMatrix()
615 tx, ty, 0, 1, in computeCurrentTransformMatrix()
/frameworks/base/opengl/java/android/opengl/
DMatrix.java282 final float ty = -(top + bottom) * r_height; in orthoM() local
288 m[mOffset +13] = ty; in orthoM()
/frameworks/base/libs/androidfw/
DResourceTypes.cpp3656 const ResTable_type* const ty = typeConfigs->configs[tci]; in identifierForName() local
3657 const uint32_t typeOffset = dtohl(ty->entriesStart); in identifierForName()
3659 const uint8_t* const end = ((const uint8_t*)ty) + dtohl(ty->header.size); in identifierForName()
3661 (((const uint8_t*)ty) + dtohs(ty->header.headerSize)); in identifierForName()
3663 const size_t NE = dtohl(ty->entryCount); in identifierForName()
3672 if (offset > (dtohl(ty->header.size)-sizeof(ResTable_entry))) { in identifierForName()
3674 offset, dtohl(ty->header.size)); in identifierForName()
3687 (((const uint8_t*)ty) + offset); in identifierForName()
/frameworks/native/opengl/libagl/
Dmatrix.cpp872 const GLfloat ty = -(top + bottom) * r_height; in orthof() local
879 f[13] = ty; in orthof()
/frameworks/wilhelm/tests/sandbox/
Dxaplay.c721 printf(" ty = %u\n", timedTextStreamInformation.ty); in main()
/frameworks/base/core/java/android/view/
DViewGroup.java1103 final float ty = event.mY; in dispatchDragEvent() local
1206 event.mY = ty; in dispatchDragEvent()
1242 event.mY = ty; in dispatchDragEvent()
DView.java3320 float ty = 0; in View() local
3379 ty = a.getDimensionPixelOffset(attr, 0); in View()
3676 setTranslationY(ty); in View()
/frameworks/base/tools/aapt/
DResourceTable.cpp3290 const type ty = this != NULL ? mType : TYPE_ITEM; in flatten() local
3292 if (ty == TYPE_BAG) { in flatten()
3300 if (ty != TYPE_BAG) { in flatten()
/frameworks/wilhelm/include/OMXAL/
DOpenMAXAL.h3121 XAuint16 ty; member
/frameworks/base/core/res/assets/webkit/
Dhyph_en_US.dic4938 1ty
8949 .1ty