Searched refs:mDragging (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DDecorCaptionView.java83 private boolean mDragging = false; field in class:DecorCaptionView
207 if (!mDragging && mCheckForDragging && passedSlop(x, y)) {
209 mDragging = true;
212 } else if (mDragging && !mLeftMouseButtonReleased) {
225 if (!mDragging) {
229 mDragging = false;
232 return mDragging || mCheckForDragging;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSwipeHelper.java72 private boolean mDragging; field in class:SwipeHelper
258 mDragging = false;
303 mDragging = true;
313 final boolean captured = (mDragging || mLongPressSent);
314 mDragging = false;
321 return mDragging || mLongPressSent;
505 if ((mDragging && mCurrView == view) || mSnappingChild) {
530 if (!mDragging) {
594 mDragging = false;
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
H A DMediaController.java50 private boolean mDragging; field in class:MediaController
220 if (mController == null || mDragging) {
274 // We're setting the field "mDragging" to true for the duration of the dragging
282 mDragging = true;
300 mDragging = false;
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
H A DMediaController.java50 private boolean mDragging; field in class:MediaController
220 if (mController == null || mDragging) {
274 // We're setting the field "mDragging" to true for the duration of the dragging
282 mDragging = true;
300 mDragging = false;
/frameworks/base/core/java/android/widget/
H A DMediaController.java82 private boolean mDragging; field in class:MediaController
413 if (!mDragging && mShowing && mPlayer.isPlaying()) {
435 if (mPlayer == null || mDragging) {
565 // We're setting the field "mDragging" to true for the duration of the dragging
576 mDragging = true;
603 mDragging = false;
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeDialog.java391 private boolean mDragging;
397 if (!mDragging && event.getActionMasked() == MotionEvent.ACTION_DOWN
399 mDragging = true;
401 if (mDragging) {
406 mDragging = false;

Completed in 219 milliseconds