/external/pdfium/core/fpdfapi/parser/ |
fpdf_parser_decode.cpp | 27 bool CheckFlateDecodeParams(int Colors, int BitsPerComponent, int Columns) { 28 if (Colors < 0 || BitsPerComponent < 0 || Columns < 0) 32 if (check > 0 && Colors > INT_MAX / check) 35 check *= Colors; 285 int Colors = 0, BitsPerComponent = 0, Columns = 0; 288 Colors = pParams->GetIntegerFor("Colors", 1); 291 if (!CheckFlateDecodeParams(Colors, BitsPerComponent, Columns)) 295 src_buf, src_size, width, height, nComps, bpc, predictor, Colors, 307 int Colors = 0 [all...] |
/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,
|
/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 | 49 import android.provider.CalendarContract.Colors; 121 Colors.ACCOUNT_NAME, 122 Colors.ACCOUNT_TYPE, 123 Colors.COLOR_TYPE, 124 Colors.COLOR_KEY, 125 Colors.COLOR, 133 private static final String COLOR_FULL_SELECTION = Colors.ACCOUNT_NAME + "=? AND " 134 + Colors.ACCOUNT_TYPE + "=? AND " + Colors.COLOR_TYPE + "=? AND " + Colors.COLOR_KE [all...] |
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/ |
TextEditorTypes.h | 61 EFI_EDITOR_COLOR_ATTRIBUTES Colors;
|
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/ |
HexEditorTypes.h | 62 HEFI_EDITOR_COLOR_ATTRIBUTES Colors;
|
/external/llvm/include/llvm/Support/ |
FormattedStream.h | 125 raw_ostream &changeColor(enum Colors Color, bool Bold, bool BG) override {
|
raw_ostream.h | 71 enum Colors { 231 /// change only the bold attribute, and keep colors untouched 235 virtual raw_ostream &changeColor(enum Colors Color, 244 /// Resets the colors to terminal defaults. Call this when you are done 248 /// Reverses the foreground and background colors. 256 /// This function determines if this stream is displayed and supports colors. 401 raw_ostream &changeColor(enum Colors colors, bool bold=false,
|
/external/llvm/tools/llvm-cov/ |
SourceCoverageViewText.cpp | 97 Optional<raw_ostream::Colors> Highlight; 109 getOptions().Colors && Highlight, /*Bold=*/false, 125 getOptions().Colors && Highlight, /*Bold=*/false, /*BG=*/true) 147 Line.hasMultipleRegions() && getOptions().Colors)
|
/frameworks/compile/mclinker/lib/Support/ |
raw_ostream.cpp | 62 enum llvm::raw_ostream::Colors pColor,
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/ |
BrandedFragment.java | 42 private SearchOrbView.Colors mSearchAffordanceColors; 255 * Sets the {@link android.support.v17.leanback.widget.SearchOrbView.Colors} used to draw the 258 * @param colors Colors used to draw search affordance. 260 public void setSearchAffordanceColors(SearchOrbView.Colors colors) { 261 mSearchAffordanceColors = colors; 269 * Returns the {@link android.support.v17.leanback.widget.SearchOrbView.Colors} 272 public SearchOrbView.Colors getSearchAffordanceColors() { 289 setSearchAffordanceColors(new SearchOrbView.Colors(color)) [all...] |
BrandedSupportFragment.java | 45 private SearchOrbView.Colors mSearchAffordanceColors; 258 * Sets the {@link android.support.v17.leanback.widget.SearchOrbView.Colors} used to draw the 261 * @param colors Colors used to draw search affordance. 263 public void setSearchAffordanceColors(SearchOrbView.Colors colors) { 264 mSearchAffordanceColors = colors; 272 * Returns the {@link android.support.v17.leanback.widget.SearchOrbView.Colors} 275 public SearchOrbView.Colors getSearchAffordanceColors() { 292 setSearchAffordanceColors(new SearchOrbView.Colors(color)) [all...] |
/hardware/qcom/display/msm8998/sdm/libs/hwc/ |
hwc_display_external_test.h | 72 enum Colors {
|
/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 Quads.class, Colors.class, Trace.class); 151 interface Colors { 177 class Mix implements Quads, Colors { [all...] |
/cts/tests/tests/provider/src/android/provider/cts/ |
CalendarTest.java | 36 import android.provider.CalendarContract.Colors; 646 * Helper class for manipulating entries in the Colors table. 649 public static final String WHERE_COLOR_ACCOUNT = Colors.ACCOUNT_NAME + "=? AND " 650 + Colors.ACCOUNT_TYPE + "=?"; 652 + Colors.COLOR_KEY + "=?"; 655 Colors._ID, // 0 656 Colors.ACCOUNT_NAME, // 1 657 Colors.ACCOUNT_TYPE, // 2 658 Colors.DATA, // 3 659 Colors.COLOR_TYPE, // [all...] |
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
CalendarProvider2Test.java | 37 import android.provider.CalendarContract.Colors; 89 private static final String WHERE_COLOR_ACCOUNT_AND_INDEX = Colors.ACCOUNT_NAME + "=? AND " 90 + Colors.ACCOUNT_TYPE + "=? AND " + Colors.COLOR_KEY + "=?"; [all...] |
/prebuilts/go/darwin-x86/src/encoding/json/ |
example_test.go | 21 Colors []string 26 Colors: []string{"Crimson", "Red", "Ruby", "Maroon"}, 34 // {"ID":1,"Name":"Reds","Colors":["Crimson","Red","Ruby","Maroon"]} 197 var colors []Color 198 err := json.Unmarshal(j, &colors) 203 for _, c := range colors {
|
/prebuilts/go/linux-x86/src/encoding/json/ |
example_test.go | 21 Colors []string 26 Colors: []string{"Crimson", "Red", "Ruby", "Maroon"}, 34 // {"ID":1,"Name":"Reds","Colors":["Crimson","Red","Ruby","Maroon"]} 197 var colors []Color 198 err := json.Unmarshal(j, &colors) 203 for _, c := range colors {
|
/external/clang/lib/Frontend/ |
TextDiagnostic.cpp | 27 static const enum raw_ostream::Colors noteColor = 29 static const enum raw_ostream::Colors remarkColor = 31 static const enum raw_ostream::Colors fixitColor = 33 static const enum raw_ostream::Colors caretColor = 35 static const enum raw_ostream::Colors warningColor = 37 static const enum raw_ostream::Colors templateColor = 39 static const enum raw_ostream::Colors errorColor = raw_ostream::RED; 40 static const enum raw_ostream::Colors fatalColor = raw_ostream::RED; 42 static const enum raw_ostream::Colors savedColor = [all...] |
/external/giflib/ |
egif_lib.c | 302 ColorMap->Colors); 337 Buf[0] = ColorMap->Colors[i].Red; 338 Buf[1] = ColorMap->Colors[i].Green; 339 Buf[2] = ColorMap->Colors[i].Blue; 391 ColorMap->Colors); 417 Buf[0] = ColorMap->Colors[i].Red; 418 Buf[1] = ColorMap->Colors[i].Green; 419 Buf[2] = ColorMap->Colors[i].Blue; [all...] |
dgif_lib.c | 284 GifFile->SColorMap->Colors[i].Red = Buf[0]; 285 GifFile->SColorMap->Colors[i].Green = Buf[1]; 286 GifFile->SColorMap->Colors[i].Blue = Buf[2]; 391 GifFile->Image.ColorMap->Colors[i].Red = Buf[0]; 392 GifFile->Image.ColorMap->Colors[i].Green = Buf[1]; 393 GifFile->Image.ColorMap->Colors[i].Blue = Buf[2]; 419 GifFile->Image.ColorMap->Colors); [all...] |
/external/llvm/lib/Support/ |
GraphWriter.cpp | 57 /// from a reasonable number of colors. 60 static const char* Colors[NumColors] = { 64 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 | 41 void setColor(llvm::raw_ostream::Colors Color) {
|