Searched refs:flipped (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/services/core/java/com/android/server/wm/utils/ |
D | CoordinateTransforms.java | 108 final boolean flipped = info.rotation == ROTATION_90 || info.rotation == ROTATION_270; in transformToRotation() 109 final int h = flipped ? info.logicalWidth : info.logicalHeight; in transformToRotation() 110 final int w = flipped ? info.logicalHeight : info.logicalWidth; in transformToRotation() 130 final boolean flipped = newRotation == ROTATION_90 || newRotation == ROTATION_270; in transformToRotation() 131 final int h = flipped ? newWidth : newHeight; in transformToRotation() 132 final int w = flipped ? newHeight : newWidth; in transformToRotation()
|
/frameworks/native/opengl/libs/ETC1/ |
D | etc1.cpp | 168 etc1_uint32 low, bool second, bool flipped) { in decode_subblock() argument 172 if (flipped) { in decode_subblock() 180 if (flipped) { in decode_subblock() 228 bool flipped = (high & 1) != 0; in etc1_decode_block() local 229 decode_subblock(pOut, r1, g1, b1, tableA, low, false, flipped); in etc1_decode_block() 230 decode_subblock(pOut, r2, g2, b2, tableB, low, true, flipped); in etc1_decode_block() 248 etc1_byte* pColors, bool flipped, bool second) { in etc_average_colors_subblock() argument 253 if (flipped) { in etc_average_colors_subblock() 336 etc_compressed* pCompressed, bool flipped, bool second, in etc_encode_subblock_helper() argument 339 if (flipped) { in etc_encode_subblock_helper() [all …]
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | SeamlessRotator.java | 52 final boolean flipped = info.rotation == ROTATION_90 || info.rotation == ROTATION_270; in SeamlessRotator() 53 final int h = flipped ? info.logicalWidth : info.logicalHeight; in SeamlessRotator() 54 final int w = flipped ? info.logicalHeight : info.logicalWidth; in SeamlessRotator()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | ScreenDecorations.java | 903 final boolean flipped = (mRotation == RotationUtils.ROTATION_SEASCAPE in isStart() 905 return flipped ? !mInitialStart : mInitialStart; in isStart() 939 boolean flipped = mInfo.rotation == ROTATION_90 || mInfo.rotation == ROTATION_270; in updateBoundingPath() 941 int dw = flipped ? lh : lw; in updateBoundingPath() 942 int dh = flipped ? lw : lh; in updateBoundingPath()
|