SYMBOL INDEX (160 symbols across 3 files) FILE: color.go function noColorIsSet (line 39) | func noColorIsSet() bool { function stdoutIsTerminal (line 45) | func stdoutIsTerminal() bool { function stdOut (line 54) | func stdOut() io.Writer { function stdErr (line 63) | func stdErr() io.Writer { type Color (line 71) | type Color struct method AddRGB (line 198) | func (c *Color) AddRGB(r, g, b int) *Color { method AddBgRGB (line 205) | func (c *Color) AddBgRGB(r, g, b int) *Color { method Set (line 229) | func (c *Color) Set() *Color { method unset (line 238) | func (c *Color) unset() { method SetWriter (line 249) | func (c *Color) SetWriter(w io.Writer) *Color { method setWriter (line 254) | func (c *Color) setWriter(w io.Writer) (int, error) { method UnsetWriter (line 264) | func (c *Color) UnsetWriter(w io.Writer) { method unsetWriter (line 268) | func (c *Color) unsetWriter(w io.Writer) (int, error) { method Add (line 278) | func (c *Color) Add(value ...Attribute) *Color { method Fprint (line 288) | func (c *Color) Fprint(w io.Writer, a ...interface{}) (n int, err erro... method Print (line 310) | func (c *Color) Print(a ...interface{}) (n int, err error) { method Fprintf (line 321) | func (c *Color) Fprintf(w io.Writer, format string, a ...interface{}) ... method Printf (line 341) | func (c *Color) Printf(format string, a ...interface{}) (n int, err er... method Fprintln (line 352) | func (c *Color) Fprintln(w io.Writer, a ...interface{}) (n int, err er... method Println (line 361) | func (c *Color) Println(a ...interface{}) (n int, err error) { method Sprint (line 366) | func (c *Color) Sprint(a ...interface{}) string { method Sprintln (line 371) | func (c *Color) Sprintln(a ...interface{}) string { method Sprintf (line 376) | func (c *Color) Sprintf(format string, a ...interface{}) string { method FprintFunc (line 382) | func (c *Color) FprintFunc() func(w io.Writer, a ...interface{}) { method PrintFunc (line 390) | func (c *Color) PrintFunc() func(a ...interface{}) { method FprintfFunc (line 398) | func (c *Color) FprintfFunc() func(w io.Writer, format string, a ...in... method PrintfFunc (line 406) | func (c *Color) PrintfFunc() func(format string, a ...interface{}) { method FprintlnFunc (line 414) | func (c *Color) FprintlnFunc() func(w io.Writer, a ...interface{}) { method PrintlnFunc (line 422) | func (c *Color) PrintlnFunc() func(a ...interface{}) { method SprintFunc (line 434) | func (c *Color) SprintFunc() func(a ...interface{}) string { method SprintfFunc (line 443) | func (c *Color) SprintfFunc() func(format string, a ...interface{}) st... method SprintlnFunc (line 452) | func (c *Color) SprintlnFunc() func(a ...interface{}) string { method sequence (line 460) | func (c *Color) sequence() string { method wrap (line 471) | func (c *Color) wrap(s string) string { method format (line 479) | func (c *Color) format() string { method unformat (line 483) | func (c *Color) unformat() string { method DisableColor (line 501) | func (c *Color) DisableColor() { method EnableColor (line 507) | func (c *Color) EnableColor() { method isNoColorSet (line 511) | func (c *Color) isNoColorSet() bool { method Equals (line 522) | func (c *Color) Equals(c2 *Color) bool { type Attribute (line 77) | type Attribute constant escape (line 79) | escape = "\x1b" constant Reset (line 83) | Reset Attribute = iota constant Bold (line 84) | Bold constant Faint (line 85) | Faint constant Italic (line 86) | Italic constant Underline (line 87) | Underline constant BlinkSlow (line 88) | BlinkSlow constant BlinkRapid (line 89) | BlinkRapid constant ReverseVideo (line 90) | ReverseVideo constant Concealed (line 91) | Concealed constant CrossedOut (line 92) | CrossedOut constant ResetBold (line 96) | ResetBold Attribute = iota + 22 constant ResetItalic (line 97) | ResetItalic constant ResetUnderline (line 98) | ResetUnderline constant ResetBlinking (line 99) | ResetBlinking constant _ (line 100) | _ constant ResetReversed (line 101) | ResetReversed constant ResetConcealed (line 102) | ResetConcealed constant ResetCrossedOut (line 103) | ResetCrossedOut constant FgBlack (line 120) | FgBlack Attribute = iota + 30 constant FgRed (line 121) | FgRed constant FgGreen (line 122) | FgGreen constant FgYellow (line 123) | FgYellow constant FgBlue (line 124) | FgBlue constant FgMagenta (line 125) | FgMagenta constant FgCyan (line 126) | FgCyan constant FgWhite (line 127) | FgWhite constant foreground (line 130) | foreground constant FgHiBlack (line 135) | FgHiBlack Attribute = iota + 90 constant FgHiRed (line 136) | FgHiRed constant FgHiGreen (line 137) | FgHiGreen constant FgHiYellow (line 138) | FgHiYellow constant FgHiBlue (line 139) | FgHiBlue constant FgHiMagenta (line 140) | FgHiMagenta constant FgHiCyan (line 141) | FgHiCyan constant FgHiWhite (line 142) | FgHiWhite constant BgBlack (line 147) | BgBlack Attribute = iota + 40 constant BgRed (line 148) | BgRed constant BgGreen (line 149) | BgGreen constant BgYellow (line 150) | BgYellow constant BgBlue (line 151) | BgBlue constant BgMagenta (line 152) | BgMagenta constant BgCyan (line 153) | BgCyan constant BgWhite (line 154) | BgWhite constant background (line 157) | background constant BgHiBlack (line 162) | BgHiBlack Attribute = iota + 100 constant BgHiRed (line 163) | BgHiRed constant BgHiGreen (line 164) | BgHiGreen constant BgHiYellow (line 165) | BgHiYellow constant BgHiBlue (line 166) | BgHiBlue constant BgHiMagenta (line 167) | BgHiMagenta constant BgHiCyan (line 168) | BgHiCyan constant BgHiWhite (line 169) | BgHiWhite function New (line 173) | func New(value ...Attribute) *Color { function RGB (line 187) | func RGB(r, g, b int) *Color { function BgRGB (line 192) | func BgRGB(r, g, b int) *Color { function Set (line 212) | func Set(p ...Attribute) *Color { function Unset (line 220) | func Unset() { function boolPtr (line 549) | func boolPtr(v bool) *bool { function getCachedColor (line 553) | func getCachedColor(p Attribute) *Color { function colorPrint (line 566) | func colorPrint(format string, p Attribute, a ...interface{}) { function colorString (line 580) | func colorString(format string, p Attribute, a ...interface{}) string { function Black (line 592) | func Black(format string, a ...interface{}) { colorPrint(format, FgBlack... function Red (line 596) | func Red(format string, a ...interface{}) { colorPrint(format, FgRed, a.... function Green (line 600) | func Green(format string, a ...interface{}) { colorPrint(format, FgGreen... function Yellow (line 604) | func Yellow(format string, a ...interface{}) { colorPrint(format, FgYell... function Blue (line 608) | func Blue(format string, a ...interface{}) { colorPrint(format, FgBlue, ... function Magenta (line 612) | func Magenta(format string, a ...interface{}) { colorPrint(format, FgMag... function Cyan (line 616) | func Cyan(format string, a ...interface{}) { colorPrint(format, FgCyan, ... function White (line 620) | func White(format string, a ...interface{}) { colorPrint(format, FgWhite... function BlackString (line 624) | func BlackString(format string, a ...interface{}) string { return colorS... function RedString (line 628) | func RedString(format string, a ...interface{}) string { return colorStr... function GreenString (line 632) | func GreenString(format string, a ...interface{}) string { return colorS... function YellowString (line 636) | func YellowString(format string, a ...interface{}) string { return color... function BlueString (line 640) | func BlueString(format string, a ...interface{}) string { return colorSt... function MagentaString (line 644) | func MagentaString(format string, a ...interface{}) string { function CyanString (line 650) | func CyanString(format string, a ...interface{}) string { return colorSt... function WhiteString (line 654) | func WhiteString(format string, a ...interface{}) string { return colorS... function HiBlack (line 658) | func HiBlack(format string, a ...interface{}) { colorPrint(format, FgHiB... function HiRed (line 662) | func HiRed(format string, a ...interface{}) { colorPrint(format, FgHiRed... function HiGreen (line 666) | func HiGreen(format string, a ...interface{}) { colorPrint(format, FgHiG... function HiYellow (line 670) | func HiYellow(format string, a ...interface{}) { colorPrint(format, FgHi... function HiBlue (line 674) | func HiBlue(format string, a ...interface{}) { colorPrint(format, FgHiBl... function HiMagenta (line 678) | func HiMagenta(format string, a ...interface{}) { colorPrint(format, FgH... function HiCyan (line 682) | func HiCyan(format string, a ...interface{}) { colorPrint(format, FgHiCy... function HiWhite (line 686) | func HiWhite(format string, a ...interface{}) { colorPrint(format, FgHiW... function HiBlackString (line 690) | func HiBlackString(format string, a ...interface{}) string { function HiRedString (line 696) | func HiRedString(format string, a ...interface{}) string { return colorS... function HiGreenString (line 700) | func HiGreenString(format string, a ...interface{}) string { function HiYellowString (line 706) | func HiYellowString(format string, a ...interface{}) string { function HiBlueString (line 712) | func HiBlueString(format string, a ...interface{}) string { return color... function HiMagentaString (line 716) | func HiMagentaString(format string, a ...interface{}) string { function HiCyanString (line 722) | func HiCyanString(format string, a ...interface{}) string { return color... function HiWhiteString (line 726) | func HiWhiteString(format string, a ...interface{}) string { function sprintln (line 731) | func sprintln(a ...interface{}) string { FILE: color_test.go function TestColor (line 17) | func TestColor(t *testing.T) { function TestColorEquals (line 74) | func TestColorEquals(t *testing.T) { function TestColorEquals_DuplicateAttributes (line 108) | func TestColorEquals_DuplicateAttributes(t *testing.T) { function TestNoColor (line 122) | func TestNoColor(t *testing.T) { function TestNoColor_Env (line 176) | func TestNoColor_Env(t *testing.T) { function Test_noColorIsSet (line 218) | func Test_noColorIsSet(t *testing.T) { function TestStdoutIsTerminal_NilStdout (line 253) | func TestStdoutIsTerminal_NilStdout(t *testing.T) { function TestStdOut_NilStdout (line 265) | func TestStdOut_NilStdout(t *testing.T) { function TestStdErr_NilStderr (line 277) | func TestStdErr_NilStderr(t *testing.T) { function TestColorVisual (line 289) | func TestColorVisual(t *testing.T) { function TestNoFormat (line 390) | func TestNoFormat(t *testing.T) { function TestNoFormatString (line 440) | func TestNoFormatString(t *testing.T) { function TestColor_Println_Newline (line 474) | func TestColor_Println_Newline(t *testing.T) { function TestColor_Sprintln_Newline (line 489) | func TestColor_Sprintln_Newline(t *testing.T) { function TestColor_Fprint (line 500) | func TestColor_Fprint(t *testing.T) { function TestColor_Fprintln (line 519) | func TestColor_Fprintln(t *testing.T) { function TestColor_Fprintf (line 538) | func TestColor_Fprintf(t *testing.T) { function TestColor_Fprintln_Newline (line 558) | func TestColor_Fprintln_Newline(t *testing.T) { function readRaw (line 571) | func readRaw(t *testing.T, r io.Reader) string { function TestIssue206_1 (line 582) | func TestIssue206_1(t *testing.T) { function TestIssue206_2 (line 601) | func TestIssue206_2(t *testing.T) { function TestIssue218 (line 617) | func TestIssue218(t *testing.T) { function TestRGB (line 648) | func TestRGB(t *testing.T) { FILE: color_windows.go function init (line 9) | func init() {