HomeSort by relevance Sort by last modified time
    Searched refs:Colors (Results 1 - 25 of 41) sorted by null

1 2

  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
CalendarColorCache.java 21 import android.provider.CalendarContract.Colors;
29 * of the accounts which contain optional calendar colors, and thus should allow for the
30 * user to choose calendar colors.
43 private static String[] PROJECTION = new String[] {Colors.ACCOUNT_NAME, Colors.ACCOUNT_TYPE };
46 * Interface which provides callback after provider query of calendar colors.
51 * Callback after the set of accounts with additional calendar colors are loaded.
77 mService.startQuery(0, null, Colors.CONTENT_URI, PROJECTION,
78 Colors.COLOR_TYPE + "=" + Colors.TYPE_CALENDAR, null, null)
    [all...]
  /external/giflib/
gifalloc.c 55 Object->Colors = (GifColorType *)calloc(ColorCount, sizeof(GifColorType));
56 if (Object->Colors == (GifColorType *) NULL) {
65 memcpy((char *)Object->Colors,
79 (void)free(Object->Colors);
95 Object->Colors[i + j].Red,
96 Object->Colors[i + j].Green,
97 Object->Colors[i + j].Blue);
107 fit into 256 colors, NULL is returned, the allocated union otherwise.
108 ColorIn1 is copied as is to ColorUnion, while colors from ColorIn2 are
137 ColorUnion->Colors[i] = ColorIn1->Colors[i]
    [all...]
dgif_lib.c 276 GifFile->SColorMap->Colors[i].Red = Buf[0];
277 GifFile->SColorMap->Colors[i].Green = Buf[1];
278 GifFile->SColorMap->Colors[i].Blue = Buf[2];
381 GifFile->Image.ColorMap->Colors[i].Red = Buf[0];
382 GifFile->Image.ColorMap->Colors[i].Green = Buf[1];
383 GifFile->Image.ColorMap->Colors[i].Blue = Buf[2];
407 GifFile->Image.ColorMap->Colors);
    [all...]
  /frameworks/compile/mclinker/lib/LD/
TextDiagnosticPrinter.cpp 16 static const enum llvm::raw_ostream::Colors UnreachableColor = llvm::raw_ostream::RED;
17 static const enum llvm::raw_ostream::Colors FatalColor = llvm::raw_ostream::YELLOW;
18 static const enum llvm::raw_ostream::Colors ErrorColor = llvm::raw_ostream::RED;
19 static const enum llvm::raw_ostream::Colors WarningColor = llvm::raw_ostream::MAGENTA;
20 static const enum llvm::raw_ostream::Colors DebugColor = llvm::raw_ostream::CYAN;
21 static const enum llvm::raw_ostream::Colors NoteColor = llvm::raw_ostream::GREEN;
22 static const enum llvm::raw_ostream::Colors IgnoreColor = llvm::raw_ostream::BLUE;
25 static const enum llvm::raw_ostream::Colors SavedColor = llvm::raw_ostream::SAVEDCOLOR;
  /frameworks/compile/mclinker/include/mcld/Support/
