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/core/java/com/android/server/wm/
H A DStrictModeFlash.java62 final int dw = mLastDW;
65 Rect dirty = new Rect(0, 0, dw, dh);
77 c.clipRect(new Rect(0, 0, dw, mThickness), Region.Op.REPLACE);
83 c.clipRect(new Rect(dw - mThickness, 0, dw, dh), Region.Op.REPLACE);
86 c.clipRect(new Rect(0, dh - mThickness, dw, dh), Region.Op.REPLACE);
106 void positionSurface(int dw, int dh) { argument
107 if (mLastDW == dw && mLastDH == dh) {
110 mLastDW = dw;
112 mSurfaceControl.setSize(dw, d
[all...]
H A DCircularDisplayMask.java144 void positionSurface(int dw, int dh, int rotation) { argument
145 if (mLastDW == dw && mLastDH == dh && mRotation == rotation) {
148 mLastDW = dw;
H A DEmulatorDisplayOverlay.java116 void positionSurface(int dw, int dh, int rotation) { argument
117 if (mLastDW == dw && mLastDH == dh && mRotation == rotation) {
120 mLastDW = dw;
H A DFakeWindowImpl.java80 void layout(int dw, int dh) { argument
82 mWindowHandle.touchableRegion.set(0, 0, dw, dh);
88 mWindowHandle.frameRight = dw;
H A DWatermark.java127 void positionSurface(int dw, int dh) { argument
128 if (mLastDW != dw || mLastDH != dh) {
129 mLastDW = dw;
131 mSurfaceControl.setSize(dw, dh);
138 final int dw = mLastDW;
142 Rect dirty = new Rect(0, 0, dw, dh);
157 int div = (dw+mTextWidth)/deltaX;
158 int rem = (dw+mTextWidth) - (div*deltaX);
169 if (x >= dw) {
170 x -= (dw
[all...]
H A DWindowManagerService.java1725 final int dw = displayInfo.logicalWidth;
1967 updateWallpaperOffsetLocked(wallpaper, dw, dh, false);
2072 boolean updateWallpaperOffsetLocked(WindowState wallpaperWin, int dw, int dh, argument
2078 int availw = wallpaperWin.mFrame.right-wallpaperWin.mFrame.left-dw;
2171 final int dw = displayInfo.logicalWidth;
2206 if (updateWallpaperOffsetLocked(wallpaper, dw, dh, sync)) {
2244 final int dw = displayInfo.logicalWidth;
2263 updateWallpaperOffsetLocked(wallpaper, dw, dh, false);
6031 private static void convertCropForSurfaceFlinger(Rect crop, int rot, int dw, int dh) { argument
6034 crop.top = dw
7080 adjustDisplaySizeRanges(DisplayInfo displayInfo, int rotation, int dw, int dh) argument
7098 reduceConfigLayout(int curLayout, int rotation, float density, int dw, int dh) argument
7118 computeSizeRangesAndScreenLayout(DisplayInfo displayInfo, boolean rotated, int dw, int dh, float density, Configuration outConfig) argument
7151 reduceCompatConfigWidthSize(int curSize, int rotation, DisplayMetrics dm, int dw, int dh) argument
7164 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 DGLConsumer.cpp888 int32_t dw = (newWidth - mCurrentCrop.width())/2; local
889 outCrop.left -=dw;
890 outCrop.right += dw;

Completed in 214 milliseconds