Searched refs:mCurrentGesture (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DGestureRecorder.java141 private Gesture mCurrentGesture; field in class:GestureRecorder
157 mCurrentGesture = null;
162 if (mCurrentGesture == null || mCurrentGesture.isComplete()) {
163 mCurrentGesture = new Gesture();
164 mGestures.add(mCurrentGesture);
166 mCurrentGesture.add(ev);
173 if (mCurrentGesture == null) {
174 mCurrentGesture = new Gesture();
175 mGestures.add(mCurrentGesture);
[all...]
/frameworks/base/core/java/android/gesture/
H A DGestureOverlayView.java106 private Gesture mCurrentGesture; field in class:GestureOverlayView
285 return mCurrentGesture;
289 if (mCurrentGesture != null) {
294 mCurrentGesture = gesture;
296 final Path path = mCurrentGesture.toPath();
403 if (mCurrentGesture != null && mGestureVisible) {
426 if (animated && mCurrentGesture != null) {
439 mCurrentGesture = null;
448 mCurrentGesture = null;
461 mCurrentGesture
[all...]

Completed in 250 milliseconds