Home | History | Annotate | Download | only in portability

Lines Matching refs:src

98         public GpsData(GpsData src) {
99 this.latitude = src.latitude;
100 this.longitude = src.longitude;
101 this.altitude = src.altitude;
102 this.timeStamp = src.timeStamp;
103 this.processingMethod = src.processingMethod;
113 * @param src The source settings.
116 protected CameraSettings(CameraSettings src) {
117 mGeneralSetting.putAll(src.mGeneralSetting);
118 mMeteringAreas.addAll(src.mMeteringAreas);
119 mFocusAreas.addAll(src.mFocusAreas);
120 mSizesLocked = src.mSizesLocked;
121 mPreviewFpsRangeMin = src.mPreviewFpsRangeMin;
122 mPreviewFpsRangeMax = src.mPreviewFpsRangeMax;
123 mPreviewFrameRate = src.mPreviewFrameRate;
125 (src.mCurrentPreviewSize == null ? null : new Size(src.mCurrentPreviewSize));
126 mCurrentPreviewFormat = src.mCurrentPreviewFormat;
128 (src.mCurrentPhotoSize == null ? null : new Size(src.mCurrentPhotoSize));
129 mJpegCompressQuality = src.mJpegCompressQuality;
130 mCurrentPhotoFormat = src.mCurrentPhotoFormat;
131 mCurrentZoomRatio = src.mCurrentZoomRatio;
132 mExposureCompensationIndex = src.mExposureCompensationIndex;
133 mCurrentFlashMode = src.mCurrentFlashMode;
134 mCurrentFocusMode = src.mCurrentFocusMode;
135 mCurrentSceneMode = src.mCurrentSceneMode;
136 mWhiteBalance = src.mWhiteBalance;
137 mVideoStabilizationEnabled = src.mVideoStabilizationEnabled;
138 mAutoExposureLocked = src.mAutoExposureLocked;
139 mAutoWhiteBalanceLocked = src.mAutoWhiteBalanceLocked;
140 mRecordingHintEnabled = src.mRecordingHintEnabled;
141 mGpsData = src.mGpsData;
142 mExifThumbnailSize = src.mExifThumbnailSize;