Home
last modified time | relevance | path

Searched defs:help (Results 1 – 25 of 494) sorted by relevance

12345678910>>...20

/external/libbrillo/brillo/
Dflag_helper.h203 #define DEFINE_type(type, classtype, name, value, help) \ argument
208 #define DEFINE_int32(name, value, help) \ argument
210 #define DEFINE_uint32(name, value, help) \ argument
212 #define DEFINE_int64(name, value, help) \ argument
214 #define DEFINE_uint64(name, value, help) \ argument
216 #define DEFINE_double(name, value, help) \ argument
218 #define DEFINE_string(name, value, help) \ argument
223 #define DEFINE_bool(name, value, help) \ argument
Dflag_helper.cc25 const char* help, in Flag()
45 const char* help, in BoolFlag()
76 const char* help, in Int32Flag()
92 const char* help, in UInt32Flag()
108 const char* help, in Int64Flag()
124 const char* help, in UInt64Flag()
140 const char* help, in DoubleFlag()
156 const char* help, in StringFlag()
269 std::string help = help_usage_; in GetHelpMessage() local
/external/cronet/stable/net/third_party/quiche/overrides/quiche_platform_impl/
Dquiche_command_line_flags_impl.h24 explicit QuicheFlagHelper(const char* help) : help_(help) {} in QuicheFlagHelper()
39 TypedQuicheFlagHelper(T* flag, const T& default_value, const char* help) in TypedQuicheFlagHelper()
106 const char* help) { in QuicheFlagSetup()
120 #define DEFINE_QUICHE_COMMAND_LINE_FLAG_IMPL(type, name, default_value, help) \ argument
/external/cronet/tot/net/third_party/quiche/overrides/quiche_platform_impl/
Dquiche_command_line_flags_impl.h24 explicit QuicheFlagHelper(const char* help) : help_(help) {} in QuicheFlagHelper()
39 TypedQuicheFlagHelper(T* flag, const T& default_value, const char* help) in TypedQuicheFlagHelper()
106 const char* help) { in QuicheFlagSetup()
120 #define DEFINE_QUICHE_COMMAND_LINE_FLAG_IMPL(type, name, default_value, help) \ argument
/external/rust/android-crates-io/extra_versions/crates/clap/src/output/
Dhelp.rs64 cmd: &'cmd Command<'help>, in new()
65 usage: &'cmd Usage<'help, 'cmd>, in new()
197 fn write_args(&mut self, args: &[&Arg<'help>], _category: &str) -> io::Result<()> { in write_args()
254 arg: &Arg<'help>, in write_arg()
348 arg: &Arg<'help>, in align_to_about()
424 fn help( in help() method
426 arg: Option<&Arg<'help>>, in help()
433 let mut help = String::from(about) + spec_vals; in help() localVariable
541 let help = text_wrapper(help, avail_chars); in help() localVariable
542 let mut help = help.lines(); in help() localVariable
[all …]
Dmod.rs1 mod help; module
/external/google-java-format/core/src/main/java/com/google/googlejavaformat/java/
DCommandLineOptions.java36 private final boolean help; field in CommandLineOptions
55 boolean help, in CommandLineOptions()
120 boolean help() { in help() method in CommandLineOptions
187 private boolean help = false; field in CommandLineOptions.Builder
231 Builder help(boolean help) { in help() method in CommandLineOptions.Builder
/external/grpc-grpc/test/core/util/
Dcmdline.cc42 const char* help; member
88 static void add_arg(gpr_cmdline* cl, const char* name, const char* help, in add_arg()
105 void gpr_cmdline_add_int(gpr_cmdline* cl, const char* name, const char* help, in gpr_cmdline_add_int()
110 void gpr_cmdline_add_flag(gpr_cmdline* cl, const char* name, const char* help, in gpr_cmdline_add_flag()
115 void gpr_cmdline_add_string(gpr_cmdline* cl, const char* name, const char* help, in gpr_cmdline_add_string()
121 gpr_cmdline* cl, const char* name, const char* help, in gpr_cmdline_on_extra_arg()
/external/google-cloud-java/google-cloud-examples/src/main/java/com/google/cloud/examples/nio/
DStat.java83 private static void help() { in help() method in Stat
84 String[] help = { in help() local
DCountBytes.java111 private static void help() { in help() method in CountBytes
112 String[] help = {"The argument is a <path>", "and we show the length of that file."}; in help() local
DParallelCountBytes.java164 private static void help() { in help() method in ParallelCountBytes
165 String[] help = {"The argument is a <path>", "and we show the length of that file."}; in help() local
/external/cronet/stable/testing/merge_scripts/code_coverage/
Dconvert_to_istanbul.js67 help: 'Root directory where source files live. The corresponding ' + property
73 help: 'Root directory to output all the converted istanbul coverage ' + property
79 help: 'Directory that contains the raw v8 coverage files (files ' + property
/external/cronet/tot/testing/merge_scripts/code_coverage/
Dconvert_to_istanbul.js67 help: 'Root directory where source files live. The corresponding ' + property
73 help: 'Root directory to output all the converted istanbul coverage ' + property
79 help: 'Directory that contains the raw v8 coverage files (files ' + property
/external/rust/android-crates-io/extra_versions/crates/clap/src/
Dderive.rs167 fn clap<'help>() -> Command<'help> { in clap()
254 fn command<'help>() -> Command<'help> { in command()
263 fn into_app<'help>() -> Command<'help>; in into_app()
267 fn command_for_update<'help>() -> Command<'help> { in command_for_update()
279 fn into_app_for_update<'help>() -> Command<'help>; in into_app_for_update()
530 fn into_app<'help>() -> Command<'help> { in into_app()
533 fn into_app_for_update<'help>() -> Command<'help> { in into_app_for_update()
/external/trace-cmd/tracecmd/
Dtrace-usage.c492 struct usage_help *help; in find_help() local
505 struct usage_help *help = NULL; in usage() local
/external/rust/android-crates-io/extra_versions/crates/clap/src/builder/
Dpossible_value.rs32 help: Option<&'help str>, field
77 pub fn help(mut self, help: &'help str) -> Self { in help() method
204 pub(crate) fn get_visible_quoted_name(&self) -> Option<Cow<'help, str>> { in get_visible_quoted_name()
Dusage_parser.rs46 pub(crate) fn parse(mut self) -> Arg<'help> { in parse()
69 fn name(&mut self, arg: &mut Arg<'help>) { in name()
116 fn short_or_long(&mut self, arg: &mut Arg<'help>) { in short_or_long()
133 fn long(&mut self, arg: &mut Arg<'help>) { in long()
147 fn short(&mut self, arg: &mut Arg<'help>) { in short()
187 fn help(&mut self, arg: &mut Arg<'help>) { in help() argument
201 fn default(&mut self, arg: &mut Arg<'help>) { in default()
/external/python/cpython3/Lib/test/
Dtest_argparse.py3158 help = '''\ variable in TestMutuallyExclusiveSimple
3199 help = '''\ variable in TestMutuallyExclusiveLong
3235 help = '''\ variable in TestMutuallyExclusiveFirstSuppressed
3272 help = '''\ variable in TestMutuallyExclusiveManySuppressed
3312 help = '''\ variable in TestMutuallyExclusiveOptionalAndPositional
3354 help = '''\ variable in TestMutuallyExclusiveOptionalsMixed
3393 help = '''\ variable in TestMutuallyExclusiveInGroup
3434 help = '''\ variable in TestMutuallyExclusiveOptionalsAndPositionalsMixed
3478 help = '''\ variable in TestMutuallyExclusiveNested
3523 help = '''\ variable in TestMutuallyExclusiveOptionalOptional
[all …]
/external/rust/android-crates-io/crates/miette-derive/src/
Dhelp.rs73 let help = if let Some(ident) = field.ident.clone() { in from_fields_vec() localVariable
101 let help = match &member { in gen_enum() localVariable
/external/python/absl-py/absl/flags/
Dargparse_flags.py243 help, # pylint: disable=redefined-builtin argument
279 help, # pylint: disable=redefined-builtin argument
327 def __init__(self, option_strings, dest, default, help): # pylint: disable=redefined-builtin argument
/external/iproute2/tipc/
Dcmdl.h33 void (*help)(struct cmdl *cmdl, char *media); member
40 void (*help)(struct cmdl *cmdl); member
/external/parameter-framework/upstream/tools/coverage/
Daplog2coverage.sh37 help () { function
/external/bcc/scripts/docker/
Dbuild.sh5 function help() { function
/external/zstd/tests/cli-tests/bin/
Dcmp_size10 help() function
/external/bcc/examples/lua/
Duprobe-tailkt.lua23 local function help(err) function

12345678910>>...20