Searched refs:dw (Results 1 - 18 of 18) sorted by relevance

/frameworks/base/services/java/com/android/server/wm/
H A DStrictModeFlash.java57 final int dw = mLastDW;
60 Rect dirty = new Rect(0, 0, dw, dh);
72 c.clipRect(new Rect(0, 0, dw, mThickness), Region.Op.REPLACE);
78 c.clipRect(new Rect(dw - mThickness, 0, dw, dh), Region.Op.REPLACE);
81 c.clipRect(new Rect(0, dh - mThickness, dw, dh), Region.Op.REPLACE);
101 void positionSurface(int dw, int dh) { argument
102 if (mLastDW == dw && mLastDH == dh) {
105 mLastDW = dw;
107 mSurface.setSize(dw, d
[all...]
H A DDimSurface.java53 void show(int dw, int dh, int layer, int color) { argument
56 dw + "x" + dh + " layer=" + layer + ")");
59 mLastDimWidth = dw;
62 mDimSurface.setSize(dw, dh);
68 } else if (mLastDimWidth != dw || mLastDimHeight != dh || mDimColor != color
71 dw + "x" + dh + " layer=" + layer + ")");
72 mLastDimWidth = dw;
76 mDimSurface.setSize(dw, dh);
H A DDimAnimator.java62 void show(int dw, int dh) { argument
65 dw + "x" + dh + ")");
68 mLastDimWidth = dw;
71 mDimSurface.setSize(dw, dh);
76 } else if (mLastDimWidth != dw || mLastDimHeight != dh) {
77 mLastDimWidth = dw;
79 mDimSurface.setSize(dw, dh);
H A DWatermark.java123 void positionSurface(int dw, int dh) { argument
124 if (mLastDW != dw || mLastDH != dh) {
125 mLastDW = dw;
127 mSurface.setSize(dw, dh);
134 final int dw = mLastDW;
138 Rect dirty = new Rect(0, 0, dw, dh);
153 int div = (dw+mTextWidth)/deltaX;
154 int rem = (dw+mTextWidth) - (div*deltaX);
165 if (x >= dw) {
166 x -= (dw
[all...]
H A DFakeWindowImpl.java74 void layout(int dw, int dh) { argument
76 mWindowHandle.touchableRegion.set(0, 0, dw, dh);
82 mWindowHandle.frameRight = dw;
H A DAppWindowToken.java199 boolean stepAnimationLocked(long currentTime, int dw, int dh) { argument
215 " @ " + currentTime + ": dw=" + dw + " dh=" + dh
218 animation.initialize(dw, dh, dw, dh);
H A DWindowManagerService.java1484 final int dw = mAppDisplayWidth;
1739 updateWallpaperOffsetLocked(wallpaper, dw, dh, false);
1816 boolean updateWallpaperOffsetLocked(WindowState wallpaperWin, int dw, int dh, argument
1822 int availw = wallpaperWin.mFrame.right-wallpaperWin.mFrame.left-dw;
1904 final int dw = mAppDisplayWidth;
1929 if (updateWallpaperOffsetLocked(wallpaper, dw, dh, sync)) {
1960 final int dw = mAppDisplayWidth;
1979 updateWallpaperOffsetLocked(wallpaper, dw, dh, false);
5068 int dw, dh;
5074 dw
5871 reduceConfigWidthSize(int curSize, int rotation, float density, int dw, int dh) argument
5879 reduceConfigLayout(int curLayout, int rotation, float density, int dw, int dh) argument
5958 computeSmallestWidthAndScreenLayout(boolean rotated, int dw, int dh, float density, Configuration outConfig) argument
5986 reduceCompatConfigWidthSize(int curSize, int rotation, DisplayMetrics dm, int dw, int dh) argument
5998 computeCompatSmallestWidth(boolean rotated, DisplayMetrics dm, int dw, int dh) argument
[all...]
H A DWindowState.java976 boolean stepAnimationLocked(long currentTime, int dw, int dh) { argument
988 " dw=" + dw + " dh=" + dh + " scale=" + mService.mWindowAnimationScale);
989 mAnimation.initialize(mFrame.width(), mFrame.height(), dw, dh);
/frameworks/base/tools/aapt/
H A DFileFinder.cpp43 DirectoryWalker* dw)
47 if (!dw->openDir(basePath)) {
55 while ((entry = dw->nextEntry()) != NULL) {
63 DirectoryWalker* copy = dw->clone();
70 checkAndAddFile(fullPath,dw->entryStats(),extensions,fileStore);
75 dw->closeDir();
41 findFiles(String8 basePath, Vector<String8>& extensions, KeyedVector<String8,time_t>& fileStore, DirectoryWalker* dw) argument
H A DCrunchCache.cpp85 DirectoryWalker* dw = new SystemDirectoryWalker(); local
88 mFileFinder->findFiles(mSourcePath, mExtensions, mSourceFiles,dw);
91 mFileFinder->findFiles(mDestPath,mExtensions,mDestFiles,dw);
93 delete dw;
H A DFileFinder.h27 DirectoryWalker* dw) = 0;
58 DirectoryWalker* dw);
/frameworks/base/tools/aapt/tests/
H A DMockFileFinder.h37 DirectoryWalker* dw)
35 findFiles(String8 basePath, Vector<String8>& extensions, KeyedVector<String8,time_t>& fileStore, DirectoryWalker* dw) argument
/frameworks/base/core/java/android/text/style/
H A DDrawableMarginSpan.java50 int dw = mDrawable.getIntrinsicWidth();
54 mDrawable.setBounds(ix, itop, ix+dw, itop+dh);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DStatusBarIconView.java249 int dw = r.left + tw + r.right;
250 if (dw < mNumberBackground.getMinimumWidth()) {
251 dw = mNumberBackground.getMinimumWidth();
253 mNumberX = w-r.right-((dw-r.right-r.left)/2);
259 mNumberBackground.setBounds(w-dw, h-dh, w, h);
/frameworks/base/core/java/android/widget/
H A DAbsSeekBar.java312 int dw = 0;
315 dw = Math.max(mMinWidth, Math.min(mMaxWidth, d.getIntrinsicWidth()));
319 dw += mPaddingLeft + mPaddingRight;
322 setMeasuredDimension(resolveSizeAndState(dw, widthMeasureSpec, 0),
H A DProgressBar.java1008 int dw = 0;
1011 dw = Math.max(mMinWidth, Math.min(mMaxWidth, d.getIntrinsicWidth()));
1015 dw += mPaddingLeft + mPaddingRight;
1018 setMeasuredDimension(resolveSizeAndState(dw, widthMeasureSpec, 0),
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DImageWallpaper.java287 final int dw = frame.width();
289 final int availw = dw - mBackgroundWidth;
/frameworks/base/media/tests/contents/media_api/music/
H A Dtest_amr_ietf.amr458 !��~y �����7�h����k-�<s^N��a�y$P�<|͠5睮��@<Ld[y�}K]8�PI1L�({���q��1��득�<B9�f�������:o0f7F�2�)�I��<4C���j{��*>�����=|a-�D�Ws��`<F�'��Z�����N@����L�;0���u� <B^��3kT����P� �) r��H��/r�<B�kw��kT��Z�X��, �Z���#+\p<B�gG���T��hW�.���6����mp`< �v��y'�.����h���M;����dw �9 <D�W'�(�w�ʵ� �Pnv'q�?2Go�<

Completed in 274 milliseconds