Searched defs:COLORS (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Gallery2/src/com/android/photos/views/
H A DTiledImageView.java327 private static final int[] COLORS = new int[] { field in class:TiledImageView.ColoredTiles
368 mCanvas.drawColor(COLORS[level]);
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarDatabaseHelper.java154 public static final String COLORS = "Colors"; field in interface:CalendarDatabaseHelper.Tables
205 + " SET calendar_color=(SELECT " + Colors.COLOR + " FROM " + Tables.COLORS + " WHERE "
219 + " SET eventColor=(SELECT " + Colors.COLOR + " FROM " + Tables.COLORS + " WHERE "
330 mColorsInserter = new DatabaseUtils.InsertHelper(db, Tables.COLORS);
749 db.execSQL("CREATE TABLE " + Tables.COLORS + " (" +
1563 + " SET calendar_color=(SELECT " + Colors.COLOR + " FROM " + Tables.COLORS
1576 + " SET eventColor=(SELECT " + Colors.COLOR + " FROM " + Tables.COLORS + " WHERE "
H A DCalendarProvider2.java248 private static final String SQL_DELETE_FROM_COLORS = "DELETE FROM " + Tables.COLORS + " WHERE "
895 case COLORS:
896 qb.setTables(Tables.COLORS);
2249 case COLORS:
2691 return mDb.query(Tables.COLORS, COLORS_PROJECTION, COLOR_FULL_SELECTION, new String[] {
3099 case COLORS:
3597 Cursor c = mDb.query(Tables.COLORS, COLORS_PROJECTION, selection, selectionArgs, null,
3640 return mDb.delete(Tables.COLORS, selection, selectionArgs);
3706 int result = mDb.update(Tables.COLORS, values, selection, selectionArgs);
3709 c = mDb.query(Tables.COLORS, COLORS_PROJECTIO
4640 private static final int COLORS = 32; field in class:CalendarProvider2
[all...]

Completed in 2419 milliseconds