HomeSort by relevance Sort by last modified time
    Searched defs:dw (Results 1 - 18 of 18) sorted by null

  /frameworks/base/tools/aapt/
CrunchCache.cpp 85 DirectoryWalker* dw = new SystemDirectoryWalker(); local
88 mFileFinder->findFiles(mSourcePath, mExtensions, mSourceFiles,dw);
91 mFileFinder->findFiles(mDestPath,mExtensions,mDestFiles,dw);
93 delete dw;
  /frameworks/base/core/java/android/text/style/
DrawableMarginSpan.java 50 int dw = mDrawable.getIntrinsicWidth(); local
54 mDrawable.setBounds(ix, itop, ix+dw, itop+dh);
  /frameworks/base/services/java/com/android/server/wm/
StrictModeFlash.java 57 final int dw = mLastDW; local
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) {
102 if (mLastDW == dw && mLastDH == dh) {
105 mLastDW = dw;
107 mSurface.setSize(dw, dh)
    [all...]
Watermark.java 123 void positionSurface(int dw, int dh) {
124 if (mLastDW != dw || mLastDH != dh) {
125 mLastDW = dw;
127 mSurface.setSize(dw, dh);
134 final int dw = mLastDW; local
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+mTextWidth)
    [all...]
WindowState.java 983 mAnimation.initialize(mFrame.width(), mFrame.height(), dw, dh); local
    [all...]
WindowManagerService.java 1484 final int dw = mAppDisplayWidth; local
1904 final int dw = mAppDisplayWidth; local
1960 final int dw = mAppDisplayWidth; local
5061 int dw, dh; local
6045 final int dw = mCurDisplayWidth; local
    [all...]
  /external/skia/src/effects/
SkBlurMask.cpp 98 int dw = sw + 2*rx; local
111 for (int x = 0; x < dw; x++) {
147 int dw = sw + 2*rx; local
163 for (int x = 0; x < dw; x++) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
StatusBarIconView.java 249 int dw = r.left + tw + r.right; local
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);
  /packages/apps/Launcher2/src/com/android/launcher2/
Cling.java 195 int dw = (int) (scale * mPunchThroughGraphic.getIntrinsicWidth()); local
204 mPunchThroughGraphic.setBounds(cx - dw/2, cy - dh/2, cx + dw/2, cy + dh/2);
  /external/libvpx/vpx_scale/generic/
vpxscale.c 617 int dw = (hscale - 1 + src->y_width * hratio) / hscale; local
622 (unsigned char *) dst->y_buffer, dst->y_stride, dw, dh,
625 if (dw < (int)dst->y_width)
627 duck_memset(dst->y_buffer + i * dst->y_stride + dw - 1, dst->y_buffer[i*dst->y_stride+dw-2], dst->y_width - dw + 1);
634 (unsigned char *) dst->u_buffer, dst->uv_stride, dw / 2, dh / 2,
637 if (dw / 2 < (int)dst->uv_width)
639 duck_memset(dst->u_buffer + i * dst->uv_stride + dw / 2 - 1, dst->u_buffer[i*dst->uv_stride+dw/2-2], dst->uv_width - dw / 2 + 1)
898 int dw = scale_vars->expanded_frame_width; local
937 dst_yuv_config->uv_stride, dw, dh); local
943 dst_yuv_config->uv_stride, dw, dh); local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ImageWallpaper.java 287 final int dw = frame.width(); local
289 final int availw = dw - mBackgroundWidth;
  /external/chromium/third_party/libjingle/source/talk/base/
physicalsocketserver.cc 1487 DWORD dw = WSAWaitForMultipleEvents(static_cast<DWORD>(events.size()), local
    [all...]
  /packages/apps/Mms/src/com/android/mms/model/
SmilHelper.java 213 DrmWrapper dw; local
215 dw = new DrmWrapper(contentType, part.getDataUri(),
217 contentType = dw.getContentType();
  /external/opencv/cv/src/
cvsurf.cpp 282 float DW[PATCH_SZ][PATCH_SZ];
283 CvMat _DW = cvMat(PATCH_SZ, PATCH_SZ, CV_32F, DW);
322 DW[i][j] = (float)val;
476 float dw = DW[i][j]; local
477 float vx = (PATCH[i][j+1] - PATCH[i][j] + PATCH[i+1][j+1] - PATCH[i+1][j])*dw;
478 float vy = (PATCH[i+1][j] - PATCH[i][j] + PATCH[i+1][j+1] - PATCH[i][j+1])*dw;
  /external/opencv/ml/src/
mlann_mlp.cpp 878 CvMat* dw = 0; local
903 CV_CALL( dw = cvCreateMat( wbuf->rows, wbuf->cols, wbuf->type ));
904 cvZero( dw );
1021 cvInitMatHeader( &_dw, n1+1, n2, CV_64F, dw->data.db + (weights[i] - weights[0]) );
1040 cvReleaseMat( &dw );
1052 CvMat* dw = 0; local
1084 CV_CALL( dw = cvCreateMat( wbuf->rows, wbuf->cols, wbuf->type ));
1085 cvSet( dw, cvScalarAll(params.rp_dw0) );
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_blit_A.c 1806 Uint32 sw, dw, s; local
1851 Uint32 dw = *(Uint32 *)dstp; local
    [all...]
  /frameworks/base/core/java/android/widget/
ProgressBar.java 1008 int dw = 0; local
    [all...]
  /packages/apps/MusicFX/src/com/android/musicfx/seekbar/
ProgressBar.java 984 int dw = 0; local
    [all...]

Completed in 553 milliseconds