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

1 2 3 4 5 6

  /external/llvm/tools/llvm-cov/
CoverageViewOptions.h 25 bool Colors;
36 /// \brief Change the output's stream color if the colors are enabled.
38 raw_ostream::Colors Color) const {
39 return llvm::colored_ostream(OS, Color, Colors);
RenderingSupport.h 51 raw_ostream::Colors Color,
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
SpeechOrbView.java 15 private Colors mListeningOrbColors;
16 private Colors mNotListeningOrbColors;
36 mNotListeningOrbColors = new Colors(resources.getColor(R.color.lb_speech_orb_not_recording),
39 mListeningOrbColors = new Colors(resources.getColor(R.color.lb_speech_orb_recording),
54 * @param colors SearchOrbView.Colors.
56 public void setListeningOrbColors(Colors colors) {
57 mListeningOrbColors = colors;
63 * @param colors SearchOrbView.Colors
    [all...]
TitleViewAdapter.java 102 * Sets the {@link androidx.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 androidx.leanback.widget.SearchOrbView.Colors} used to draw the
114 * @return Colors used to draw search affordance.
116 public SearchOrbView.Colors getSearchAffordanceColors() {
SearchOrbView.java 49 private Colors mColors;
60 * A set of colors used to display the search orb.
62 public static class Colors {
67 * Other colors are provided by the framework.
71 public Colors(@ColorInt int color) {
76 * Constructs a color set using the given colors for the search orb.
77 * Other colors are provided by the framework.
82 public Colors(@ColorInt int color, @ColorInt int brightColor) {
87 * Constructs a color set using the given colors.
93 public Colors(@ColorInt int color, @ColorInt int brightColor, @ColorInt int iconColor)
    [all...]
TitleView.java 64 public SearchOrbView.Colors getSearchAffordanceColors() {
79 public void setSearchAffordanceColors(SearchOrbView.Colors colors) {
80 TitleView.this.setSearchAffordanceColors(colors);
164 * Sets the {@link SearchOrbView.Colors} used to draw the search affordance.
166 public void setSearchAffordanceColors(SearchOrbView.Colors colors) {
167 mSearchOrbView.setOrbColors(colors);
171 * Returns the {@link SearchOrbView.Colors} used to draw the search affordance.
173 public SearchOrbView.Colors getSearchAffordanceColors()
    [all...]
  /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}}
  /external/pdfium/core/fxcodec/codec/
ccodec_flatemodule.h 25 int Colors,
33 int Colors,
fx_codec_flate.cpp 359 int Colors,
362 const int BytesPerPixel = (Colors * BitsPerComponent + 7) / 8;
363 const int row_size = (Colors * BitsPerComponent * Columns + 7) / 8;
454 int Colors,
457 int row_bits = std::min(BitsPerComponent * Colors * Columns,
475 int BytesPerPixel = BitsPerComponent * Colors / 8;
493 int Colors,
496 int row_size = (Colors * BitsPerComponent * Columns + 7) / 8;
506 TIFF_PredictLine(scan_line, row_size, BitsPerComponent, Colors, Columns);
593 int Colors,
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
EditStatusBar.c 67 STATUS_BAR_COLOR_ATTRIBUTES Colors;
112 New.Colors.Foreground = Orig.Colors.Background & 0xF;
113 New.Colors.Background = Orig.Colors.Foreground & 0x7;
EditTitleBar.c 68 TITLE_BAR_COLOR_ATTRIBUTES Colors;
109 New.Colors.Foreground = Orig.Colors.Background & 0xF;
110 New.Colors.Background = Orig.Colors.Foreground & 0x7;
EditInputBar.c 107 INPUT_BAR_COLOR_ATTRIBUTES Colors;
149 New.Colors.Foreground = Orig.Colors.Background & 0xF;
150 New.Colors.Background = Orig.Colors.Foreground & 0x7;
  /external/llvm/lib/Analysis/
EHPersonalities.cpp 56 // Build up the color map, which maps each block to its set of 'colors'.
57 // For any block B the "colors" of B are the set of funclets F (possibly
84 ColorVector &Colors = BlockColors[Visiting];
85 if (std::find(Colors.begin(), Colors.end(), Color) == Colors.end())
86 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 24 enum class Colors { red, orange, yellow, green, blue, indigo, violet };
57 test<Colors>();
  /frameworks/support/samples/SupportLeanbackDemos/src/main/java/com/example/android/leanback/
CustomTitleView.java 47 public SearchOrbView.Colors getSearchAffordanceColors() {
61 public void setSearchAffordanceColors(SearchOrbView.Colors 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...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/function.objects/unord.hash/
enum.pass.cpp 24 enum class Colors { red, orange, yellow, green, blue, indigo, violet };
57 test<Colors>();
  /frameworks/compile/mclinker/include/mcld/Support/
raw_ostream.h 42 llvm::raw_ostream& changeColor(enum llvm::raw_ostream::Colors pColors,
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/CustomizedDisplayLib/
CustomizedDisplayLib.inf 33 Colors.h
  /packages/screensavers/Basic/src/com/android/dreams/basic/
Colors.java 27 * Plays a delightful show of colors.
32 public class Colors extends DreamService implements SurfaceHolder.Callback {
33 static final String TAG = Colors.class.getSimpleName();
  /external/iptables/
iptables-test.py 33 class Colors:
44 Prints an error with nice colors, indicating file and line number.
46 print (filename + ": " + Colors.RED + "ERROR" +
47 Colors.ENDC + ": line %d (%s)" % (lineno, reason))
237 print filename + ": " + Colors.GREEN + "OK" + Colors.ENDC
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
raw_ostream.h 63 enum Colors {
213 /// @param colors ANSI color to use, the special SAVEDCOLOR can be used to
214 /// change only the bold attribute, and keep colors untouched
218 virtual raw_ostream &changeColor(enum Colors, bool = false, bool = false) {
221 /// Resets the colors to terminal defaults. Call this when you are done
378 virtual raw_ostream &changeColor(enum Colors colors, bool bold=false,

Completed in 435 milliseconds

1 2 3 4 5 6