Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:help_heading
(Results
1 - 5
of
5
) sorted by relevance
/third_party/rust/crates/clap/tests/derive/
H
A
D
help.rs
8
#[arg(
help_heading
= Some("HEADING A"))]
in arg_help_heading_applied()
36
#[arg(
help_heading
= Some("HEADING A"))]
in app_help_heading_applied()
/third_party/rust/crates/clap/src/builder/
H
A
D
arg.rs
84
pub(crate)
help_heading
: Option<Option<Str>>,
2176
pub fn
help_heading
(mut self, heading: impl IntoResettable<Str>) -> Self {
in help_heading()
functions
2177
self.
help_heading
= Some(heading.into_resettable().into_option());
in help_heading()
3727
self.
help_heading
in get_help_heading()
4306
.field("
help_heading
", &self.
help_heading
)
in fmt()
H
A
D
command.rs
180
arg.
help_heading
in arg_internal()
1845
/// This will be used for any arg that hasn't had [`Arg::
help_heading
`] called.
1853
/// [`Arg::
help_heading
`]: crate::Arg::
help_heading
()
3294
/// [`Command::
help_heading
`]: Command::
help_heading
()
/third_party/rust/crates/clap/tests/builder/
H
A
D
help.rs
1691
.
help_heading
(Some("OVERRIDE SPECIAL")),
in multiple_custom_help_headers()
1693
.arg(arg!(--style <style> "Choose musical style to play the song").
help_heading
(None))
in multiple_custom_help_headers()
1707
.
help_heading
(Some("NETWORKING")),
in multiple_custom_help_headers()
1756
.
help_heading
(Some("OVERRIDE SPECIAL")),
in custom_help_headers_hide_args()
1770
.
help_heading
(Some("NETWORKING"))
in custom_help_headers_hide_args()
/third_party/rust/crates/clap/src/output/
H
A
D
help_template.rs
181
// handling
help_heading
in the template.
403
if let Some(
help_heading
) = a.get_help_heading() {
404
return
help_heading
== heading;
Completed in 15 milliseconds