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

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DRecentsConfiguration.java356 public void getTaskStackBounds(int windowWidth, int windowHeight, int topInset, int rightInset, argument
359 getSearchBarBounds(windowWidth, windowHeight, topInset, searchBarBounds);
362 taskStackBounds.set(0, topInset, windowWidth - rightInset, windowHeight);
365 taskStackBounds.set(0, searchBarBounds.bottom, windowWidth, windowHeight);
373 public void getSearchBarBounds(int windowWidth, int windowHeight, int topInset, argument
383 searchBarSpaceBounds.set(0, topInset, searchBarSize, windowHeight);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskStackViewLayoutAlgorithm.java81 public void computeRects(int windowWidth, int windowHeight, Rect taskStackBounds) { argument
83 mViewRect.set(0, 0, windowWidth, windowHeight);
H A DTaskStackView.java585 public void computeRects(int windowWidth, int windowHeight, Rect taskStackBounds, argument
588 mLayoutAlgorithm.computeRects(windowWidth, windowHeight, taskStackBounds);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A 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/
H A DOpenGLRenderer.h509 void startTiling(const Rect& clip, int windowHeight, bool opaque = false, bool expand = false);
H A DOpenGLRenderer.cpp286 void OpenGLRenderer::startTiling(const Rect& clip, int windowHeight, bool opaque, bool expand) { argument
291 int topNotZero = (windowHeight - clip.bottom > 0) ? 1 : 0;
295 windowHeight - clip.bottom - topNotZero,
300 mCaches.startTiling(clip.left, windowHeight - clip.bottom,

Completed in 259 milliseconds