Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/wm/
DStrictModeFlash.java64 final int dh = mLastDH; in drawIfNeeded() local
66 Rect dirty = new Rect(0, 0, dw, dh); in drawIfNeeded()
84 c.clipRect(new Rect(0, 0, mThickness, dh)); in drawIfNeeded()
89 c.clipRect(new Rect(dw - mThickness, 0, dw, dh)); in drawIfNeeded()
94 c.clipRect(new Rect(0, dh - mThickness, dw, dh)); in drawIfNeeded()
115 void positionSurface(int dw, int dh) { in positionSurface() argument
116 if (mLastDW == dw && mLastDH == dh) { in positionSurface()
120 mLastDH = dh; in positionSurface()
121 mSurfaceControl.setBufferSize(dw, dh); in positionSurface()
DWatermark.java131 void positionSurface(int dw, int dh) { in positionSurface() argument
132 if (mLastDW != dw || mLastDH != dh) { in positionSurface()
134 mLastDH = dh; in positionSurface()
135 mSurfaceControl.setBufferSize(dw, dh); in positionSurface()
143 final int dh = mLastDH; in drawIfNeeded() local
146 Rect dirty = new Rect(0, 0, dw, dh); in drawIfNeeded()
170 while (y < (dh+mTextHeight)) { in drawIfNeeded()
DWallpaperWindowToken.java72 void updateWallpaperOffset(int dw, int dh, boolean sync) { in updateWallpaperOffset() argument
76 if (wallpaperController.updateWallpaperOffset(wallpaper, dw, dh, sync)) { in updateWallpaperOffset()
86 final int dh = displayInfo.logicalHeight; in updateWallpaperVisibility() local
99 wallpaperController.updateWallpaperOffset(wallpaper, dw, dh, false); in updateWallpaperVisibility()
128 final int dh = displayInfo.logicalHeight; in updateWallpaperWindows() local
134 wallpaperController.updateWallpaperOffset(wallpaper, dw, dh, false); in updateWallpaperWindows()
DEmulatorDisplayOverlay.java115 void positionSurface(int dw, int dh, int rotation) { in positionSurface() argument
116 if (mLastDW == dw && mLastDH == dh && mRotation == rotation) { in positionSurface()
120 mLastDH = dh; in positionSurface()
DCircularDisplayMask.java147 void positionSurface(int dw, int dh, int rotation) { in positionSurface() argument
148 if (mLastDW == dw && mLastDH == dh && mRotation == rotation) { in positionSurface()
152 mLastDH = dh; in positionSurface()
DDockedStackDividerController.java279 final int dh = rotated in initSnapAlgorithmForRotations() local
285 displayPolicy.getStableInsetsLw(rotation, dw, dh, displayCutout, mTmpRect); in initSnapAlgorithmForRotations()
287 config.orientation = (dw <= dh) ? ORIENTATION_PORTRAIT : ORIENTATION_LANDSCAPE; in initSnapAlgorithmForRotations()
289 final int appWidth = displayPolicy.getNonDecorDisplayWidth(dw, dh, rotation, in initSnapAlgorithmForRotations()
291 final int appHeight = displayPolicy.getNonDecorDisplayHeight(dw, dh, rotation, in initSnapAlgorithmForRotations()
293 displayPolicy.getNonDecorInsetsLw(rotation, dw, dh, displayCutout, mTmpRect); in initSnapAlgorithmForRotations()
301 config.screenWidthDp = (int) (displayPolicy.getConfigDisplayWidth(dw, dh, rotation, in initSnapAlgorithmForRotations()
303 config.screenHeightDp = (int) (displayPolicy.getConfigDisplayHeight(dw, dh, rotation, in initSnapAlgorithmForRotations()
307 rotationContext.getResources(), dw, dh, getContentWidth(), in initSnapAlgorithmForRotations()
DDisplayContent.java1601 final int dh = rotated ? mBaseDisplayWidth : mBaseDisplayHeight; in updateDisplayAndOrientation() local
1607 final int appWidth = mDisplayPolicy.getNonDecorDisplayWidth(dw, dh, mRotation, uiMode, in updateDisplayAndOrientation()
1609 final int appHeight = mDisplayPolicy.getNonDecorDisplayHeight(dw, dh, mRotation, uiMode, in updateDisplayAndOrientation()
1613 mDisplayInfo.logicalHeight = dh; in updateDisplayAndOrientation()
1629 computeSizeRangesAndScreenLayout(mDisplayInfo, rotated, uiMode, dw, dh, in updateDisplayAndOrientation()
1641 mBaseDisplayRect.set(0, 0, dw, dh); in updateDisplayAndOrientation()
1685 final int dh = displayInfo.logicalHeight; in computeScreenConfiguration() local
1686 config.orientation = (dw <= dh) ? ORIENTATION_PORTRAIT : ORIENTATION_LANDSCAPE; in computeScreenConfiguration()
1693 (int)(mDisplayPolicy.getConfigDisplayWidth(dw, dh, displayInfo.rotation, in computeScreenConfiguration()
1696 (int)(mDisplayPolicy.getConfigDisplayHeight(dw, dh, displayInfo.rotation, in computeScreenConfiguration()
[all …]
DInputConsumerImpl.java118 void layout(SurfaceControl.Transaction t, int dw, int dh) { in layout() argument
119 mTmpRect.set(0, 0, dw, dh); in layout()
DWallpaperController.java285 boolean updateWallpaperOffset(WindowState wallpaperWin, int dw, int dh, boolean sync) { in updateWallpaperOffset() argument
309 int availh = wallpaperWin.getFrameLw().bottom - wallpaperWin.getFrameLw().top - dh; in updateWallpaperOffset()
403 final int dh = displayInfo.logicalHeight; in updateWallpaperOffsetLocked() local
440 mWallpaperTokens.get(curTokenNdx).updateWallpaperOffset(dw, dh, sync); in updateWallpaperOffsetLocked()
DInputMonitor.java194 void layoutInputConsumers(int dw, int dh) { in layoutInputConsumers() argument
198 mInputConsumers.valueAt(i).layout(mInputTransaction, dw, dh); in layoutInputConsumers()
DActivityRecord.java3885 final int dh = rotated ? mDisplayWidth : mDisplayHeight; in CompatDisplayInsets() local
3888 policy.getNonDecorInsetsLw(rotation, dw, dh, cutout, mNonDecorInsets[rotation]); in CompatDisplayInsets()
3897 final int dh = rotated ? mDisplayWidth : mDisplayHeight; in getDisplayBoundsByRotation() local
3898 outBounds.set(0, 0, dw, dh); in getDisplayBoundsByRotation()
DWindowState.java2363 final int dh = mTmpRect.height(); in getSurfaceTouchableRegion() local
2364 region.set(-dw, -dh, dw + dw, dh + dh); in getSurfaceTouchableRegion()
/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/ml/nn/common/operations/
DHeatmapMaxKeypoint.cpp125 for (int32_t dh = -1; dh <= 1; dh++) { in heatmapMaxKeypointFloat32Nhwc() local
128 int32_t h = static_cast<int32_t>(maxIndexHeight) + dh; in heatmapMaxKeypointFloat32Nhwc()
138 localGrid[dh + 1][dw + 1] = heatmapBase[heatmapIndex]; in heatmapMaxKeypointFloat32Nhwc()
/frameworks/base/core/java/android/widget/
DAbsSeekBar.java878 int dh = 0;
881 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
882 dh = Math.max(thumbHeight, dh);
885 dh += mPaddingTop + mPaddingBottom;
888 resolveSizeAndState(dh, heightMeasureSpec, 0));
DProgressBar.java2123 int dh = 0; in onMeasure() local
2128 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight())); in onMeasure()
2134 dh += mPaddingTop + mPaddingBottom; in onMeasure()
2137 final int measuredHeight = resolveSizeAndState(dh, heightMeasureSpec, 0); in onMeasure()
/frameworks/base/libs/hwui/surfacetexture/
DSurfaceTexture.cpp388 uint32_t dh = currentHeight - newHeight; in scaleDownCrop() local
389 auto halfdh = dh / 2; in scaleDownCrop()
392 outCrop.bottom -= (dh - halfdh); in scaleDownCrop()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DStatusBarIconView.java508 int dh = r.top + th + r.bottom; in placeNumber() local
509 if (dh < mNumberBackground.getMinimumWidth()) { in placeNumber()
510 dh = mNumberBackground.getMinimumWidth(); in placeNumber()
512 mNumberY = h-r.bottom-((dh-r.top-th-r.bottom)/2); in placeNumber()
513 mNumberBackground.setBounds(w-dw, h-dh, w, h); in placeNumber()
/frameworks/native/libs/gui/
DGLConsumer.cpp775 uint32_t dh = currentHeight - newHeight; in scaleDownCrop() local
776 auto halfdh = dh / 2; in scaleDownCrop()
779 outCrop.bottom -= (dh - halfdh); in scaleDownCrop()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DScreenDecorations.java1061 int dh = flipped ? lw : lh; in updateBoundingPath() local
1063 mBoundingPath.set(DisplayCutout.pathFromResources(getResources(), dw, dh)); in updateBoundingPath() local
1065 transformPhysicalToLogicalCoordinates(mInfo.rotation, dw, dh, m); in updateBoundingPath()
/frameworks/ml/nn/tools/api/
Dtypes.spec3078 * [dx, dy, dw, dh], where dx and dy is the relative correction factor
3080 * and height, dw and dh is the log-scale relative correction factor
3772 * box deltas. The box deltas are encoded in the order of [dy, dx, dh, dw],
3775 * dh and dw is the log-scale relative correction factor for the width and
3787 * factor for dh in bounding box deltas.
3995 * in the order of [dx, dy, dw, dh], where dx and dy is the linear-scale
3997 * with respect to the width and height, dw and dh is the log-scale
/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-classes5447 com.android.org.bouncycastle.jcajce.provider.asymmetric.dh.KeyFactorySpi
Dboot-image-profile.txt38460 Lcom/android/org/bouncycastle/jcajce/provider/asymmetric/dh/KeyFactorySpi;