Searched defs:height (Results 251 - 275 of 674) sorted by last modified time

<<11121314151617181920>>

/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPrintPreviewController.java91 public void onSizeChanged(int width, int height) { argument
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
H A DEmbeddedContentContainer.java25 public void onSizeChanged(int width, int height); argument
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/graph/
H A DUsageGraph.java108 void setDividerLoc(int height) { argument
109 mMiddleDividerLoc = 1 - height / mMaxY;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DImageWallpaper.java276 public void onSurfaceChanged(SurfaceHolder holder, int format, int width, int height) { argument
278 Log.d(TAG, "onSurfaceChanged: width=" + width + ", height=" + height);
281 super.onSurfaceChanged(holder, format, width, height);
346 final int dh = frame.height();
538 out.print(" height="); out.println(mDisplayHeightAtLastSurfaceSizeUpdate);
577 ortho.loadOrtho(0.0f, frame.width(), frame.height(), 0.0f, -1.0f, 1.0f);
591 glViewport(0, 0, frame.width(), frame.height());
780 if(frame.width() > maxSize[0] || frame.height() > maxSize[0]) {
784 frame.width() + "x" + frame.height()
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/analytics/
H A DDataCollector.java391 public void onTouchEvent(MotionEvent event, int width, int height) { argument
398 mCurrentSession.setTouchArea(width, height);
H A DSensorLoggerSession.java148 public void setTouchArea(int width, int height) { argument
150 mTouchAreaHeight = height;
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
H A DFalsingManager.java387 public void onTouchEvent(MotionEvent event, int width, int height) { argument
389 mDataCollector.onTouchEvent(event, width, height);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSTileBaseView.java83 private void updateRippleSize(int width, int height) { argument
86 final int cy = height / 2;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DTaskStack.java278 public boolean acceptsDrop(int x, int y, int width, int height, boolean isCurrentTarget) { argument
280 ? areaContainsPoint(expandedTouchDockArea, width, height, x, y)
281 : areaContainsPoint(touchArea, width, height, x, y);
334 mHintTextBounds.set((int) mHintTextPaint.measureText(mHintText), mTmpRect.height());
350 int y = bounds.top + (bounds.height() + mHintTextBounds.y) / 2;
456 * given {@param width} and {@param height}.
458 public boolean areaContainsPoint(RectF area, int width, int height, float x, float y) { argument
460 int top = (int) (area.top * height);
462 int bottom = (int) (area.bottom * height);
467 * Returns the docked task bounds with the given {@param width} and {@param height}
469 getPreDockedBounds(int width, int height) argument
478 getDockedBounds(int width, int height, int dividerSize, Rect insets, Resources res) argument
495 getDockedTaskStackBounds(Rect displayRect, int width, int height, int dividerSize, Rect insets, TaskStackLayoutAlgorithm layoutAlgorithm, Resources res, Rect windowRectOut) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DDropTarget.java26 * RecentsView, and the width/height are of the RecentsView.
28 boolean acceptsDrop(int x, int y, int width, int height, boolean isCurrentTarget); argument
H A DFixedSizeFrameLayout.java81 protected void measureContents(int width, int height) { argument
83 MeasureSpec.makeMeasureSpec(height, MeasureSpec.AT_MOST));
93 int height = getMeasuredHeight();
94 onSizeChanged(width, height, width, height);
H A DTaskView.java266 protected void measureContents(int width, int height) { argument
268 int heightWithoutPadding = height - mPaddingTop - mPaddingBottom;
275 setMeasuredDimension(width, height);
H A DTaskViewHeader.java317 onTaskViewSizeChanged(mTaskViewRect.width(), mTaskViewRect.height());
324 public void onTaskViewSizeChanged(int width, int height) { argument
325 mTaskViewRect.set(0, 0, width, height);
H A DTaskViewThumbnail.java77 // Visibility optimization, if the thumbnail height is less than the height of the header
113 public void onTaskViewSizeChanged(int width, int height) { argument
115 if (mTaskViewRect.width() == width && mTaskViewRect.height() == height) {
119 mTaskViewRect.set(0, 0, width, height);
120 setLeftTopRightBottom(0, 0, width, height);
131 int viewHeight = mTaskViewRect.height();
135 (int) (mThumbnailRect.height() * mThumbnailScale));
254 (float) mTaskViewRect.height() / mThumbnailRec
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
H A DGlobalScreenshot.java545 int x, int y, int width, int height) {
585 if (width != mDisplayMetrics.widthPixels || height != mDisplayMetrics.heightPixels) {
587 Bitmap cropped = Bitmap.createBitmap(mScreenBitmap, x, y, width, height);
629 if (rect.width() != 0 && rect.height() != 0) {
634 rect.left, rect.top, rect.width(), rect.height());
544 takeScreenshot(Runnable finisher, boolean statusBarVisible, boolean navBarVisible, int x, int y, int width, int height) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
H A DDividerWindowManager.java48 public void add(View view, int width, int height) { argument
50 width, height, TYPE_DOCK_DIVIDER,
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableNotificationRow.java528 * @param atLeastMinHeight should the value returned be at least the minimum height.
530 * @return the height of the heads up notification when pinned
1433 public void setActualHeight(int height, boolean notifyListeners) { argument
1434 super.setActualHeight(height, notifyListeners);
1436 mGuts.setActualHeight(height);
1439 int contentHeight = Math.max(getMinHeight(), height);
1443 mChildrenContainer.setActualHeight(height);
1446 mGuts.setActualHeight(height);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardClockPositionAlgorithm.java89 int notificationCount, int height, int keyguardStatusHeight, float emptyDragAmount) {
94 mHeight = height;
99 public float getMinStackScrollerPadding(int height, int keyguardStatusHeight) { argument
100 return mClockYFractionMin * height + keyguardStatusHeight / 2
88 setup(int maxKeyguardNotifications, int maxPanelHeight, float expandedHeight, int notificationCount, int height, int keyguardStatusHeight, float emptyDragAmount) argument
H A DNotificationPanelView.java76 // Cap and total height of Roboto font. Needs to be adjusted when font for the big clock is
166 * need to take this into account in our panel height calculation.
247 // recompute internal state when qspanel height changes
252 final int height = bottom - top;
254 if (height != oldHeight) {
331 // If we are running a size change animation, the animation takes care of the height of
333 // the desired height so when closing the QS detail, it stays smaller after the size change
355 int height = (int) mQsSizeChangeAnimator.getAnimatedValue();
356 mQsContainer.setHeightOverride(height);
521 float height
1177 setQsExpansion(float height) argument
[all...]
H A DPanelView.java156 if (DEBUG) logf("peek to height=%.1f", mPeekHeight);
230 * We capture touch events here and update the expand height here in case according to
637 // the animation only to the last notification, and then jump to the maximum panel height so
704 public void setExpandedHeight(float height) { argument
705 if (DEBUG) logf("setExpandedHeight(%.1f)", height);
706 setExpandedHeightInternal(height + getOverExpansionPixels());
725 // If the user isn't actively poking us, let's update the height
775 * This returns the maximum height of the panel. Children should override this if their
776 * desired height is not the full height
[all...]
H A DStatusBarHeaderView.java331 int height = mExpanded ? mExpandedHeight : mCollapsedHeight;
333 if (lp.height != height) {
334 lp.height = height;
480 float height = mCollapsedHeight + t * (mExpandedHeight - mCollapsedHeight);
481 if (height < mCollapsedHeight) {
482 height = mCollapsedHeight;
484 if (height > mExpandedHeight) {
485 height
499 setClipping(float height) argument
[all...]
H A DStatusBarIconController.java240 int height = mContext.getResources().getDimensionPixelSize(
245 setHeightAndCenter(imageView, height);
249 setHeightAndCenter(imageView, height);
252 private void setHeightAndCenter(ImageView imageView, int height) { argument
254 params.height = height;
H A DStatusBarWindowView.java320 public LayoutParams(int width, int height) { argument
321 super(width, height);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java115 * mCurrentStackHeight is the actual stack height, mLastSetStackHeight is the stack height set
509 float height = child.getMeasuredHeight();
513 (int) height);
664 * Update the height of the stack to a new height.
666 * @param height the new height of the stack
668 public void setStackHeight(float height) { argument
669 mLastSetStackHeight = height;
3711 setHeadsUpBoundaries(int height, int bottomBarHeight) argument
[all...]
H A DStackViewState.java35 public int height; field in class:StackViewState
70 height = svs.height;

Completed in 396 milliseconds

<<11121314151617181920>>