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:get_matches
(Results
1 - 25
of
36
) sorted by relevance
1
2
/third_party/rust/crates/clap/tests/builder/
H
A
D
propagate_globals.rs
23
fn
get_matches
(cmd: Command, argv: &'static str) -> ArgMatches {
in get_matches()
functions
76
let m =
get_matches
(get_app(), "myprog --global-arg=some_value outer inner");
in global_arg_used_top_level()
85
let m =
get_matches
(get_app(), "myprog outer --global-arg=some_value inner");
in global_arg_used_outer()
94
let m =
get_matches
(get_app(), "myprog outer inner --global-arg=some_value");
in global_arg_used_inner()
103
let m =
get_matches
(get_app(), "myprog outer inner");
in global_arg_default_value()
112
let m =
get_matches
(get_app(), "myprog --global-flag outer inner");
in global_flag_used_top_level()
121
let m =
get_matches
(get_app(), "myprog outer --global-flag inner");
in global_flag_used_outer()
130
let m =
get_matches
(get_app(), "myprog outer inner --global-flag");
in global_flag_used_inner()
139
let m =
get_matches
(get_app(), "myprog --global-flag --global-flag outer inner");
in global_flag_2x_used_top_level()
148
let m =
get_matches
(get_ap
in global_flag_2x_used_inner()
[all...]
/third_party/rust/crates/clap/examples/tutorial_builder/
H
A
D
03_02_option.rs
6
.
get_matches
();
in main()
H
A
D
03_03_positional.rs
6
.
get_matches
();
in main()
H
A
D
03_01_flag_count.rs
11
.
get_matches
();
in main()
H
A
D
03_01_flag_bool.rs
11
.
get_matches
();
in main()
H
A
D
03_05_default_values.rs
10
.
get_matches
();
in main()
H
A
D
03_02_option_mult.rs
11
.
get_matches
();
in main()
H
A
D
04_01_possible.rs
10
.
get_matches
();
in main()
H
A
D
04_02_parse.rs
10
.
get_matches
();
in main()
H
A
D
02_crate.rs
8
.
get_matches
();
in main()
H
A
D
03_04_subcommands.rs
13
.
get_matches
();
in main()
H
A
D
03_03_positional_mult.rs
6
.
get_matches
();
in main()
H
A
D
02_app_settings.rs
8
.
get_matches
();
in main()
H
A
D
02_apps.rs
10
.
get_matches
();
in main()
H
A
D
05_01_assert.rs
4
let matches = cmd().
get_matches
();
in main()
H
A
D
04_02_validate.rs
12
.
get_matches
();
in main()
H
A
D
04_01_enum.rs
52
.
get_matches
();
in main()
/third_party/rust/crates/clap/examples/
H
A
D
multicall-hostname.rs
12
match cmd.
get_matches
().subcommand_name() {
in main()
H
A
D
cargo-example.rs
11
let matches = cmd.
get_matches
();
in main()
H
A
D
escaped-positional.rs
14
.
get_matches
();
in main()
H
A
D
multicall-busybox.rs
34
let matches = cmd.
get_matches
();
in main()
/third_party/rust/crates/clap/src/bin/
H
A
D
stdio-fixture.rs
14
cmd.
get_matches
();
in main()
/third_party/rust/crates/clap/examples/derive_ref/
H
A
D
augment_subcommands.rs
16
let matches = cli.
get_matches
();
in main()
H
A
D
augment_args.rs
14
let matches = cli.
get_matches
();
in main()
/third_party/rust/crates/clap/clap_complete/examples/
H
A
D
dynamic.rs
24
let matches = cmd.
get_matches
();
in main()
Completed in 10 milliseconds
1
2