/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/v17/leanback/src/android/support/v17/leanback/widget/ |
SpeechOrbView.java | 14 private Colors mListeningOrbColors; 15 private 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), 53 * @param colors SearchOrbView.Colors. 55 public void setListeningOrbColors(Colors colors) { 56 mListeningOrbColors = colors; 62 * @param colors SearchOrbView.Colors [all...] |
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() {
|
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...] |
/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 | 350 int Colors, 353 const int BytesPerPixel = (Colors * BitsPerComponent + 7) / 8; 354 const int row_size = (Colors * BitsPerComponent * Columns + 7) / 8; 445 int Colors, 448 int row_bits = std::min(BitsPerComponent * Colors * Columns, 466 int BytesPerPixel = BitsPerComponent * Colors / 8; 484 int Colors, 487 int row_size = (Colors * BitsPerComponent * Columns + 7) / 8; 497 TIFF_PredictLine(scan_line, row_size, BitsPerComponent, Colors, Columns); 627 int Colors, [all...] |
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/ |
EditStatusBar.c | 69 STATUS_BAR_COLOR_ATTRIBUTES Colors;
115 New.Colors.Foreground = Orig.Colors.Background & 0xF;
116 New.Colors.Background = Orig.Colors.Foreground & 0x7;
|
EditTitleBar.c | 70 TITLE_BAR_COLOR_ATTRIBUTES Colors;
112 New.Colors.Foreground = Orig.Colors.Background & 0xF;
113 New.Colors.Background = Orig.Colors.Foreground & 0x7;
|
EditInputBar.c | 110 INPUT_BAR_COLOR_ATTRIBUTES Colors;
153 New.Colors.Foreground = Orig.Colors.Background & 0xF;
154 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 }; 56 test<Colors>();
|
/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/ |
CustomTitleView.java | 46 public SearchOrbView.Colors getSearchAffordanceColors() { 60 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/r11/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>();
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/function.objects/unord.hash/ |
enum.pass.cpp | 22 enum class Colors { red, orange, yellow, green, blue, indigo, violet }; 53 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 TextureView.SurfaceTextureListener { 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
|