Lines Matching refs:loc
464 Location loc = mLocationManager.getCurrentLocation(); in onSingleTapUp() local
465 Util.setGpsParameters(mParameters, loc); in onSingleTapUp()
469 mActivity.mCameraDevice.takePicture(null, null, null, new JpegPictureCallback(loc)); in onSingleTapUp()
1236 Location loc = mLocationManager.getCurrentLocation(); in setRecordLocation() local
1237 if (loc != null) { in setRecordLocation()
1238 mMediaRecorder.setLocation((float) loc.getLatitude(), in setRecordLocation()
1239 (float) loc.getLongitude()); in setRecordLocation()
1380 Location loc = mLocationManager.getCurrentLocation(); in generateVideoFilename() local
1381 if (loc != null) { in generateVideoFilename()
1382 mCurrentVideoValues.put(Video.Media.LATITUDE, loc.getLatitude()); in generateVideoFilename()
1383 mCurrentVideoValues.put(Video.Media.LONGITUDE, loc.getLongitude()); in generateVideoFilename()
2206 public JpegPictureCallback(Location loc) { in JpegPictureCallback() argument
2207 mLocation = loc; in JpegPictureCallback()
2219 private void storeImage(final byte[] data, Location loc) { in storeImage() argument
2226 data, title, dateTaken, loc, s.width, s.height, orientation, in storeImage()