Searched defs:windowHeight (Results 1 - 4 of 4) sorted by relevance

/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/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/libs/hwui/
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 8451 milliseconds