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

/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DAccessibilityNodeInfoHelper.java44 Rect displayRect = new Rect();
49 displayRect.top = 0;
50 displayRect.left = 0;
51 displayRect.right = outSize.x;
52 displayRect.bottom = outSize.y;
54 nodeRect.intersect(displayRect);
/frameworks/base/services/java/com/android/server/display/
H A DDisplayDevice.java135 * @param displayRect defines where on the display will layerStackRect be
136 * mapped to. displayRect is specified post-orientation, that is
140 Rect layerStackRect, Rect displayRect) {
145 || !mCurrentDisplayRect.equals(displayRect)) {
156 mCurrentDisplayRect.set(displayRect);
159 orientation, layerStackRect, displayRect);
139 setProjectionInTransactionLocked(int orientation, Rect layerStackRect, Rect displayRect) argument
/frameworks/base/core/java/android/view/
H A DSurface.java270 IBinder displayToken, int orientation, Rect layerStackRect, Rect displayRect);
642 int orientation, Rect layerStackRect, Rect displayRect) {
649 if (displayRect == null) {
650 throw new IllegalArgumentException("displayRect must not be null");
652 nativeSetDisplayProjection(displayToken, orientation, layerStackRect, displayRect);
269 nativeSetDisplayProjection( IBinder displayToken, int orientation, Rect layerStackRect, Rect displayRect) argument
641 setDisplayProjection(IBinder displayToken, int orientation, Rect layerStackRect, Rect displayRect) argument
/frameworks/av/media/libstagefright/wifi-display/
H A Dwfd.cpp101 Rect displayRect(1280, 720);
106 displayRect);
/frameworks/native/include/gui/
H A DSurfaceComposerClient.h135 * - displayRect defines where on the display will layerStackRect be
136 * mapped to. displayRect is specified post-orientation, that is
142 const Rect& displayRect);
/frameworks/base/core/jni/
H A Dandroid_view_Surface.cpp693 Rect displayRect; local
694 displayRect.left = env->GetIntField(displayRectObj, gRectClassInfo.left);
695 displayRect.top = env->GetIntField(displayRectObj, gRectClassInfo.top);
696 displayRect.right = env->GetIntField(displayRectObj, gRectClassInfo.right);
697 displayRect.bottom = env->GetIntField(displayRectObj, gRectClassInfo.bottom);
699 SurfaceComposerClient::setDisplayProjection(token, orientation, layerStackRect, displayRect);
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp163 const Rect& displayRect);
386 const Rect& displayRect) {
391 s.frame = displayRect;
565 const Rect& displayRect) {
567 layerStackRect, displayRect);
383 setDisplayProjection(const sp<IBinder>& token, uint32_t orientation, const Rect& layerStackRect, const Rect& displayRect) argument
562 setDisplayProjection(const sp<IBinder>& token, uint32_t orientation, const Rect& layerStackRect, const Rect& displayRect) argument

Completed in 199 milliseconds