/frameworks/base/rs/java/android/renderscript/ |
D | AllocationAdapter.java | 45 int ty = mAdaptedAllocation.mType.getY(); in initLOD() local 49 if ((tx==1) && (ty == 1) && (tz == 1)) { in initLOD() 54 if (ty > 1) ty >>= 1; in initLOD() 59 mCurrentDimY = ty; in initLOD()
|
/frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/xerox/ |
D | MDnsUtils.java | 38 String ty = getString(attributes.get(ATTRIBUTE__TY)); in isVendorPrinter() local 42 return (containsVendor(product, vendorValues) || containsVendor(ty, vendorValues) || in isVendorPrinter() 44 !(containsString(ty, EXCLUDE_FUJI) || containsString(product, EXCLUDE_FUJI) || in isVendorPrinter()
|
/frameworks/native/services/surfaceflinger/ |
D | Transform.h | 69 float ty() const; 73 void set(float tx, float ty);
|
D | Transform.cpp | 94 float Transform::ty() const { in ty() function in android::Transform 107 void Transform::set(float tx, float ty) in set() argument 110 mMatrix[2][1] = ty; in set() 113 if (isZero(tx) && isZero(ty)) { in set() 235 int ypos = floorf(ty() + 0.5f); in transform()
|
D | Layer.cpp | 1447 float ty = c.active.transform.ty(); local 1449 c.active.transform.set(tx, ty); 1502 if (mCurrentState.requested.transform.tx() == x && mCurrentState.requested.transform.ty() == y) 2119 … s.layerStack, s.z, s.active.transform.tx(), s.active.transform.ty(), s.active.w, s.active.h,
|
/frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/samsung/ |
D | MDnsUtils.java | 41 String ty = getString(attributes.get(ATTRIBUTE__TY)); in isVendorPrinter() local 44 …return containsVendor(product, vendorValues) || containsVendor(ty, vendorValues) || containsVendor… in isVendorPrinter()
|
/frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/hp/ |
D | MDnsUtils.java | 41 String ty = getString(attributes.get(ATTRIBUTE__TY)); in isVendorPrinter() local 44 …return containsVendor(product, vendorValues) || containsVendor(ty, vendorValues) || containsVendor… in isVendorPrinter()
|
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/ |
D | TiledImageRenderer.java | 442 for (int ty = r.top, i = 0; ty < r.bottom; ty += size, i++) { in draw() 446 drawTile(canvas, tx, ty, level, x, y, length); in draw() 597 int tx, int ty, int level, float x, float y, float length) { in drawTile() argument 603 Tile tile = getTile(tx, ty, level); in drawTile() 626 source.set(tx * scaleX, ty * scaleY, (tx + size) * scaleX, in drawTile() 627 (ty + size) * scaleY); in drawTile()
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
D | MovingSurfaceViewActivity.java | 67 public void setMyTranslationY(float ty) { in setMyTranslationY() argument 68 setTranslationY(ty); in setMyTranslationY()
|
/frameworks/rs/ |
D | rsType.cpp | 103 uint32_t ty = mHal.state.dimY; in compute() local 109 mHal.state.lodDimY[lod] = ty; in compute() 111 mCellCount += tx * rsMax(ty, 1u) * rsMax(tz, 1u); in compute() 113 if (ty > 1) ty >>= 1; in compute()
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
D | Matrix_Delegate.java | 545 float ty, sy = dst.height() / src.height(); in native_setRectToRect() local 558 ty = dst.top - src.top * sy; in native_setRectToRect() 575 ty += diff; in native_setRectToRect() 582 d.mValues[5] = ty; in native_setRectToRect()
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/ |
D | PhotoView.java | 990 private int translate(float tx, float ty) { in translate() argument 1022 Math.min(maxBottom - mTranslateRect.top, ty)); in translate() 1028 translateY = Math.max(maxBottom - b, Math.min(maxTop - t, ty)); in translate() 1037 boolean didTranslateY = translateY == ty; in translate()
|
/frameworks/base/libs/hwui/ |
D | BakedOpDispatcher.cpp | 141 const float ty = floorf(state.computedState.transform.getTranslateY() in onMergedPatchOps() local 148 opVertices->x + tx, opVertices->y + ty, in onMergedPatchOps() 157 renderer.dirtyRenderTarget(Rect(tx, ty, in onMergedPatchOps() 158 tx + op.unmappedBounds.getWidth(), ty + op.unmappedBounds.getHeight())); in onMergedPatchOps() 164 const float y = ty + quadBounds.top; in onMergedPatchOps()
|
D | FrameBuilder.h | 74 void deferRenderNode(float tx, float ty, Rect clipRect, RenderNode& renderNode);
|
D | DisplayListOp.h | 839 const float ty = (int) floorf(state->mMatrix.getTranslateY() + in multiDraw() local 846 opVertices->x + tx, opVertices->y + ty, in multiDraw() 855 renderer.dirtyLayer(tx, ty, in multiDraw() 857 ty + patchOp->mLocalBounds.getHeight()); in multiDraw() 863 const float y = ty + quadBounds.top; in multiDraw()
|
D | FrameBuilder.cpp | 117 void FrameBuilder::deferRenderNode(float tx, float ty, Rect clipRect, RenderNode& renderNode) { in deferRenderNode() argument 121 mCanvasState.translate(tx, ty); in deferRenderNode()
|
/frameworks/rs/driver/ |
D | rsdAllocation.cpp | 330 uint32_t ty = alloc->mHal.drvState.lod[0].dimY; in AllocationBuildPointerTable() local 334 alloc->mHal.drvState.lod[lod].dimY = ty; in AllocationBuildPointerTable() 339 o += alloc->mHal.drvState.lod[lod].stride * rsMax(ty, 1u) * rsMax(tz, 1u); in AllocationBuildPointerTable() 341 if (ty > 1) ty >>= 1; in AllocationBuildPointerTable()
|
/frameworks/native/libs/gui/ |
D | GLConsumer.cpp | 844 float tx = 0.0f, ty = 0.0f, sx = 1.0f, sy = 1.0f; in computeTransformMatrix() local 881 ty = (float(bufferHeight - cropRect.bottom) + shrinkAmount) / in computeTransformMatrix() 890 tx, ty, 0, 1, in computeTransformMatrix()
|
/frameworks/base/opengl/java/android/opengl/ |
D | Matrix.java | 289 final float ty = -(top + bottom) * r_height; in orthoM() local 295 m[mOffset +13] = ty; in orthoM()
|
/frameworks/base/core/jni/ |
D | android_view_RenderNode.cpp | 284 jobject clazz, jlong renderNodePtr, float ty) { in android_view_RenderNode_setTranslationY() argument 285 return SET_AND_DIRTY(setTranslationY, ty, RenderNode::TRANSLATION_Y | RenderNode::Y); in android_view_RenderNode_setTranslationY()
|
/frameworks/base/docs/html-intl/intl/vi/preview/ |
D | download.jd | 29 1.4 "Google" có nghĩa là Google Inc., một công ty ở Delaware với trụ sở kinh doanh chính tại 1600 A… 39 2.4 Nếu bạn sẽ sử dụng Preview trong nội bộ công ty hoặc tổ chức của bạn thì bạn đồng ý chịu ràng b… 89 … hữu trí tuệ thuộc sở hữu của các nhà cung cấp (hoặc bởi cá nhân hoặc công ty khác đại diện cho họ… 97 …hữu của Google hoặc những bên cung cấp dữ liệu (hoặc bởi cá nhân hoặc công ty khác đại diện cho họ… 129 …p luật cho phép, bạn đồng ý bảo vệ, bồi thường và đảm bảo Google, các công ty liên kết của họ và c… 143 …ty mà trong đó Google là công ty mẹ sẽ là bên thụ hưởng thứ ba của Thỏa thuận Cấp phép và rằng nhữ…
|
/frameworks/base/core/java/android/view/ |
D | ViewGroup.java | 1363 final float ty = event.mY; in dispatchDragEvent() local 1487 event.mY = ty; in dispatchDragEvent() 1499 event.mY = ty; in dispatchDragEvent() 1543 event.mY = ty; in dispatchDragEvent() 1583 final float ty = mCurrentDragStartEvent.mY; in notifyChildOfDragStart() local 1587 point[1] = ty; in notifyChildOfDragStart() 1594 mCurrentDragStartEvent.mY = ty; in notifyChildOfDragStart()
|
/frameworks/native/opengl/libagl/ |
D | matrix.cpp | 872 const GLfloat ty = -(top + bottom) * r_height; in orthof() local 879 f[13] = ty; in orthof()
|
/frameworks/wilhelm/tests/sandbox/ |
D | xaplay.c | 721 printf(" ty = %u\n", timedTextStreamInformation.ty); in main()
|
/frameworks/base/docs/html-intl/intl/vi/preview/features/ |
D | security-config.jd | 91 được cấp bởi một CA nội bộ của công ty, v.v.). 117 mà bạn tin cậy, chẳng hạn như CA nội bộ của công ty.
|