raw_ostream.h 45 llvm::raw_ostream &changeColor(enum llvm::raw_ostream::Colors pColors,
  /packages/apps/Calendar/src/com/android/calendar/
CalendarColorPickerDialog.java 28 import android.provider.CalendarContract.Colors;
59 Colors.COLOR,
60 Colors.COLOR_KEY
63 static final String COLORS_WHERE = Colors.ACCOUNT_NAME + "=? AND " + Colors.ACCOUNT_TYPE +
64 "=? AND " + Colors.COLOR_TYPE + "=" + Colors.TYPE_CALENDAR;
104 Uri uri = Colors.CONTENT_URI;
119 ArrayList<Integer> colors = new ArrayList<Integer>(); local
126 colors.add(displayColor)
    [all...]
  /packages/screensavers/Basic/src/com/android/dreams/basic/
Colors.java 27 * Plays a delightful show of colors.
32 public class Colors extends DreamService implements TextureView.SurfaceTextureListener {
33 static final String TAG = Colors.class.getSimpleName();
  /art/test/044-proxy/src/
BasicTest.java 49 Colors colors = (Colors) proxy; local
50 colors.red(1.0f);
51 colors.blue(777);
52 colors.mauve("sorry");
53 colors.blob();
99 new Class[] { Quads.class, Colors.class });
148 interface Colors {
170 class Mix implements Quads, Colors {
    [all...]
  /dalvik/tests/044-proxy/src/
BasicTest.java 48 Colors colors = (Colors) proxy; local
49 colors.red(1.0f);
50 colors.blue(777);
51 colors.mauve("sorry");
52 colors.blob();
89 new Class[] { Quads.class, Colors.class });
138 interface Colors {
160 class Mix implements Quads, Colors {
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDatabaseHelper.java 34 import android.provider.CalendarContract.Colors;
154 public static final String COLORS = "Colors";
205 + " SET calendar_color=(SELECT " + Colors.COLOR + " FROM " + Tables.COLORS + " WHERE "
206 + Colors.ACCOUNT_NAME + "=" + "new." + Calendars.ACCOUNT_NAME + " AND "
207 + Colors.ACCOUNT_TYPE + "=" + "new." + Calendars.ACCOUNT_TYPE + " AND "
208 + Colors.COLOR_KEY + "=" + "new." + Calendars.CALENDAR_COLOR_KEY + " AND "
209 + 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...]
  /frameworks/compile/mclinker/lib/Support/
raw_ostream.cpp 65 mcld::raw_fd_ostream::changeColor(enum llvm::raw_ostream::Colors pColor,
  /external/chromium_org/cc/test/
layer_tree_pixel_test.h 86 // Common CSS colors defined for tests to use.
87 enum Colors {
  /external/llvm/include/llvm/Support/
raw_ostream.h 64 enum Colors {
215 /// change only the bold attribute, and keep colors untouched
219 virtual raw_ostream &changeColor(enum Colors Color,
228 /// Resets the colors to terminal defaults. Call this when you are done
232 /// Reverses the forground and background colors.
240 /// This function determines if this stream is displayed and supports colors.
376 virtual raw_ostream &changeColor(enum Colors colors, bool bold=false,
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java 37 import android.provider.CalendarContract.Colors;
645 * Helper class for manipulating entries in the Colors table.
648 public static final String WHERE_COLOR_ACCOUNT = Colors.ACCOUNT_NAME + "=? AND "
649 + Colors.ACCOUNT_TYPE + "=?";
651 + Colors.COLOR_KEY + "=?";
654 Colors._ID, // 0
655 Colors.ACCOUNT_NAME, // 1
656 Colors.ACCOUNT_TYPE, // 2
657 Colors.DATA, // 3
658 Colors.COLOR_TYPE, //
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java 34 import android.provider.CalendarContract.Colors;
86 private static final String WHERE_COLOR_ACCOUNT_AND_INDEX = Colors.ACCOUNT_NAME + "=? AND "
87 + Colors.ACCOUNT_TYPE + "=? AND " + Colors.COLOR_KEY + "=?";
    [all...]
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libgif.cpp 233 cmap->Colors[index].Red,
234 cmap->Colors[index].Green,
235 cmap->Colors[index].Blue);
SkMovie_gif.cpp 120 const GifColorType& col = cmap->Colors[*src];
392 const GifColorType& col = gif->SColorMap->Colors[fGIF->SBackGroundColor];
  /external/skia/src/images/
SkImageDecoder_libgif.cpp 233 cmap->Colors[index].Red,
234 cmap->Colors[index].Green,
235 cmap->Colors[index].Blue);
  /external/llvm/unittests/Support/
YAMLIOTest.cpp 282 enum Colors {
290 Colors c1;
291 Colors c2;
292 Colors c3;
293 Colors c4;
294 Colors c5;
295 Colors c6;
301 struct ScalarEnumerationTraits<Colors> {
302 static void enumeration(IO &io, Colors &value) {
  /external/clang/lib/Frontend/
TextDiagnostic.cpp 27 static const enum raw_ostream::Colors noteColor =
29 static const enum raw_ostream::Colors fixitColor =
31 static const enum raw_ostream::Colors caretColor =
33 static const enum raw_ostream::Colors warningColor =
35 static const enum raw_ostream::Colors templateColor =
37 static const enum raw_ostream::Colors errorColor = raw_ostream::RED;
38 static const enum raw_ostream::Colors fatalColor = raw_ostream::RED;
40 static const enum raw_ostream::Colors savedColor =
    [all...]
  /external/llvm/lib/Support/
GraphWriter.cpp 58 /// from a reasonable number of colors.
61 static const char* Colors[NumColors] = {
65 return Colors[ColorNumber % NumColors];
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventHelper.java 28 import android.provider.CalendarContract.Colors;
207 Colors._ID, // 0
208 Colors.ACCOUNT_NAME,
209 Colors.ACCOUNT_TYPE,
210 Colors.COLOR, // 1
211 Colors.COLOR_KEY // 2
214 static final String COLORS_WHERE = Colors.ACCOUNT_NAME + "=? AND " + Colors.ACCOUNT_TYPE +
215 "=? AND " + Colors.COLOR_TYPE + "=" + Colors.TYPE_EVENT
    [all...]
EditEventFragment.java 39 import android.provider.CalendarContract.Colors;
250 mHandler.startQuery(TOKEN_COLORS, null, Colors.CONTENT_URI,
252 Colors.COLOR_TYPE + "=" + Colors.TYPE_EVENT, null, null);
373 // If the account name/type is null, the calendar event colors cannot be
395 int[] colors = mModel.getCalendarEventColors();
397 mColorPickerDialog = EventColorPickerDialog.newInstance(colors,
402 mColorPickerDialog.setColors(colors, mModel.getEventColor());
530 // Start a query in the background to read the list of calendars and colors
536 mHandler.startQuery(TOKEN_COLORS, null, Colors.CONTENT_URI
    [all...]
  /external/clang/tools/diagtool/
TreeView.cpp 43 llvm::raw_ostream::Colors Color) {

Completed in 572 milliseconds

1 2