Home
last modified time | relevance | path

Searched refs:strokes (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/core/java/android/gesture/
H A DGesture.java108 final ArrayList<GestureStroke> strokes = mStrokes; in getLength() local
109 final int count = strokes.size(); in getLength()
112 len += strokes.get(i).length; in getLength()
132 final ArrayList<GestureStroke> strokes = mStrokes; in toPath() local
133 final int count = strokes.size(); in toPath()
136 path.addPath(strokes.get(i).getPath()); in toPath()
149 final ArrayList<GestureStroke> strokes = mStrokes; in toPath() local
150 final int count = strokes.size(); in toPath()
201 final int count = strokes.size(); in toBitmap()
256 final int count = strokes.size(); in serialize()
[all …]
H A DGestureUtils.java134 final ArrayList<GestureStroke> strokes = gesture.getStrokes(); in spatialSampling() local
135 final int count = strokes.size(); in spatialSampling()
140 final GestureStroke stroke = strokes.get(index); in spatialSampling()
/aosp14/frameworks/base/core/java/android/accessibilityservice/
H A DGestureDescription.java76 private GestureDescription(List<StrokeDescription> strokes) { in GestureDescription() argument
77 this(strokes, Display.DEFAULT_DISPLAY); in GestureDescription()
80 private GestureDescription(List<StrokeDescription> strokes, int displayId) { in GestureDescription() argument
81 mStrokes.addAll(strokes); in GestureDescription()