OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isRotated
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/services/java/com/android/server/display/
DisplayDevice.java
193
boolean
isRotated
= (mCurrentOrientation == Surface.ROTATION_90
196
viewport.deviceWidth =
isRotated
? info.height : info.width;
197
viewport.deviceHeight =
isRotated
? info.width : info.height;
/frameworks/base/services/input/tests/
InputReader_test.cpp
141
bool
isRotated
= (orientation == DISPLAY_ORIENTATION_90
148
v.logicalRight =
isRotated
? height : width;
149
v.logicalBottom =
isRotated
? width : height;
152
v.physicalRight =
isRotated
? height : width;
153
v.physicalBottom =
isRotated
? width : height;
154
v.deviceWidth =
isRotated
? height : width;
155
v.deviceHeight =
isRotated
? width : height;
[
all
...]
Completed in 85 milliseconds