Searched defs:outParams (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/security/keymaster/
H A DOperationResult.java34 public final KeymasterArguments outParams; field in class:OperationResult
51 KeymasterArguments outParams) {
57 this.outParams = outParams;
66 outParams = KeymasterArguments.CREATOR.createFromParcel(in);
81 outParams.writeToParcel(out, flags);
49 OperationResult( int resultCode, IBinder token, long operationHandle, int inputConsumed, byte[] output, KeymasterArguments outParams) argument
/frameworks/base/core/java/com/android/internal/view/
H A DTooltipPopup.java95 WindowManager.LayoutParams outParams) {
96 outParams.token = anchorView.getWindowToken();
124 outParams.gravity = Gravity.CENTER_HORIZONTAL | Gravity.TOP;
145 outParams.x = mTmpAnchorPos[0] + offsetX - mTmpDisplayFrame.width() / 2;
155 outParams.y = yAbove;
157 outParams.y = yBelow;
161 outParams.y = yBelow;
163 outParams.y = yAbove;
94 computePosition(View anchorView, int anchorX, int anchorY, boolean fromTouch, WindowManager.LayoutParams outParams) argument
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DTooltipPopup.java105 WindowManager.LayoutParams outParams) {
132 outParams.gravity = Gravity.CENTER_HORIZONTAL | Gravity.TOP;
164 outParams.x = mTmpAnchorPos[0] + offsetX - mTmpDisplayFrame.width() / 2;
174 outParams.y = yAbove;
176 outParams.y = yBelow;
180 outParams.y = yBelow;
182 outParams.y = yAbove;
104 computePosition(View anchorView, int anchorX, int anchorY, boolean fromTouch, WindowManager.LayoutParams outParams) argument
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java1568 * The results of positioning are placed in {@code outParams}.
1571 * @param outParams the layout parameters used to display the drop down
1581 protected final boolean findDropDownPosition(View anchor, WindowManager.LayoutParams outParams, argument
1600 outParams.x = drawingLocation[0] + xOffset;
1601 outParams.y = drawingLocation[1] + anchorHeight + yOffset;
1613 outParams.gravity = computeGravity();
1614 outParams.width = width;
1615 outParams.height = height;
1622 outParams.x -= width - anchorWidth;
1626 final boolean fitsVertical = tryFitVertical(outParams, yOffse
1666 tryFitVertical(@onNull LayoutParams outParams, int yOffset, int height, int anchorHeight, int drawingLocationY, int screenLocationY, int displayFrameTop, int displayFrameBottom, boolean allowResize) argument
1695 positionInDisplayVertical(@onNull LayoutParams outParams, int height, int drawingLocationY, int screenLocationY, int displayFrameTop, int displayFrameBottom, boolean canResize) argument
1728 tryFitHorizontal(@onNull LayoutParams outParams, int xOffset, int width, int anchorWidth, int drawingLocationX, int screenLocationX, int displayFrameLeft, int displayFrameRight, boolean allowResize) argument
1746 positionInDisplayHorizontal(@onNull LayoutParams outParams, int width, int drawingLocationX, int screenLocationX, int displayFrameLeft, int displayFrameRight, boolean canResize) argument
[all...]
/frameworks/base/services/core/java/com/android/server/wallpaper/
H A DWallpaperManagerService.java1377 Bundle outParams, int wallpaperUserId) {
1399 if (outParams != null) {
1400 outParams.putInt("width", wallpaper.width);
1401 outParams.putInt("height", wallpaper.height);
1376 getWallpaper(IWallpaperManagerCallback cb, final int which, Bundle outParams, int wallpaperUserId) argument

Completed in 226 milliseconds