OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:processingMethod
(Results
1 - 4
of
4
) sorted by null
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
CameraSettings.java
74
public final String
processingMethod
;
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
;
[
all
...]
AndroidCamera2Settings.java
527
if (mGpsData == null || mGpsData.
processingMethod
== null) {
533
Location location = new Location(mGpsData.
processingMethod
);
AndroidCameraAgentImpl.java
716
if (gpsData.
processingMethod
!= null) {
723
parameters.setGpsProcessingMethod(gpsData.
processingMethod
);
[
all
...]
/frameworks/base/core/java/android/hardware/camera2/impl/
CameraMetadataNative.java
793
String
processingMethod
= get(CaptureResult.JPEG_GPS_PROCESSING_METHOD);
797
if (areValuesAllNull(
processingMethod
, coords, timeStamp)) {
801
Location l = new Location(translateProcessToLocationProvider(
processingMethod
));
[
all
...]
Completed in 88 milliseconds