Searched defs:mCurrent (Results 1 - 6 of 6) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/anim/
H A DFloatAnimation.java23 private float mCurrent; field in class:FloatAnimation
28 mCurrent = from;
34 mCurrent = mFrom + (mTo - mFrom) * progress;
38 return mCurrent;
/packages/apps/Browser/src/com/android/browser/view/
H A DBasePieView.java38 protected int mCurrent; field in class:BasePieView
60 mCurrent = -1;
79 mCurrent = ix;
143 View v = mViews.get(mCurrent);
146 View v1 = mViews.get(mCurrent);
153 mViews.get(mCurrent).performClick();
154 mViews.get(mCurrent).setPressed(false);
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DFilterDeleteSet.java65 private ArrayList<Deletion> mCurrent = new ArrayList<Deletion>(); field in class:FilterDeleteSet
85 return mBaseSet.getMediaItemCount() - mCurrent.size();
117 int n = mCurrent.size();
122 Deletion d = mCurrent.get(i);
128 Deletion d = mCurrent.get(j);
137 Deletion d = mCurrent.get(m);
144 // We apply the pending requests in the mRequests to construct mCurrent in reload().
156 // Add the path into mCurrent if there is no duplicate.
157 int n = mCurrent.size();
160 if (mCurrent
[all...]
/packages/apps/Camera/src/com/android/camera/
H A DPreviewGestures.java53 private MotionEvent mCurrent; field in class:PreviewGestures
124 mCurrent = m;
314 cancelActivityTouchHandling(mCurrent);
316 if (mCurrent.getActionMasked() != MotionEvent.ACTION_MOVE) {
325 if (mCurrent.getActionMasked() != MotionEvent.ACTION_MOVE) {
/packages/apps/Browser/src/com/android/browser/
H A DPieControl.java281 private int mCurrent; field in class:PieControl.TabAdapter
287 mCurrent = -1;
322 if (position > mCurrent) {
340 mCurrent = index;
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DSlotView.java752 private int mCurrent = 0; field in class:SlotView.IntegerAnimation
762 mTarget = mCurrent = target;
767 mFrom = mCurrent;
774 return mCurrent;
783 mCurrent = Math.round(mFrom + progress * (mTarget - mFrom));

Completed in 119 milliseconds