Searched refs:getHeight (Results 276 - 300 of 602) sorted by relevance

<<11121314151617181920>>

/frameworks/base/core/tests/coretests/src/android/util/
H A DInternalSelectionView.java186 final int availableHeight = getHeight() - mPaddingTop - mPaddingBottom;
259 int yPerRow = getHeight() / mNumRows;
/frameworks/base/libs/hwui/
H A DCaches.cpp189 layer->getWidth(), layer->getHeight(),
192 memused += layer->getWidth() * layer->getHeight() * 4;
H A DLayer.h99 const float height = layer.getHeight();
118 inline uint32_t getHeight() const { function in class:android::uirenderer::Layer
H A DRenderNode.h166 int getHeight() { function in class:android::uirenderer::RenderNode
167 return properties().getHeight();
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DAutoFixFilter.java249 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
251 mHeight = inputFormat.getHeight();
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/ui/
H A DSurfaceRenderFilter.java121 mSurfaceView.getHeight(),
158 float currentAspectRatio = (float)input.getFormat().getWidth() / input.getFormat().getHeight();
/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/
H A DAssistOrbView.java236 - mLogo.getHeight() / 2.0f - mCircleMinSize / 7f;
254 top = (int) (getHeight() - circleSize / 2 - mBaseMargin - offset);
/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
H A DResourceModifiers.java67 mTexHeight = mBitmap.getHeight();
109 final float height = mBitmap.getHeight() / 8.0f;
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBlendComposite.java141 int height = Math.min(src.getHeight(), dstIn.getHeight());
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DRectShadowPainter.java121 canvas.clipRect(-canvas.getWidth(), -canvas.getHeight(), canvas.getWidth(),
122 canvas.getHeight(), Op.REPLACE);
/frameworks/support/v4/java/android/support/v4/view/
H A DPagerTabStrip.java263 final int height = getHeight();
282 int bottom = getHeight();
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DParameterUtils.java495 } else if (previewSize.getHeight() > activeArray.height()) {
500 float aspectRatioPreview = previewSize.getWidth() * 1.0f / previewSize.getHeight();
727 checkArgumentPositive(cropSize.getHeight(), "cropSize.height must be positive");
730 float zoomRatioHeight = activeArraySize.getHeight() * 1.0f / cropSize.getHeight();
/frameworks/base/core/java/android/view/
H A DSurfaceView.java176 mHaveFrame = getWidth() > 0 && getHeight() > 0;
317 int h = getHeight();
443 if (myHeight <= 0) myHeight = getHeight();
450 final boolean layoutSizeChanged = getWidth() != mLayout.width || getHeight() != mLayout.height;
476 mLayout.height = getHeight();
/frameworks/base/services/core/java/com/android/server/
H A DAssetAtlasService.java159 return b2.getHeight() - b1.getHeight();
256 buffer.getWidth(), buffer.getHeight(), Bitmap.Config.ARGB_8888);
271 if (atlas.pack(bitmap.getWidth(), bitmap.getHeight(), entry) != null) {
698 if (atlas.pack(bitmap.getWidth(), bitmap.getHeight(), entry) != null) {
/frameworks/base/rs/java/android/renderscript/
H A DAllocation.java609 if((mCurrentDimX != b.getWidth()) || (mCurrentDimY != b.getHeight())) {
776 Bitmap newBitmap = Bitmap.createBitmap(b.getWidth(), b.getHeight(), Bitmap.Config.ARGB_8888);
1261 Bitmap newBitmap = Bitmap.createBitmap(data.getWidth(), data.getHeight(), Bitmap.Config.ARGB_8888);
1268 validate2DRange(xoff, yoff, data.getWidth(), data.getHeight());
1988 tb.setY(b.getHeight());
2018 Bitmap newBitmap = Bitmap.createBitmap(b.getWidth(), b.getHeight(), Bitmap.Config.ARGB_8888);
2130 int height = b.getHeight();
2205 int height = xpos.getHeight();
2207 xneg.getWidth() != height || xneg.getHeight() != height ||
2208 ypos.getWidth() != height || ypos.getHeight() !
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DWindowDecorActionBar.java644 public int getHeight() { method in class:WindowDecorActionBar
645 return mContainerView.getHeight();
769 float startingY = -mContainerView.getHeight();
785 mSplitView.setTranslationY(mSplitView.getHeight());
830 float endingY = -mContainerView.getHeight();
846 mSplitView.getHeight()));
860 final int height = getHeight();
/frameworks/base/core/java/com/android/internal/widget/
H A DSlidingTab.java263 int dy = horiz ? 0: (alignment == ALIGN_TOP ? tab.getHeight() : -tab.getHeight());
597 float target = mThreshold * (isHorizontal() ? getWidth() : getHeight());
662 int height = slider.tab.getHeight();
663 int viewHeight = getHeight();
717 return isHorizontal() && y > - TRACKING_MARGIN && y < TRACKING_MARGIN + view.getHeight()
728 // onLayout(true, getLeft(), getTop(), getLeft() + getWidth(), getTop() + getHeight());
748 int deltaY = (int) y - handle.getTop() - (handle.getHeight() / 2);
H A DAutoScrollHelper.java469 VERTICAL, event.getY(), v.getHeight(), mTarget.getHeight());
907 if (lastView.getBottom() <= target.getHeight()) {
/frameworks/base/media/java/android/media/
H A DMediaMetadata.java582 if (bmp.getHeight() > maxBitmapSize || bmp.getWidth() > maxBitmapSize) {
760 float heightScale = maxSizeF / bmp.getHeight();
762 int height = (int) (bmp.getHeight() * scale);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSTileView.java210 updateRippleSize(getWidth(), getHeight());
288 final int cy = mDual ? mIcon.getTop() + mIcon.getHeight() / 2 : height / 2;
289 final int rad = (int)(mIcon.getHeight() * 1.25f);
/frameworks/native/libs/gui/tests/
H A DSurfaceTextureGLToGL_test.cpp55 ASSERT_EQ(texWidth, buf->getHeight());
59 ASSERT_EQ(texHeight, buf->getHeight());
74 ASSERT_EQ(texHeight, buf->getHeight());
/frameworks/support/v7/palette/src/main/java/android/support/v7/graphics/
H A DPalette.java274 final int maxDimension = Math.max(bitmap.getWidth(), bitmap.getHeight());
284 Math.round(bitmap.getHeight() * scaleRatio),
565 final int height = scaledBitmap.getHeight();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationPanelView.java401 : mKeyguardStatusBar.getHeight() + mNotificationTopPadding;
409 getHeight(),
410 mKeyguardStatusView.getHeight(),
791 || y <= mQsContainer.getY() + mQsContainer.getHeight());
1079 mQsContainer.setY(-mQsContainer.getHeight());
1082 mHeader.getCollapsedHeight() + mQsPeekHeight - mQsContainer.getHeight()
1105 mHeader.animate().y(-mHeader.getHeight())
1119 .y(-mQsContainer.getHeight())
1340 mHeader.setY(interpolate(getQsExpansionFraction(), -mHeader.getHeight(), 0));
1571 int maxHeight = mNotificationStackScroller.getHeight()
[all...]
/frameworks/av/cmds/screenrecord/
H A DFrameOutput.cpp124 int height = mEglWindow.getHeight();
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Stream.h136 uint32_t getHeight() const;

Completed in 993 milliseconds

<<11121314151617181920>>