Searched refs:rightEyePosition (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/hardware/camera2/params/ |
D | Face.java | 91 @NonNull Point leftEyePosition, @NonNull Point rightEyePosition, in Face() argument 93 init(bounds, score, id, leftEyePosition, rightEyePosition, mouthPosition); in Face() 127 @Nullable Point leftEyePosition, @Nullable Point rightEyePosition, in init() argument 134 checkNull("rightEyePosition", rightEyePosition); in init() 137 checkFace(leftEyePosition, rightEyePosition, mouthPosition); in init() 143 mRightEye = rightEyePosition; in init() 290 @Nullable Point rightEyePosition, @Nullable Point mouthPosition) { in checkFace() argument 291 if (leftEyePosition != null || rightEyePosition != null || mouthPosition != null) { in checkFace() 292 if (leftEyePosition == null || rightEyePosition == null || mouthPosition == null) { in checkFace() 454 public @NonNull Builder setRightEyePosition(@NonNull Point rightEyePosition) { in setRightEyePosition() argument [all …]
|