Home | History | Annotate | Download | only in wm

Lines Matching defs:dw

127     void positionSurface(int dw, int dh) {
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+mTextWidth);