Searched refs:mouth (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DParameterUtils.java923 Point leftEye = face.leftEye, rightEye = face.rightEye, mouth = face.mouth;
924 if (leftEye != null && rightEye != null && mouth != null && leftEye.x != -2000 &&
926 mouth.x != -2000 && mouth.y != -2000) {
931 mouth = convertCameraPointToActiveArrayPoint(activeArray, zoomData,
934 api2Face = faceRect.toFace(face.id, leftEye, rightEye, mouth);
/frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
H A DCat.java146 tint(0xFFFFFFFF, D.leftEye, D.rightEye, D.mouth, D.nose);
155 tint(0xFF000000, D.mouth, D.nose);
301 public Drawable mouth; field in class:Cat.CatParts
338 mouth = context.getDrawable(R.drawable.mouth);
363 nose, mouth,
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DFrameProcessor.cpp225 face.mouth[0] = l.mParameters.arrayXToNormalizedWithCrop(
227 face.mouth[1] = l.mParameters.arrayYToNormalizedWithCrop(
233 face.mouth[0] = face.mouth[1] = -2000;
/frameworks/base/core/jni/
H A Dandroid_hardware_Camera.cpp384 && metadata->faces[i].mouth[0] != -2000 && metadata->faces[i].mouth[1] != -2000;
401 jobject mouth = env->NewObject(mPointClass, fields.point_constructor); local
402 env->SetIntField(mouth, fields.point_x, metadata->faces[i].mouth[0]);
403 env->SetIntField(mouth, fields.point_y, metadata->faces[i].mouth[1]);
404 env->SetObjectField(face, fields.face_mouth, mouth);
405 env->DeleteLocalRef(mouth);
1110 { "android/hardware/Camera$Face", "mouth", "Landroi
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
H A DMLand.java1241 Drawable antenna, eyes, mouth; field in class:MLand.Pop
1251 mouth = context.getDrawable(pick(MOUTHS));
1296 if (mouth != null) {
1297 mouth.setBounds(0, 0, c.getWidth(), c.getHeight());
1298 mouth.draw(c);
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraMetadataNative.java742 Point mouth = new Point(faceLandmarks[i*FACE_LANDMARK_SIZE+4],
745 leftEye, rightEye, mouth);
/frameworks/base/core/java/android/hardware/
H A DCamera.java1802 * The coordinates of the center of the mouth. The coordinates are in
1808 public Point mouth = null; field in class:Camera.Face

Completed in 1068 milliseconds