Home
last modified time | relevance | path

Searched refs:dh (Results 1 – 23 of 23) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/
DStrictModeFlash.java76 final int dh = mLastDH; in drawIfNeeded() local
77 mBlastBufferQueue.update(mSurfaceControl, dw, dh, PixelFormat.RGBA_8888); in drawIfNeeded()
95 c.clipRect(new Rect(0, 0, mThickness, dh)); in drawIfNeeded()
100 c.clipRect(new Rect(dw - mThickness, 0, dw, dh)); in drawIfNeeded()
105 c.clipRect(new Rect(0, dh - mThickness, dw, dh)); in drawIfNeeded()
126 void positionSurface(int dw, int dh, SurfaceControl.Transaction t) { in positionSurface() argument
127 if (mLastDW == dw && mLastDH == dh) { in positionSurface()
131 mLastDH = dh; in positionSurface()
132 t.setBufferSize(mSurfaceControl, dw, dh); in positionSurface()
DWatermark.java133 void positionSurface(int dw, int dh, SurfaceControl.Transaction t) { in positionSurface() argument
134 if (mLastDW != dw || mLastDH != dh) { in positionSurface()
136 mLastDH = dh; in positionSurface()
137 t.setBufferSize(mSurfaceControl, dw, dh); in positionSurface()
148 final int dh = mLastDH; in drawIfNeeded() local
151 mBlastBufferQueue.update(mSurfaceControl, dw, dh, PixelFormat.RGBA_8888); in drawIfNeeded()
174 while (y < (dh + mTextHeight)) { in drawIfNeeded()
DEmulatorDisplayOverlay.java123 void positionSurface(int dw, int dh, int rotation, SurfaceControl.Transaction t) { in positionSurface() argument
124 if (mLastDW == dw && mLastDH == dh && mRotation == rotation) { in positionSurface()
128 mLastDH = dh; in positionSurface()
DInputConsumerImpl.java112 void layout(SurfaceControl.Transaction t, int dw, int dh) { in layout() argument
113 mTmpRect.set(0, 0, dw, dh); in layout()
DDisplayContent.java1958 final int dh = rotated ? mBaseDisplayWidth : mBaseDisplayHeight; in updateDisplayAndOrientation() local
1965 final int appWidth = mDisplayPolicy.getNonDecorDisplayWidth(dw, dh, rotation, uiMode, in updateDisplayAndOrientation()
1967 final int appHeight = mDisplayPolicy.getNonDecorDisplayHeight(dw, dh, rotation, uiMode, in updateDisplayAndOrientation()
1971 mDisplayInfo.logicalHeight = dh; in updateDisplayAndOrientation()
1988 computeSizeRangesAndScreenLayout(mDisplayInfo, rotated, uiMode, dw, dh, in updateDisplayAndOrientation()
2000 mBaseDisplayRect.set(0, 0, dw, dh); in updateDisplayAndOrientation()
2078 final int dh = rotated ? mBaseDisplayWidth : mBaseDisplayHeight; in computeScreenConfiguration() local
2079 outConfig.windowConfiguration.setMaxBounds(0, 0, dw, dh); in computeScreenConfiguration()
2085 computeScreenAppConfiguration(outConfig, dw, dh, rotation, uiMode, displayCutout); in computeScreenConfiguration()
2090 displayInfo.logicalHeight = dh; in computeScreenConfiguration()
[all …]
DInputMonitor.java216 void layoutInputConsumers(int dw, int dh) { in layoutInputConsumers() argument
217 if (mDisplayWidth == dw && mDisplayHeight == dh) { in layoutInputConsumers()
221 mDisplayHeight = dh; in layoutInputConsumers()
225 mInputConsumers.valueAt(i).layout(mInputTransaction, dw, dh); in layoutInputConsumers()
DWallpaperController.java300 final int dh = parentFrame.height(); in updateWallpaperOffset() local
325 int availh = wallpaperWin.getFrame().bottom - wallpaperWin.getFrame().top - dh; in updateWallpaperOffset()
DActivityRecord.java8754 final int dh = rotated ? display.mBaseDisplayWidth : display.mBaseDisplayHeight; in CompatDisplayInsets() local
8757 policy.getNonDecorInsetsLw(rotation, dw, dh, cutout, mNonDecorInsets[rotation]); in CompatDisplayInsets()
8772 updateInsetsForBounds(unfilledContainerBounds, dw, dh, mNonDecorInsets[rotation]); in CompatDisplayInsets()
8773 updateInsetsForBounds(unfilledContainerBounds, dw, dh, mStableInsets[rotation]); in CompatDisplayInsets()
8804 final int dh = rotated ? mWidth : mHeight; in getBoundsByRotation() local
8805 outBounds.set(0, 0, dw, dh); in getBoundsByRotation()
DWindowState.java2815 final int dh = mTmpRect.height(); in getSurfaceTouchableRegion() local
2816 region.set(-dw, -dh, dw + dw, dh + dh); in getSurfaceTouchableRegion()
/frameworks/base/core/java/android/net/vcn/persistablebundleutils/
DChildSaProposalUtils.java67 for (int dh : dhGroupArray) { in fromPersistableBundle()
68 builder.addDhGroup(dh); in fromPersistableBundle()
DIkeSaProposalUtils.java75 for (int dh : dhGroupArray) { in fromPersistableBundle()
76 builder.addDhGroup(dh); in fromPersistableBundle()
/frameworks/base/core/java/android/text/style/
DDrawableMarginSpan.java90 int dh = mDrawable.getIntrinsicHeight(); in drawLeadingMargin() local
93 mDrawable.setBounds(ix, itop, ix + dw, itop + dh); in drawLeadingMargin()
/frameworks/base/core/java/android/widget/
DAbsSeekBar.java886 int dh = 0;
889 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
890 dh = Math.max(thumbHeight, dh);
893 dh += mPaddingTop + mPaddingBottom;
896 resolveSizeAndState(dh, heightMeasureSpec, 0));
DProgressBar.java2185 int dh = 0; in onMeasure() local
2190 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight())); in onMeasure()
2196 dh += mPaddingTop + mPaddingBottom; in onMeasure()
2199 final int measuredHeight = resolveSizeAndState(dh, heightMeasureSpec, 0); in onMeasure()
DMagnifier.java1132 final float dh = h - h0; in fillMeshMatrix() local
1141 final float hl = h0 + dh * colIndex / mMeshWidth; in fillMeshMatrix()
1144 final float hr = h - dh * colIndex / mMeshWidth; in fillMeshMatrix()
/frameworks/native/libs/nativedisplay/surfacetexture/
DSurfaceTexture.cpp376 uint32_t dh = currentHeight - newHeight; in scaleDownCrop() local
377 auto halfdh = dh / 2; in scaleDownCrop()
380 outCrop.bottom -= (dh - halfdh); in scaleDownCrop()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DStatusBarIconView.java544 int dh = r.top + th + r.bottom; in placeNumber() local
545 if (dh < mNumberBackground.getMinimumWidth()) { in placeNumber()
546 dh = mNumberBackground.getMinimumWidth(); in placeNumber()
548 mNumberY = h-r.bottom-((dh-r.top-th-r.bottom)/2); in placeNumber()
549 mNumberBackground.setBounds(w-dw, h-dh, w, h); in placeNumber()
/frameworks/native/libs/gui/
DGLConsumer.cpp774 uint32_t dh = currentHeight - newHeight; in scaleDownCrop() local
775 auto halfdh = dh / 2; in scaleDownCrop()
778 outCrop.bottom -= (dh - halfdh); in scaleDownCrop()
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DSizeCompatTests.java122 private void setUpDisplaySizeWithApp(int dw, int dh) { in setUpDisplaySizeWithApp() argument
123 final TestDisplayContent.Builder builder = new TestDisplayContent.Builder(mAtm, dw, dh); in setUpDisplaySizeWithApp()
1128 final int dh = 2500; in testLaunchWithFixedRotationTransform() local
1130 setUpApp(new TestDisplayContent.Builder(mAtm, dw, dh).setNotch(notchHeight).build()); in testLaunchWithFixedRotationTransform()
1149 assertEquals(notchHeight + (dh - notchHeight - mActivity.getBounds().width()) / 2, in testLaunchWithFixedRotationTransform()
1157 assertEquals(new Rect(mActivity.getBounds().left, 0, dh - mActivity.getBounds().right, 0), in testLaunchWithFixedRotationTransform()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DScreenDecorations.java1086 int dh = flipped ? lw : lh; in updateBoundingPath() local
1088 Path path = DisplayCutout.pathFromResources(getResources(), dw, dh); in updateBoundingPath()
1095 transformPhysicalToLogicalCoordinates(mInfo.rotation, dw, dh, m); in updateBoundingPath()
/frameworks/base/services/tests/servicestests/res/raw/
Dbackup_telephony_with_password71 …�`��SJ���X��x��AY-��a�'%�ُ���P��A#l��*ZW./�Y��4�CN��R��Z�7�O=��6 �����dhϡ:8Dj�M/� yިg��p�rR…
/frameworks/base/config/
Dpreloaded-classes11046 com.android.org.bouncycastle.jcajce.provider.asymmetric.dh.KeyFactorySpi
Dboot-image-profile.txt45515 Lcom/android/org/bouncycastle/jcajce/provider/asymmetric/dh/KeyFactorySpi;