Home
last modified time | relevance | path

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

12

/external/rust/crates/env_logger/src/fmt/writer/termcolor/
Dextern_impl.rs8 use termcolor::{self, ColorChoice, ColorSpec, WriteColor};
72 inner: termcolor::BufferWriter,
77 inner: termcolor::Buffer,
84 inner: termcolor::BufferWriter::stderr(write_style.into_color_choice()), in stderr()
91 inner: termcolor::BufferWriter::stdout(write_style.into_color_choice()), in stdout()
470 fn into_termcolor(self) -> Option<termcolor::Color> { in into_termcolor()
472 Color::Black => Some(termcolor::Color::Black), in into_termcolor()
473 Color::Blue => Some(termcolor::Color::Blue), in into_termcolor()
474 Color::Green => Some(termcolor::Color::Green), in into_termcolor()
475 Color::Red => Some(termcolor::Color::Red), in into_termcolor()
[all …]
/external/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.0.5/termcolor/enum.ColorChoice.html)
[all …]
DCargo.toml.orig2 name = "termcolor"
8 documentation = "https://docs.rs/termcolor"
9 homepage = "https://github.com/BurntSushi/termcolor"
10 repository = "https://github.com/BurntSushi/termcolor"
18 name = "termcolor"
26 # See: https://github.com/BurntSushi/termcolor/issues/35
DMETADATA1 name: "termcolor"
6 value: "https://crates.io/crates/termcolor"
10 value: "https://static.crates.io/crates/termcolor/termcolor-1.1.2.crate"
DCargo.toml15 name = "termcolor" package
20 homepage = "https://github.com/BurntSushi/termcolor"
21 documentation = "https://docs.rs/termcolor"
25 repository = "https://github.com/BurntSushi/termcolor"
28 name = "termcolor"
/external/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(in crate::fmt) use self::termcolor::Buffer;
/external/rust/crates/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()
/external/tensorflow/third_party/
Dtermcolor.BUILD9 name = "termcolor",
11 "termcolor.py",
/external/rust/cxx/third-party/
DBUCK31 ":termcolor",
93 name = "termcolor",
94 srcs = glob(["vendor/termcolor-1.1.2/src/**"]),
DBUILD35 ":termcolor",
97 name = "termcolor",
98 srcs = glob(["vendor/termcolor-1.1.2/src/**"]),
/external/rust/crates/env_logger/
DCargo.toml.orig26 termcolor = { version = "1.0.2", optional = true }
47 default = ["termcolor", "atty", "humantime", "regex"]
DCargo.toml60 [dependencies.termcolor]
65 default = ["termcolor", "atty", "humantime", "regex"]
/external/tensorflow/tensorflow/tools/ci_build/install/
Dinstall_centos_pip_packages.sh98 pip2 install --upgrade termcolor
99 pip3 install --upgrade termcolor
Dinstall_pip_packages.sh102 pip3 install --upgrade termcolor
Dinstall_python3.6_pip_packages.sh100 pip3 install --upgrade termcolor
/external/tensorflow/third_party/systemlibs/
Dtermcolor.BUILD9 name = "termcolor",
/external/tensorflow/tensorflow/python/autograph/pyct/
Dpretty_printer.py23 import termcolor
37 return termcolor.colored(string, color, attrs=attrs)
/external/rust/crates/codespan-reporting/
DCargo.toml.orig16 termcolor = "1"
DAndroid.bp36 // termcolor-1.1.2
/external/rust/crates/syn/tests/
Dzzz_stable.rs4 use termcolor::{Color, ColorChoice, ColorSpec, StandardStream, WriteColor};
/external/rust/crates/codespan-reporting/tests/support/
Dmod.rs4 use termcolor::{Buffer, WriteColor};
Dcolor_buffer.rs3 use termcolor::{ColorSpec, WriteColor};
/external/rust/cxx/gen/cmd/
DAndroid.bp55 // termcolor-1.1.2
/external/rust/crates/codespan-reporting/examples/
Dpeg_calculator.rs13 use codespan_reporting::term::termcolor::{ColorChoice, StandardStream};
/external/tensorflow/tensorflow/tools/ci_build/
DDockerfile.cmake30 RUN pip install --upgrade termcolor

12