Searched refs:mDx (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DLinearGradient_Delegate.java105 private final float mDx; field in class:LinearGradient_Delegate.LinearGradientPaint
114 mDx = x1 - x0;
116 mDSize2 = mDx * mDx + mDy * mDy;
210 if (mDx == 0) {
213 pos = (x - mX0) / mDx;
216 float _x = (mDx*mDy*(y-mY0) + mDy*mDy*mX0 + mDx*mDx*x) / mDSize2;
218 pos = (_x - mX0) / mDx;
[all...]
/frameworks/base/libs/hwui/
H A DDisplayListOp.h404 : mDx(dx), mDy(dy) {}
407 renderer.translate(mDx, mDy);
411 OP_LOG("Translate by %f %f", mDx, mDy);
417 float mDx; member in class:android::uirenderer::TranslateOp
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java7753 private int mDx; field in class:RecyclerView.SmoothScroller.Action
7792 mDx = dx;
7802 recyclerView.mViewFlinger.smoothScrollBy(mDx, mDy);
7804 recyclerView.mViewFlinger.smoothScrollBy(mDx, mDy, mDuration);
7807 recyclerView.mViewFlinger.smoothScrollBy(mDx, mDy, mDuration, mInterpolator);
7832 return mDx;
7837 mDx = dx;
7882 mDx = dx;

Completed in 121 milliseconds