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

  /developers/samples/android/input/Multitouch/BasicMultitouch/src/com/example/android/input/multitouch/basicMultitouch/
TouchDisplayView.java 334 public final int[] COLORS = {
375 int color = COLORS[id % COLORS.length];
  /frameworks/base/libs/hwui/
FontRenderer.cpp 262 static const uint8_t COLORS[2] = { 0, 255 };
274 cacheBuffer[cacheY * cacheWidth + cacheX++] = COLORS[(b >> mask) & 0x1];
  /packages/apps/Gallery2/src/com/android/photos/views/
TiledImageView.java 220 private static int[] COLORS = new int[] {
256 mCanvas.drawColor(COLORS[level]);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
TouchPaint.java 50 * to perform various actions. Here we use one button to cycle colors and the
55 * the secondary button to cycle colors and the tertiary button to airbrush.
59 * have a button, which we use to cycle through colors.
75 /** Colors to cycle through. */
76 static final int[] COLORS = new int[] {
411 mColorIndex = (mColorIndex + 1) % COLORS.length;
429 mPaint.setColor(COLORS[mColorIndex]);
441 mPaint.setColor(COLORS[mColorIndex]);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
BeanBag.java 124 static int COLORS[] = {
185 final int color = pickInt(COLORS);
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDatabaseHelper.java 33 import android.provider.CalendarContract.Colors;
153 public static final String COLORS = "Colors";
204 + " SET calendar_color=(SELECT " + Colors.COLOR + " FROM " + Tables.COLORS + " WHERE "
205 + Colors.ACCOUNT_NAME + "=" + "new." + Calendars.ACCOUNT_NAME + " AND "
206 + Colors.ACCOUNT_TYPE + "=" + "new." + Calendars.ACCOUNT_TYPE + " AND "
207 + Colors.COLOR_KEY + "=" + "new." + Calendars.CALENDAR_COLOR_KEY + " AND "
208 + Colors.COLOR_TYPE + "=" + Colors.TYPE_CALENDAR + ")
    [all...]
CalendarProvider2.java 48 import android.provider.CalendarContract.Colors;
119 Colors.ACCOUNT_NAME,
120 Colors.ACCOUNT_TYPE,
121 Colors.COLOR_TYPE,
122 Colors.COLOR_KEY,
123 Colors.COLOR,
131 private static final String COLOR_FULL_SELECTION = Colors.ACCOUNT_NAME + "=? AND "
132 + Colors.ACCOUNT_TYPE + "=? AND " + Colors.COLOR_TYPE + "=? AND " + Colors.COLOR_KE
    [all...]

Completed in 186 milliseconds