Searched defs:displayFrame (Results 1 - 6 of 6) sorted by relevance

/frameworks/native/opengl/tests/hwc/
H A DhwcRects.cpp21 * hwcRects [options] (graphicFormat displayFrame [attributes],)...
36 * displayFrame
149 displayFrame(defaultDisplayFrame) {};
158 struct hwc_rect displayFrame; member in class:Rectangle
322 layer->displayFrame = it->displayFrame;
325 layer->visibleRegionScreen.rects = &layer->displayFrame;
384 rect.displayFrame = hwcTestParseHwcRect(in, error);
393 rect.sourceDim = HwcTestDim(rect.displayFrame.right
394 - rect.displayFrame
[all...]
H A DhwcCommit.cpp176 struct hwc_rect displayFrame; member in class:Rectangle
246 struct displayFrame { struct in struct:meas
650 rect.displayFrame.left = x;
651 rect.displayFrame.top = y;
652 rect.displayFrame.right = x + startDim.width();
653 rect.displayFrame.bottom = y + startDim.height();
1291 // cause a portion or all of the foreground displayFrame
1294 foreground.displayFrame.left += 5;
1295 foreground.displayFrame.top += 5;
1296 foreground.displayFrame
[all...]
/frameworks/native/services/surfaceflinger/
H A DLayer.h595 Rect displayFrame; member in struct:android::Layer::HWCInfo
/frameworks/base/services/core/java/com/android/server/wm/
H A DAppTransition.java720 * @param displayFrame our display frame
725 float translationY, Rect displayFrame) {
729 final float fraction = Math.max(Math.abs(translationX) / displayFrame.width(),
730 Math.abs(translationY) / displayFrame.height());
736 Rect displayFrame) {
748 t = (float) mTmpRect.top / displayFrame.height();
750 int translationY = mClipRevealTranslationY + (int)(displayFrame.height() / 7f * t);
781 translationY, displayFrame);
1434 int orientation, Rect frame, Rect displayFrame, Rect insets,
1481 a = createClipRevealAnimationLocked(transit, enter, frame, displayFrame);
724 calculateClipRevealTransitionDuration(boolean cutOff, float translationX, float translationY, Rect displayFrame) argument
735 createClipRevealAnimationLocked(int transit, boolean enter, Rect appFrame, Rect displayFrame) argument
1433 loadAnimation(WindowManager.LayoutParams lp, int transit, boolean enter, int uiMode, int orientation, Rect frame, Rect displayFrame, Rect insets, @Nullable Rect surfaceInsets, boolean isVoiceInteraction, boolean freeform, int taskId) argument
[all...]
H A DWindowState.java683 * {@param insetFrame}. Also it respects {@param displayFrame} in case window has minimum
686 private void subtractInsets(Rect frame, Rect layoutFrame, Rect insetFrame, Rect displayFrame) { argument
687 final int left = Math.max(0, insetFrame.left - Math.max(layoutFrame.left, displayFrame.left));
688 final int top = Math.max(0, insetFrame.top - Math.max(layoutFrame.top, displayFrame.top));
689 final int right = Math.max(0, Math.min(layoutFrame.right, displayFrame.right) - insetFrame.right);
690 final int bottom = Math.max(0, Math.min(layoutFrame.bottom, displayFrame.bottom) - insetFrame.bottom);
2795 void applyGravityAndUpdateFrame(Rect containingFrame, Rect displayFrame) { argument
2868 Gravity.applyDisplay(mAttrs.gravity, displayFrame, mFrame);
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java167 * @param displayFrame The frame of the overall display in which this
187 public void computeFrameLw(Rect parentFrame, Rect displayFrame, argument

Completed in 134 milliseconds