OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:wayPoint
(Results
1 - 2
of
2
) sorted by null
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
WayPointLabelProvider.java
25
* Label Provider for {@link Table} objects displaying {@link
WayPoint
} objects.
34
if (element instanceof
WayPoint
) {
35
WayPoint
wayPoint
= (
WayPoint
)element;
38
return
wayPoint
.getName();
40
return String.format("%.6f",
wayPoint
.getLongitude());
42
return String.format("%.6f",
wayPoint
.getLatitude());
44
if (
wayPoint
.hasElevation()) {
45
return String.format("%.1f",
wayPoint
.getElevation())
[
all
...]
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
EmulatorControlPanel.java
30
import com.android.ddmuilib.location.
WayPoint
;
113
private final static String PREFS_WAYPOINT_COL_NAME = "emulatorControl.
waypoint
.name"; //$NON-NLS-1$
114
private final static String PREFS_WAYPOINT_COL_LONGITUDE = "emulatorControl.
waypoint
.longitude"; //$NON-NLS-1$
115
private final static String PREFS_WAYPOINT_COL_LATITUDE = "emulatorControl.
waypoint
.latitude"; //$NON-NLS-1$
116
private final static String PREFS_WAYPOINT_COL_ELEVATION = "emulatorControl.
waypoint
.elevation"; //$NON-NLS-1$
117
private final static String PREFS_WAYPOINT_COL_DESCRIPTION = "emulatorControl.
waypoint
.desc"; //$NON-NLS-1$
709
if (selectedObject instanceof
WayPoint
) {
710
WayPoint
wayPoint
= (
WayPoint
)selectedObject
[
all
...]
Completed in 188 milliseconds