Home
last modified time | relevance | path

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

/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/Path/
DReferencePath.java59 if (mPathMarkers.size() == 1) { in removeLastMarker()
61 mPathMarkers.clear(); in removeLastMarker()
76 int currentLocation = mCurrentPath.indexOf(mPathMarkers.get(mPathMarkers.size() - 1)); in calculatePathRemaining()
99 if (mPathMarkers.size() < Manager.MAX_MARKER_NUMBER - 1) { in testValidationSelection()
101 if (mPathMarkers.size() == 2) { in testValidationSelection()
104 } else if (mPathMarkers.size() == Manager.MAX_MARKER_NUMBER - 1) { in testValidationSelection()
117 for (Waypoint waypoint : mPathMarkers) { in validateWaypointDistance()
132 float[] A = mPathMarkers.get(0).getCoordinates(); in validateAreaCovered()
133 float[] B = mPathMarkers.get(1).getCoordinates(); in validateAreaCovered()
158 float[] firstMarkerCoordinates = mPathMarkers.get(0).getCoordinates(); in validateBackToStart()
DPath.java33 protected ArrayList<Waypoint> mPathMarkers = new ArrayList<>(); field in Path
56 mPathMarkers.add(waypoint); in createWaypointAndAddToPath()
93 Waypoint markerToRemove = mPathMarkers.get(mPathMarkers.size() - 1); in removeLastMarker()
95 mPathMarkers.remove(markerToRemove); in removeLastMarker()
110 return new ArrayList<>(mPathMarkers); in getPathMarkers()
124 return mPathMarkers.size(); in getPathMarkersSize()
DRobustnessPath.java75 if (mPathMarkers.size() == 0) { in additionalChecks()