Searched refs:WayPoint (Results 1 - 6 of 6) sorted by relevance

/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
H A DWayPointContentProvider.java23 * Content provider to display {@link WayPoint} objects in a Table.
24 * <p/>The expected type for the input is {@link WayPoint}<code>[]</code>.
30 if (inputElement instanceof WayPoint[]) {
31 return (WayPoint[])inputElement;
H A DWayPointLabelProvider.java25 * Label Provider for {@link Table} objects displaying {@link WayPoint} objects.
36 if (element instanceof WayPoint) {
37 WayPoint wayPoint = (WayPoint)element;
H A DWayPoint.java23 public final class WayPoint extends LocationPoint { class in inherits:LocationPoint
H A DKmlParser.java67 List<WayPoint> mWayPoints;
70 WayPoint mCurrentWayPoint;
83 mWayPoints = new ArrayList<WayPoint>();
86 mWayPoints.add(mCurrentWayPoint = new WayPoint());
156 WayPoint[] getWayPoints() {
158 return mWayPoints.toArray(new WayPoint[mWayPoints.size()]);
200 * Returns the parsed {@link WayPoint} objects, or <code>null</code> if none were found (or
203 public WayPoint[] getWayPoints() {
H A DGpxParser.java79 List<WayPoint> mWayPoints;
85 WayPoint mCurrentWayPoint;
98 mWayPoints = new ArrayList<WayPoint>();
101 mWayPoints.add(mCurrentWayPoint = new WayPoint());
245 WayPoint[] getWayPoints() {
247 return mWayPoints.toArray(new WayPoint[mWayPoints.size()]);
351 * Returns the parsed {@link WayPoint} objects, or <code>null</code> if none were found (or
354 public WayPoint[] getWayPoints() {
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
H A DEmulatorControlPanel.java31 import com.android.ddmuilib.location.WayPoint;
711 if (selectedObject instanceof WayPoint) {
712 WayPoint wayPoint = (WayPoint)selectedObject;
933 if (selectedObject instanceof WayPoint) {
934 WayPoint wayPoint = (WayPoint)selectedObject;
961 if (input instanceof WayPoint[]) {
962 playKml((WayPoint[])input);
1363 private void playKml(final WayPoint[] trackPoint
[all...]

Completed in 71 milliseconds