Home
last modified time | relevance | path

Searched refs:termcolor (Results 1 – 25 of 42) sorted by relevance

12

/third_party/rust/crates/env_logger/src/fmt/writer/termcolor/
Dextern_impl.rs9 use termcolor::{self, ColorChoice, ColorSpec, WriteColor};
73 inner: termcolor::BufferWriter,
78 inner: termcolor::Buffer,
85 inner: termcolor::BufferWriter::stderr(write_style.into_color_choice()), in stderr()
96 inner: termcolor::BufferWriter::stdout(write_style.into_color_choice()), in stdout()
111 inner: termcolor::BufferWriter::stderr(write_style.into_color_choice()), in pipe()
518 fn into_termcolor(self) -> termcolor::Color { in into_termcolor()
520 Color::Black => termcolor::Color::Black, in into_termcolor()
521 Color::Blue => termcolor::Color::Blue, in into_termcolor()
522 Color::Green => termcolor::Color::Green, in into_termcolor()
[all …]
/third_party/rust/crates/termcolor/
DREADME.md1 termcolor chapter
9 … status](https://github.com/BurntSushi/termcolor/workflows/ci/badge.svg)](https://github.com/Burnt…
10 [![](https://img.shields.io/crates/v/termcolor.svg)](https://crates.io/crates/termcolor)
16 [https://docs.rs/termcolor](https://docs.rs/termcolor)
24 termcolor = "1.1"
55 use termcolor::{Color, ColorChoice, ColorSpec, StandardStream, WriteColor};
68 implements `io::Write` and `termcolor::WriteColor`.
74 use termcolor::{BufferWriter, Color, ColorChoice, ColorSpec, WriteColor};
87 When building a writer with termcolor, the caller must provide a
88 [`ColorChoice`](https://docs.rs/termcolor/1.*/termcolor/enum.ColorChoice.html)
[all …]
DCargo.toml2 name = "termcolor"
8 documentation = "https://docs.rs/termcolor"
9 homepage = "https://github.com/BurntSushi/termcolor"
10 repository = "https://github.com/BurntSushi/termcolor"
17 name = "termcolor"
25 # See: https://github.com/BurntSushi/termcolor/issues/35
DREADME.OpenSource3 "Name": "termcolor",
8 "Upstream URL": "https://github.com/BurntSushi/termcolor",
DBUILD.gn17 crate_name = "termcolor"
25 cargo_pkg_name = "termcolor"
/third_party/rust/crates/clap/src/builder/
Dstyled_str.rs199 pub(crate) fn write_colored(&self, buffer: &mut termcolor::Buffer) -> std::io::Result<()> { in write_colored()
201 use termcolor::WriteColor; in write_colored()
204 let mut color = termcolor::ColorSpec::new(); in write_colored()
215 color.set_fg(Some(termcolor::Color::Green)); in write_colored()
218 color.set_fg(Some(termcolor::Color::Yellow)); in write_colored()
221 color.set_fg(Some(termcolor::Color::Red)); in write_colored()
313 let mut buffer = termcolor::Buffer::ansi(); in fmt()
/third_party/rust/crates/env_logger/src/fmt/writer/
Dmod.rs2 mod termcolor; module
5 use self::termcolor::BufferWriter;
9 pub use super::termcolor::glob::*;
13 pub(super) use self::termcolor::Buffer;
/third_party/rust/crates/codespan/codespan-reporting/src/
Dterm.rs4 use termcolor::{ColorChoice, WriteColor};
13 pub use termcolor;
116 let mut writer = termcolor::NoColor::new(Vec::<u8>::new()); in unsized_emit()
/third_party/rust/crates/termcolor/wincolor/
DCargo.toml7 homepage = "https://github.com/BurntSushi/termcolor/tree/master/wincolor"
8 repository = "https://github.com/BurntSushi/termcolor/tree/master/wincolor"
/third_party/rust/crates/env_logger/
DCargo.toml25 termcolor = { version = "1.1.1", optional = true }
46 default = ["termcolor", "atty", "humantime", "regex"]
DBUILD.gn30 "//third_party/rust/crates/termcolor:lib",
36 "termcolor",
/third_party/rust/crates/cxx/third-party/bazel/
DBUILD.termcolor-1.2.0.bazel18 name = "termcolor",
35 "crate-name=termcolor",
DBUILD.codespan-reporting-0.11.1.bazel42 "@vendor__termcolor-1.2.0//:termcolor",
/third_party/rust/crates/clap/
DBUILD.gn33 "//third_party/rust/crates/termcolor:lib",
63 "//third_party/rust/crates/termcolor:lib",
/third_party/rust/crates/syn/tests/features/macro/
DCargo.toml13 termcolor = "1.0"
Dlib.rs6 use termcolor::{Color, ColorChoice, ColorSpec, StandardStream, WriteColor};
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
Dshared.py20 from termcolor import colored as colored_impl
26 from termcolor import colored as colored_impl
/third_party/rust/crates/cxx/third-party/
DCargo.lock42 "termcolor",
94 name = "termcolor"
DBUCK178 ":termcolor-1.2.0",
503 name = "termcolor-1.2.0",
504 srcs = ["vendor/termcolor-1.2.0/src/lib.rs"],
505 crate = "termcolor",
506 crate_root = "vendor/termcolor-1.2.0/src/lib.rs",
/third_party/rust/crates/quote/benches/
DCargo.toml20 termcolor = "1.1"
Dtimer.rs3 use termcolor::{Color, ColorChoice, ColorSpec, StandardStream, WriteColor};
/third_party/rust/crates/codespan/codespan-reporting/
DCargo.toml16 termcolor = "1"
/third_party/rust/crates/syn/tests/
Dzzz_stable.rs4 use termcolor::{Color, ColorChoice, ColorSpec, StandardStream, WriteColor};
/third_party/rust/crates/codespan/codespan-reporting/tests/support/
Dmod.rs4 use termcolor::{Buffer, WriteColor};
Dcolor_buffer.rs3 use termcolor::{ColorSpec, WriteColor};

12