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.java105 private Gesture mCurrentGesture; field in class:GestureOverlayView
277 return mCurrentGesture;
281 if (mCurrentGesture != null) {
286 mCurrentGesture = gesture;
288 final Path path = mCurrentGesture.toPath();
395 if (mCurrentGesture != null && mGestureVisible) {
418 if (animated && mCurrentGesture != null) {
431 mCurrentGesture = null;
440 mCurrentGesture = null;
453 mCurrentGesture
[all...]

Completed in 327 milliseconds