Home
last modified time | relevance | path

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

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