Home
last modified time | relevance | path

Searched refs:rotation (Results 1 – 2 of 2) sorted by relevance

/system/apex/shim/build/
DAndroid.bp369 name: "com.android.apex.rotation.key.bob.pem",
376 name: "com.android.apex.rotation.key.bob.pk8",
377 srcs: [":com.android.apex.rotation.key.bob.pem"],
384 name: "com.android.apex.rotation.key.bob.x509.pem",
385 srcs: [":com.android.apex.rotation.key.bob.pem"],
392 name: "com.android.apex.rotation.key.bob.rot",
396 ":com.android.apex.rotation.key.bob.pk8",
397 ":com.android.apex.rotation.key.bob.x509.pem",
401 …-signer --key $(location :com.android.apex.rotation.key.bob.pk8) --cert $(location :com.android.ap…
406 name: "com.android.apex.rotation.key.bob.rot.rollback",
[all …]
/system/extras/power_profile/camera_avg/Application/src/main/java/com/example/android/powerprofile/cameraavg/
DCameraAvgFragment.java757 int rotation = activity.getWindowManager().getDefaultDisplay().getRotation(); in configureTransform() local
763 if (Surface.ROTATION_90 == rotation || Surface.ROTATION_270 == rotation) { in configureTransform()
770 matrix.postRotate(90 * (rotation - 2), centerX, centerY); in configureTransform()
771 } else if (Surface.ROTATION_180 == rotation) { in configureTransform()
840 int rotation = activity.getWindowManager().getDefaultDisplay().getRotation(); in captureStillPicture() local
841 captureBuilder.set(CaptureRequest.JPEG_ORIENTATION, getOrientation(rotation)); in captureStillPicture()
868 private int getOrientation(int rotation) { in getOrientation() argument
873 return (ORIENTATIONS.get(rotation) + mSensorOrientation + 270) % 360; in getOrientation()