Home | History | Annotate | Download | only in data

Lines Matching refs:mLocation

37     private Location mLocation;
84 mLocation = null;
89 mLocation = new Location(loc);
132 mLocation = location;
144 return mLocation;
175 cValues.put(LATITUDE, mLocation.getLatitude());
176 cValues.put(LONGITUDE, mLocation.getLongitude());
177 if (mLocation.hasAccuracy()) {
178 cValues.put(ACCURACY, mLocation.getAccuracy());
180 if (mLocation.hasAltitude()) {
181 cValues.put(ALTITUDE, mLocation.getAltitude());
183 if (mLocation.hasSpeed()) {
184 cValues.put(SPEED, mLocation.getSpeed());
186 if (mLocation.hasBearing()) {
187 cValues.put(BEARING, mLocation.getBearing());
190 cValues.put(LOC_TIME, mLocation.getTime());
192 if (mLocation.getExtras() != null) {
194 Object val = mLocation.getExtras().get(key);