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

  /development/samples/ApiDemos/src/com/example/android/apis/app/
SetWallpaperActivity.java 44 final static private int[] mColors =
70 int mColor = (int) Math.floor(Math.random() * mColors.length);
71 wallpaperDrawable.setColorFilter(mColors[mColor], PorterDuff.Mode.MULTIPLY);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PathEffects.java 38 private int[] mColors;
68 mColors = new int[] { Color.BLACK, Color.RED, Color.BLUE,
86 mPaint.setColor(mColors[i]);
ColorFilters.java 45 private int[] mColors;
94 mColors = new int[] {
148 for (int color : mColors) {
CreateBitmap.java 60 private int[] mColors;
76 mColors = createColors();
77 int[] colors = mColors;
122 canvas.drawBitmap(mColors, 0, STRIDE, 0, 0, WIDTH, HEIGHT,
125 canvas.drawBitmap(mColors, 0, STRIDE, 0, 0, WIDTH, HEIGHT,
Vertices.java 44 private final int[] mColors = new int[10];
ColorPickerDialog.java 38 private final int[] mColors;
44 mColors = new int[] {
48 Shader s = new SweepGradient(0, 0, mColors, null);
193 mCenterPaint.setColor(interpColor(mColors, unit));
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
GradientShader.java 33 protected final int[] mColors;
62 mColors = colors;
74 private final int[] mColors;
80 mColors = colors;
111 mGradient[i] = computeColor(mColors[prevPos], mColors[nextPos], percent);
  /frameworks/base/core/java/android/content/res/
ColorStateList.java 62 private int[][] mStateSpecs; // must be parallel to mColors
63 private int[] mColors; // must be parallel to mStateSpecs
78 mColors = colors;
158 int[] colors = new int[mColors.length];
162 colors[i] = (mColors[i] & 0xFFFFFF) | (alpha << 24);
251 mColors = new int[listSize];
253 System.arraycopy(colorList, 0, mColors, 0, listSize);
275 return mColors[i];
293 "mColors=" + Arrays.toString(mColors)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/os/
Sensors.java 65 private int mColors[] = new int[3*2];
76 mColors[0] = Color.argb(192, 255, 64, 64);
77 mColors[1] = Color.argb(192, 64, 128, 64);
78 mColors[2] = Color.argb(192, 64, 64, 255);
79 mColors[3] = Color.argb(192, 64, 255, 255);
80 mColors[4] = Color.argb(192, 128, 64, 128);
81 mColors[5] = Color.argb(192, 255, 255, 64);
193 paint.setColor(mColors[k]);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogFilter.java 79 private LogColors mColors;
475 mColors = colors;
544 item.setForeground(mColors.infoColor);
546 item.setForeground(mColors.debugColor);
548 item.setForeground(mColors.errorColor);
550 item.setForeground(mColors.warningColor);
552 item.setForeground(mColors.verboseColor);
LogPanel.java 129 private LogColors mColors;
329 mColors = colors;
    [all...]
  /packages/wallpapers/Basic/src/com/android/wallpaper/polarclock/
PolarClockWallpaper.java 177 private final int[] mColors = new int[COLORS_CACHE_COUNT];
196 final int[] colors = mColors;
229 return mColors[((int) (forAngle * COLORS_CACHE_COUNT))];
235 return mColors[((int) (forAngle * COLORS_CACHE_COUNT))];
241 return mColors[((int) (forAngle * COLORS_CACHE_COUNT))];
247 return mColors[((int) (forAngle * COLORS_CACHE_COUNT))];
253 return mColors[((int) (forAngle * COLORS_CACHE_COUNT))];

Completed in 1059 milliseconds