HomeSort by relevance Sort by last modified time
    Searched refs:isRotated (Results 1 - 4 of 4) sorted by null

  /frameworks/base/services/core/java/com/android/server/display/
DisplayDevice.java 198 boolean isRotated = (mCurrentOrientation == Surface.ROTATION_90
201 viewport.deviceWidth = isRotated ? info.height : info.width;
202 viewport.deviceHeight = isRotated ? info.width : info.height;
  /packages/apps/Camera2/src/com/android/camera/data/
VideoRotationMetadataLoader.java 16 static boolean isRotated(LocalData localData) {
LocalMediaData.java 692 return VideoRotationMetadataLoader.isRotated(this) ? getBestHeight() : getBestWidth();
697 return VideoRotationMetadataLoader.isRotated(this) ? getBestWidth() : getBestHeight();
    [all...]
  /frameworks/native/services/inputflinger/tests/
InputReader_test.cpp 142 bool isRotated = (orientation == DISPLAY_ORIENTATION_90
149 v.logicalRight = isRotated ? height : width;
150 v.logicalBottom = isRotated ? width : height;
153 v.physicalRight = isRotated ? height : width;
154 v.physicalBottom = isRotated ? width : height;
155 v.deviceWidth = isRotated ? height : width;
156 v.deviceHeight = isRotated ? width : height;
    [all...]

Completed in 991 milliseconds