Searched refs:processingMethod (Results 1 - 4 of 4) sorted by relevance

/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DCameraSettings.java74 public final String processingMethod; field in class:CameraSettings.GpsData
78 * depending on the value of {@code processingMethod}.
80 * <p>Setting {@code processingMethod} to {@code null} means that
85 String processingMethod) {
86 if (processingMethod == null &&
88 Log.w(TAG, "GpsData's nonzero data will be ignored due to null processingMethod");
94 this.processingMethod = processingMethod;
103 this.processingMethod = src.processingMethod;
84 GpsData(double latitude, double longitude, double altitude, long timeStamp, String processingMethod) argument
[all...]
H A DAndroidCamera2Settings.java527 if (mGpsData == null || mGpsData.processingMethod == null) {
533 Location location = new Location(mGpsData.processingMethod);
H A DAndroidCameraAgentImpl.java716 if (gpsData.processingMethod != null) {
723 parameters.setGpsProcessingMethod(gpsData.processingMethod);
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraMetadataNative.java821 String processingMethod = get(CaptureResult.JPEG_GPS_PROCESSING_METHOD);
825 if (areValuesAllNull(processingMethod, coords, timeStamp)) {
829 Location l = new Location(translateProcessToLocationProvider(processingMethod));

Completed in 136 milliseconds