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:is_hide_set
(Results
1 - 14
of
14
) sorted by relevance
/third_party/rust/crates/clap/src/builder/
H
A
D
arg_settings.rs
125
assert!(m.
is_hide_set
());
in setting_bitor()
137
assert!(m.
is_hide_set
());
in unset_setting_bitor()
142
assert!(!m.
is_hide_set
(), "{m:#?}");
in unset_setting_bitor()
H
A
D
possible_value.rs
173
pub fn
is_hide_set
(&self) -> bool {
in is_hide_set()
functions
H
A
D
value_parser.rs
1050
.filter(|v| !v.
is_hide_set
())
in parse_ref()
1180
.filter(|v| !v.
is_hide_set
())
in parse()
H
A
D
command.rs
3675
pub fn
is_hide_set
(&self) -> bool {
in is_hide_set()
functions
4312
.hide(self.
is_hide_set
())
in _copy_subtree_for_help()
4596
!v.
is_hide_set
()
in long_help_exists_()
H
A
D
arg.rs
3999
pub fn
is_hide_set
(&self) -> bool {
in is_hide_set()
functions
/third_party/rust/crates/clap/clap_mangen/src/
H
A
D
render.rs
34
for opt in cmd.get_arguments().filter(|i| !i.
is_hide_set
()) {
90
let items: Vec<_> = cmd.get_arguments().filter(|i| !i.
is_hide_set
()).collect();
225
for sub in cmd.get_subcommands().filter(|s| !s.
is_hide_set
()) {
333
possibles.iter().filter(|pos| !pos.
is_hide_set
()).collect();
in get_possible_values()
H
A
D
lib.rs
262
cmd.get_arguments().any(|i| !i.
is_hide_set
())
in app_has_arguments()
267
cmd.get_subcommands().any(|i| !i.
is_hide_set
())
in app_has_subcommands()
/third_party/rust/crates/clap/src/output/
H
A
D
usage.rs
165
if f.
is_hide_set
() {
in needs_options_tag()
266
if pos.
is_hide_set
() {
H
A
D
help_template.rs
646
for pv in possible_vals.iter().filter(|pv| !pv.
is_hide_set
()) {
in help()
1011
if arg.
is_hide_set
() {
in should_show_arg()
1020
!subcommand.
is_hide_set
()
in should_show_subcommand()
/third_party/rust/crates/clap/clap_complete/src/shells/
H
A
D
bash.rs
204
.filter(|pv| !pv.
is_hide_set
())
in vals_for()
H
A
D
fish.rs
168
.filter_map(|value| if value.
is_hide_set
() {
in value_completion()
/third_party/rust/crates/clap/src/parser/
H
A
D
validator.rs
47
.filter(|pv| !pv.
is_hide_set
())
202
self.cmd.find(n).map_or(false, |a| !a.
is_hide_set
())
in build_conflict_err_usage()
448
self.cmd.find(n).map_or(false, |a| !a.
is_hide_set
())
in missing_required_error()
H
A
D
parser.rs
800
!(a.
is_hide_set
() || required.contains(a.get_id()))
in parse_long_arg()
1317
.filter(|pv| !pv.
is_hide_set
())
in verify_num_args()
1561
.filter(|n| self.cmd.find(n).map_or(true, |a| !a.
is_hide_set
()))
in did_you_mean_error()
/third_party/rust/crates/clap/clap_complete_fig/src/
H
A
D
fig.rs
104
if subcommand.
is_hide_set
() {
in gen_fig_inner()
202
if option.
is_hide_set
() {
in gen_options()
Completed in 21 milliseconds