Home
last modified time | relevance | path

Searched refs:atty (Results 1 – 23 of 23) sorted by relevance

/third_party/rust/crates/atty/
DREADME.md1 # atty chapter
3atty.svg?branch=master)](https://travis-ci.org/softprops/atty) [![Build status](https://ci.appveyo…
14 atty = "0.2"
20 use atty::Stream;
23 if atty::is(Stream::Stdout) {
41 $ cargo run --example atty
50 $ echo "test" | cargo run --example atty
59 $ cargo run --example atty | grep std
68 $ cargo run --example atty 2>&1 | grep std
DCHANGELOG.md3 …m/hermitcore/libhermit-rs), a Rust-based unikernel [#41](https://github.com/softprops/atty/pull/41)
11 …n the unix family so redox cfg is no longer needed [#35](https://github.com/softprops/atty/pull/35)
15 * fix msys detection with `winapi@0.3.5` [#28](https://github.com/softprops/atty/pull/28)
19 * fix wasm regression [#27](https://github.com/softprops/atty/pull/27)
23 * Fix fix pty detection [#25](https://github.com/softprops/atty/pull/25)
27 * Fix an inverted condition on MinGW [#22](https://github.com/softprops/atty/pull/22)
31 * Change `||` to `&&` for whether MSYS is a tty [#24](https://github.com/softprops/atty/pull/24/)
35 …[0.3](https://retep998.github.io/blog/winapi-0.3/) [#18](https://github.com/softprops/atty/pull/18)
39 * added support for Wasm compile targets [#17](https://github.com/softprops/atty/pull/17)
43 * added support for Wasm compile targets [#17](https://github.com/softprops/atty/pull/17)
[all …]
DCargo.toml2 name = "atty"
5 description = "A simple interface for querying atty"
6 documentation = "http://softprops.github.io/atty"
7 homepage = "https://github.com/softprops/atty"
8 repository = "https://github.com/softprops/atty"
15 travis-ci = { repository = "softprops/atty" }
DBUILD.gn17 crate_name = "atty"
25 cargo_pkg_name = "atty"
26 cargo_pkg_description = "A simple interface for querying atty"
DREADME.OpenSource3 "Name": "atty",
8 "Upstream URL": "https://github.com/softprops/atty",
/third_party/rust/crates/is-terminal/src/
Dlib.rs268 atty::is(atty::Stream::Stdin), in stdin()
277 atty::is(atty::Stream::Stdout), in stdout()
286 atty::is(atty::Stream::Stderr), in stderr()
296 atty::is(atty::Stream::Stdin), in stdin()
307 atty::is(atty::Stream::Stdout), in stdout()
318 atty::is(atty::Stream::Stderr), in stderr()
/third_party/rust/crates/env_logger/src/fmt/writer/
Datty.rs13 atty::is(atty::Stream::Stdout) in is_stdout()
17 atty::is(atty::Stream::Stderr) in is_stderr()
Dmod.rs1 mod atty; module
4 use self::atty::{is_stderr, is_stdout};
/third_party/rust/crates/is-terminal/
DREADME.md30 This crate is derived from [the atty crate] with [PR \#51] bug fix and
32 the atty crate only accepts stdin, stdout, or stderr, while this crate accepts
36 [PR \#51]: https://github.com/softprops/atty/pull/51
37 [PR \#54]: https://github.com/softprops/atty/pull/54
102 [the atty crate]: https://crates.io/crates/atty
DREADME.OpenSource5 "License File": "LICENSE-MIT, LICENSE-MIT-atty",
DCargo.toml36 atty = "0.2.14"
DLICENSE-MIT-atty1 Portions of this project are derived from atty, which bears the following
/third_party/rust/crates/atty/examples/
Datty.rs1 extern crate atty;
3 use atty::{is, Stream};
/third_party/rust/crates/env_logger/
DCargo.toml27 atty = { version = "0.2.5", optional = true }
46 default = ["termcolor", "atty", "humantime", "regex"]
DBUILD.gn26 "//third_party/rust/crates/atty:lib",
33 "atty",
/third_party/ffmpeg/libavcodec/arm/
Dvideodsp_armv5te.S3 @ Copyright (c) 2004 AGAWA Koji <i (AT) atty (DOT) jp>
Didctdsp_arm.S3 @ Copyright (c) 2004 AGAWA Koji <i (AT) atty (DOT) jp>
Dhpeldsp_arm.S3 @ Copyright (c) 2004 AGAWA Koji <i (AT) atty (DOT) jp>
/third_party/rust/crates/termcolor/
DREADME.md101 not. To achieve that, please use the [`atty`](https://crates.io/crates/atty)
/third_party/rust/crates/bindgen/
DCargo.lock33 name = "atty"
144 "atty",
217 "atty",
/third_party/rust/crates/memchr/bench/
DCargo.lock4 name = "atty"
94 "atty",
/third_party/rust/crates/clap/
DCargo.lock27 name = "atty"
245 "atty",
DCHANGELOG.md111 - Remove soundness issue by switching from `atty` to `is-terminal`