Home
last modified time | relevance | path

Searched refs:windowHeight (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
DRecentsConfiguration.java350 public void getTaskStackBounds(int windowWidth, int windowHeight, int topInset, int rightInset, in getTaskStackBounds() argument
353 getSearchBarBounds(windowWidth, windowHeight, topInset, searchBarBounds); in getTaskStackBounds()
356 taskStackBounds.set(0, topInset, windowWidth - rightInset, windowHeight); in getTaskStackBounds()
359 taskStackBounds.set(0, searchBarBounds.bottom, windowWidth, windowHeight); in getTaskStackBounds()
367 public void getSearchBarBounds(int windowWidth, int windowHeight, int topInset, in getSearchBarBounds() argument
377 searchBarSpaceBounds.set(0, topInset, searchBarSize, windowHeight); in getSearchBarBounds()
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
DTaskStackViewLayoutAlgorithm.java69 public void computeRects(int windowWidth, int windowHeight, Rect taskStackBounds) { in computeRects() argument
71 mViewRect.set(0, 0, windowWidth, windowHeight); in computeRects()
DTaskStackView.java519 public void computeRects(int windowWidth, int windowHeight, Rect taskStackBounds, in computeRects() argument
522 mLayoutAlgorithm.computeRects(windowWidth, windowHeight, taskStackBounds); in computeRects()
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
DSlidingChallengeLayout.java889 final int windowHeight = mDisplayMetrics.heightPixels
891 final int diff = windowHeight - insetHeight;
920 final int windowHeight = mDisplayMetrics.heightPixels
925 windowHeight, MeasureSpec.EXACTLY);
/frameworks/base/libs/hwui/
DOpenGLRenderer.h512 void startTiling(const Rect& clip, int windowHeight, bool opaque = false, bool expand = false);
DOpenGLRenderer.cpp286 void OpenGLRenderer::startTiling(const Rect& clip, int windowHeight, bool opaque, bool expand) { in startTiling() argument
291 int topNotZero = (windowHeight - clip.bottom > 0) ? 1 : 0; in startTiling()
295 windowHeight - clip.bottom - topNotZero, in startTiling()
300 mCaches.startTiling(clip.left, windowHeight - clip.bottom, in startTiling()