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

1 2 3

  /external/llvm/tools/llvm-cov/
CoverageViewOptions.h 20 bool Colors;
28 /// \brief Change the output's stream color if the colors are enabled.
30 raw_ostream::Colors Color) const {
31 return llvm::colored_ostream(OS, Color, Colors);
RenderingSupport.h 51 raw_ostream::Colors Color,
SourceCoverageView.cpp 26 Optional<raw_ostream::Colors> Highlight;
38 Options.Colors && Highlight, /*Bold=*/false, /*BG=*/true)
53 Options.Colors && Highlight, /*Bold=*/false, /*BG=*/true)
96 Line.hasMultipleRegions() && Options.Colors)
202 Options.Colors)
  /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...]
  /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/
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;
56 * A set of colors used to display the search orb.
58 public static class Colors {
63 * Other colors are provided by the framework.
67 public Colors(@ColorInt int color) {
72 * Constructs a color set using the given colors for the search orb.
73 * Other colors are provided by the framework.
78 public Colors(@ColorInt int color, @ColorInt int brightColor) {
83 * Constructs a color set using the given colors.
89 public Colors(@ColorInt int color, @ColorInt int brightColor, @ColorInt int iconColor)
    [all...]
TitleView.java 108 * Sets the {@link SearchOrbView.Colors} used to draw the search affordance.
110 public void setSearchAffordanceColors(SearchOrbView.Colors colors) {
111 mSearchOrbView.setOrbColors(colors);
115 * Returns the {@link SearchOrbView.Colors} used to draw the search affordance.
117 public SearchOrbView.Colors getSearchAffordanceColors() {
  /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 235 int predictor, int Colors,
238 const int BytesPerPixel = (Colors * BitsPerComponent + 7) / 8;
239 const int row_size = (Colors * BitsPerComponent * Columns + 7) / 8;
390 int Colors, int BitsPerComponent, int Columns)
392 const int BytesPerPixel = (Colors * BitsPerComponent + 7) / 8;
393 const int row_size = (Colors * BitsPerComponent * Columns + 7) / 8;
477 static void TIFF_PredictorEncodeLine(FX_LPBYTE dest_buf, int row_size, int BitsPerComponent, int Colors, int Columns)
479 int BytesPerPixel = BitsPerComponent * Colors / 8;
487 int row_bits = Colors * BitsPerComponent * Columns;
515 int Colors, int BitsPerComponent, int Columns
    [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 40 private SearchOrbView.Colors mSearchAffordanceColors;
178 * Sets the {@link android.support.v17.leanback.widget.SearchOrbView.Colors} used to draw the search affordance.
180 public void setSearchAffordanceColors(SearchOrbView.Colors colors) {
181 mSearchAffordanceColors = colors;
189 * Returns the {@link android.support.v17.leanback.widget.SearchOrbView.Colors}
192 public SearchOrbView.Colors getSearchAffordanceColors() {
209 setSearchAffordanceColors(new SearchOrbView.Colors(color));
BrandedSupportFragment.java 42 private SearchOrbView.Colors mSearchAffordanceColors;
180 * Sets the {@link android.support.v17.leanback.widget.SearchOrbView.Colors} used to draw the search affordance.
182 public void setSearchAffordanceColors(SearchOrbView.Colors colors) {
183 mSearchAffordanceColors = colors;
191 * Returns the {@link android.support.v17.leanback.widget.SearchOrbView.Colors}
194 public SearchOrbView.Colors getSearchAffordanceColors() {
211 setSearchAffordanceColors(new SearchOrbView.Colors(color));
  /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/llvm/tools/llvm-pdbdump/
LinePrinter.cpp 77 raw_ostream::Colors Color;
86 void WithColor::translateColor(PDB_ColorItem C, raw_ostream::Colors &Color,
LinePrinter.h 83 void translateColor(PDB_ColorItem C, raw_ostream::Colors &Color,
  /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();
102 new Class[] { Quads.class, Colors.class, Trace.class });
151 interface Colors {
177 class Mix implements Quads, Colors {
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_decode.cpp 211 static FX_BOOL CheckFlateDecodeParams(int Colors, int BitsPerComponent, int Columns)
217 if (Colors < 0 || (check > 0 && Colors > INT_MAX / check)) {
220 check *= Colors;
235 int Colors = 0, BitsPerComponent = 0, Columns = 0;
238 Colors = pParams->GetInteger(FX_BSTRC("Colors"), 1);
241 if (!CheckFlateDecodeParams(Colors, BitsPerComponent, Columns)) {
246 nComps, bpc, predictor, Colors, BitsPerComponent, Columns);
253 int Colors = 0, BitsPerComponent = 0, Columns = 0
    [all...]

Completed in 1068 milliseconds

1 2 3