Searched defs:dw (Results 1 - 10 of 10) sorted by relevance

/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/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.java60 void show(int dw, int dh, int layer, int color) { argument
63 dw + "x" + dh + " layer=" + layer + ")");
66 mLastDimWidth = dw;
69 mDimSurface.setSize(dw, dh);
75 } else if (mLastDimWidth != dw || mLastDimHeight != dh || mDimColor != color
78 dw + "x" + dh + " layer=" + layer + ")");
79 mLastDimWidth = dw;
83 mDimSurface.setSize(dw, dh);
H A DFakeWindowImpl.java81 void layout(int dw, int dh) { argument
83 mWindowHandle.touchableRegion.set(0, 0, dw, dh);
89 mWindowHandle.frameRight = dw;
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 DAppWindowAnimator.java184 boolean stepAnimationLocked(long currentTime, int dw, int dh) { argument
201 " @ " + currentTime + ": dw=" + dw + " dh=" + dh
205 animation.initialize(dw, dh, dw, dh);
H A DWindowManagerService.java1634 final int dw = mAppDisplayWidth;
1888 updateWallpaperOffsetLocked(wallpaper, dw, dh, false);
1956 boolean updateWallpaperOffsetLocked(WindowState wallpaperWin, int dw, int dh, argument
1962 int availw = wallpaperWin.mFrame.right-wallpaperWin.mFrame.left-dw;
2049 final int dw = mAppDisplayWidth;
2074 if (updateWallpaperOffsetLocked(wallpaper, dw, dh, sync)) {
2123 final int dw = mAppDisplayWidth;
2142 updateWallpaperOffsetLocked(wallpaper, dw, dh, false);
5456 int dw, dh;
5462 dw
6277 adjustDisplaySizeRanges(int rotation, int dw, int dh) argument
6294 reduceConfigLayout(int curLayout, int rotation, float density, int dw, int dh) argument
6373 computeSizeRangesAndScreenLayout(boolean rotated, int dw, int dh, float density, Configuration outConfig) argument
6405 reduceCompatConfigWidthSize(int curSize, int rotation, DisplayMetrics dm, int dw, int dh) argument
6417 computeCompatSmallestWidth(boolean rotated, DisplayMetrics dm, int dw, int dh) argument
[all...]
/frameworks/base/tools/aapt/
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.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
/frameworks/native/libs/gui/
H A DSurfaceTexture.cpp680 int32_t dw = (newWidth - mCurrentCrop.width())/2; local
681 outCrop.left -=dw;
682 outCrop.right += dw;

Completed in 542 milliseconds