HomeSort by relevance Sort by last modified time
    Searched refs:mDebugPaint (Results 1 - 2 of 2) sorted by null

  /packages/apps/Launcher3/src/com/android/launcher3/graphics/
GradientView.java 66 private final Paint mDebugPaint = DEBUG ? new Paint() : null;
177 mDebugPaint.setColor(0xFF00FF00);
178 canvas.drawLine(0, startMaskY, mWidth, startMaskY, mDebugPaint);
179 canvas.drawLine(0, startMaskY + mMaskHeight, mWidth, startMaskY + mMaskHeight, mDebugPaint);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
NotificationStackScrollLayout.java 152 private Paint mDebugPaint;
424 mDebugPaint = new Paint();
425 mDebugPaint.setColor(0xffff0000);
426 mDebugPaint.setStrokeWidth(2);
427 mDebugPaint.setStyle(Paint.Style.STROKE);
476 canvas.drawLine(0, y, getWidth(), y, mDebugPaint);
478 canvas.drawLine(0, y, getWidth(), y, mDebugPaint);
480 canvas.drawLine(0, y, getWidth(), y, mDebugPaint);
    [all...]

Completed in 2766 milliseconds