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

1 2 3 4

  /external/llvm/tools/llvm-cov/
CoverageViewOptions.h 20 bool Colors;
29 /// \brief Change the output's stream color if the colors are enabled.
31 raw_ostream::Colors Color) const {
32 return llvm::colored_ostream(OS, Color, Colors);
RenderingSupport.h 51 raw_ostream::Colors Color,
  /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) {
66 memcpy((char *)Object->Colors,
80 (void)free(Object->Colors);
96 Object->Colors[i + j].Red,
97 Object->Colors[i + j].Green,
98 Object->Colors[i + j].Blue);
108 fit into 256 colors, NULL is returned, the allocated union otherwise.
109 ColorIn1 is copied as is to ColorUnion, while colors from ColorIn2 are
138 ColorUnion->Colors[i] = ColorIn1->Colors[i]
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-non-dependent-types.cpp 25 // expected-error@+1 {{no member named '~Colors' in 'Colors'}}
28 // expected-error@+1 {{no member named '~Colors' in 'Q'}}
41 enum Colors {red, green, blue};
44 C<Q, Colors> dummyColors;
49 // expected-note@+1 {{in instantiation of member function 'C<Q, Colors>::f' requested here}}
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
TitleViewAdapter.java 102 * Sets the {@link android.support.v17.leanback.widget.SearchOrbView.Colors} used to draw the
105 * @param colors Colors used to draw search affordance.
107 public void setSearchAffordanceColors(SearchOrbView.Colors colors) {
111 * Returns the {@link android.support.v17.leanback.widget.SearchOrbView.Colors} used to draw the
114 * @return Colors used to draw search affordance.
116 public SearchOrbView.Colors getSearchAffordanceColors() {
SpeechOrbView.java 14 private final Colors mListeningOrbColors;
15 private final Colors mNotListeningOrbColors;
35 mNotListeningOrbColors = new Colors(resources.getColor(R.color.lb_speech_orb_not_recording),
38 mListeningOrbColors = new Colors(resources.getColor(R.color.lb_speech_orb_recording),
SearchOrbView.java 47 private Colors mColors;
58 * A set of colors used to display the search orb.
60 public static class Colors {
65 * Other colors are provided by the framework.
69 public Colors(@ColorInt int color) {
74 * Constructs a color set using the given colors for the search orb.
75 * Other colors are provided by the framework.
80 public Colors(@ColorInt int color, @ColorInt int brightColor) {
85 * Constructs a color set using the given colors.
91 public Colors(@ColorInt int color, @ColorInt int brightColor, @ColorInt int iconColor)
    [all...]
TitleView.java 63 public SearchOrbView.Colors getSearchAffordanceColors() {
78 public void setSearchAffordanceColors(SearchOrbView.Colors colors) {
79 TitleView.this.setSearchAffordanceColors(colors);
163 * Sets the {@link SearchOrbView.Colors} used to draw the search affordance.
165 public void setSearchAffordanceColors(SearchOrbView.Colors colors) {
166 mSearchOrbView.setOrbColors(colors);
170 * Returns the {@link SearchOrbView.Colors} used to draw the search affordance.
172 public SearchOrbView.Colors getSearchAffordanceColors()
    [all...]
  /external/llvm/lib/Analysis/
EHPersonalities.cpp 53 // Build up the color map, which maps each block to its set of 'colors'.
54 // For any block B the "colors" of B are the set of funclets F (possibly
81 ColorVector &Colors = BlockColors[Visiting];
82 if (std::find(Colors.begin(), Colors.end(), Color) == Colors.end())
83 Colors.push_back(Color);
  /frameworks/compile/mclinker/lib/LD/
TextDiagnosticPrinter.cpp 19 static const enum llvm::raw_ostream::Colors UnreachableColor =
21 static const enum llvm::raw_ostream::Colors FatalColor =
23 static const enum llvm::raw_ostream::Colors ErrorColor = llvm::raw_ostream::RED;
24 static const enum llvm::raw_ostream::Colors WarningColor =
26 static const enum llvm::raw_ostream::Colors DebugColor =
28 static const enum llvm::raw_ostream::Colors NoteColor =
30 static const enum llvm::raw_ostream::Colors IgnoreColor =
  /external/libcxx/test/std/utilities/function.objects/unord.hash/
enum.pass.cpp 22 enum class Colors { red, orange, yellow, green, blue, indigo, violet };
53 test<Colors>();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/unord.hash/
enum.pass.cpp 24 enum class Colors { red, orange, yellow, green, blue, indigo, violet };
54 test<Colors>();
  /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...]
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_flate.cpp 247 int Colors,
250 const int BytesPerPixel = (Colors * BitsPerComponent + 7) / 8;
251 const int row_size = (Colors * BitsPerComponent * Columns + 7) / 8;
403 int Colors,
406 const int BytesPerPixel = (Colors * BitsPerComponent + 7) / 8;
407 const int row_size = (Colors * BitsPerComponent * Columns + 7) / 8;
498 int Colors,
500 int BytesPerPixel = BitsPerComponent * Colors / 8;
508 int row_bits = Colors * BitsPerComponent * Columns;
543 int Colors,
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
raw_ostream.h 42 llvm::raw_ostream& changeColor(enum llvm::raw_ostream::Colors pColors,
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
BrandedFragment.java 42 private SearchOrbView.Colors mSearchAffordanceColors;
254 * Sets the {@link android.support.v17.leanback.widget.SearchOrbView.Colors} used to draw the
257 * @param colors Colors used to draw search affordance.
259 public void setSearchAffordanceColors(SearchOrbView.Colors colors) {
260 mSearchAffordanceColors = colors;
268 * Returns the {@link android.support.v17.leanback.widget.SearchOrbView.Colors}
271 public SearchOrbView.Colors getSearchAffordanceColors() {
288 setSearchAffordanceColors(new SearchOrbView.Colors(color))
    [all...]
BrandedSupportFragment.java 44 private SearchOrbView.Colors mSearchAffordanceColors;
256 * Sets the {@link android.support.v17.leanback.widget.SearchOrbView.Colors} used to draw the
259 * @param colors Colors used to draw search affordance.
261 public void setSearchAffordanceColors(SearchOrbView.Colors colors) {
262 mSearchAffordanceColors = colors;
270 * Returns the {@link android.support.v17.leanback.widget.SearchOrbView.Colors}
273 public SearchOrbView.Colors getSearchAffordanceColors() {
290 setSearchAffordanceColors(new SearchOrbView.Colors(color))
    [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();
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_decode.cpp 251 static FX_BOOL CheckFlateDecodeParams(int Colors,
258 if (Colors < 0 || (check > 0 && Colors > INT_MAX / check)) {
261 check *= Colors;
281 int Colors = 0, BitsPerComponent = 0, Columns = 0;
284 Colors = pParams->GetInteger("Colors", 1);
287 if (!CheckFlateDecodeParams(Colors, BitsPerComponent, Columns)) {
292 src_buf, src_size, width, height, nComps, bpc, predictor, Colors,
304 int Colors = 0, BitsPerComponent = 0, Columns = 0
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
Colors.java 21 /** A general purpose class containing named colors that can be changed at will. For example, the markup language defined by the
22 * {@code BitmapFontCache} class uses this class to retrieve colors and the user can define his own colors.
25 public final class Colors {
39 * {@code Colors.getColors().get(name)}
49 * expression {@code Colors.getColors().put(name, color)}
59 /** Resets the color map to the predefined colors. */
105 private Colors () {
  /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...]
  /external/llvm/include/llvm/Support/
FormattedStream.h 125 raw_ostream &changeColor(enum Colors Color, bool Bold, bool BG) override {
  /frameworks/compile/mclinker/lib/Support/
raw_ostream.cpp 62 enum llvm::raw_ostream::Colors pColor,
  /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();
103 new Class[] { Quads.class, Colors.class, Trace.class });
153 interface Colors {
179 class Mix implements Quads, Colors {
    [all...]

Completed in 703 milliseconds

1 2 3 4