Home | History | Annotate | Download | only in data

Lines Matching refs:Location

21 import android.location.Location;
25 * Class that holds a tracker entry. An entry can be either a valid location, or
37 private Location mLocation;
65 // location extra keys used to retrieve debug info
87 private TrackerEntry(Location loc) {
89 mLocation = new Location(loc);
93 * Creates a TrackerEntry from a Location
95 static TrackerEntry createEntry(Location loc, float distFromNetLocation) {
131 private void setLocation(Location location) {
132 mLocation = location;
143 Location getLocation() {
215 Location location = new Location(tag);
216 location.setLatitude(cursor.getFloat(cursor
218 location.setLongitude(cursor.getFloat(cursor
223 location.setAccuracy(accuracy);
227 location.setAltitude(altitude);
231 location.setBearing(bearing);
235 location.setSpeed(speed);
237 location.setTime(cursor.getLong(cursor.getColumnIndex(LOC_TIME)));
238 entry.setLocation(location);