HomeSort by relevance Sort by last modified time
    Searched defs:StrokeDescription (Results 1 - 5 of 5) sorted by null

  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
GestureDescriptionTest.java 38 new GestureDescription.StrokeDescription(mNominalPath, 0, 0);
46 new GestureDescription.StrokeDescription(mNominalPath, -1, NOMINAL_PATH_DURATION);
57 new GestureDescription.StrokeDescription(negativeStartXPath, 0, NOMINAL_PATH_DURATION);
68 new GestureDescription.StrokeDescription(negativeStartYPath, 0, NOMINAL_PATH_DURATION);
79 new GestureDescription.StrokeDescription(negativeEndXPath, 0, NOMINAL_PATH_DURATION);
90 new GestureDescription.StrokeDescription(negativeEndYPath, 0, NOMINAL_PATH_DURATION);
99 new GestureDescription.StrokeDescription(emptyPath, 0, NOMINAL_PATH_DURATION);
112 new GestureDescription.StrokeDescription(multiContourPath, 0, NOMINAL_PATH_DURATION);
125 new GestureDescription.StrokeDescription(path, 0, NOMINAL_PATH_DURATION));
132 new GestureDescription.StrokeDescription(path, 0, NOMINAL_PATH_DURATION))
    [all...]
  /frameworks/base/core/java/android/accessibilityservice/
GestureDescription.java 51 private final List<StrokeDescription> mStrokes = new ArrayList<>();
74 private GestureDescription(List<StrokeDescription> strokes) {
94 public StrokeDescription getStroke(@IntRange(from = 0) int index) {
129 StrokeDescription strokeDescription = mStrokes.get(i);
130 if (strokeDescription.hasPointForTime(time)) {
132 touchPoints[numPointsFound].mIsStartOfPath = (time == strokeDescription.mStartTime);
133 touchPoints[numPointsFound].mIsEndOfPath = (time == strokeDescription.mEndTime);
134 strokeDescription.getPosForTime(time, mTempPos);
145 private static long getTotalDuration(List<StrokeDescription> paths)
    [all...]
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 95 milliseconds