/third_party/node/src/ |
H A D | node_options-inl.h | 24 const char* help_text, in AddOption() 32 help_text, in AddOption() 38 const char* help_text, in AddOption() 46 help_text}); in AddOption() 51 const char* help_text, in AddOption() 59 help_text}); in AddOption() 64 const char* help_text, in AddOption() 72 help_text}); in AddOption() 78 const char* help_text, in AddOption() 85 help_text in AddOption() 23 AddOption(const char* name, const char* help_text, bool Options::* field, OptionEnvvarSettings env_setting, bool default_is_true) AddOption() argument 37 AddOption(const char* name, const char* help_text, uint64_t Options::* field, OptionEnvvarSettings env_setting) AddOption() argument 50 AddOption(const char* name, const char* help_text, int64_t Options::* field, OptionEnvvarSettings env_setting) AddOption() argument 63 AddOption(const char* name, const char* help_text, std::string Options::* field, OptionEnvvarSettings env_setting) AddOption() argument 76 AddOption( const char* name, const char* help_text, std::vector<std::string> Options::* field, OptionEnvvarSettings env_setting) AddOption() argument 90 AddOption(const char* name, const char* help_text, HostPort Options::* field, OptionEnvvarSettings env_setting) AddOption() argument 103 AddOption(const char* name, const char* help_text, NoOp no_op_tag, OptionEnvvarSettings env_setting) AddOption() argument 111 AddOption(const char* name, const char* help_text, V8Option v8_option_tag, OptionEnvvarSettings env_setting) AddOption() argument [all...] |
H A D | node_options.h | 348 const char* help_text, 353 const char* help_text, 357 const char* help_text, 361 const char* help_text, 365 const char* help_text, 369 const char* help_text, 373 const char* help_text, 377 const char* help_text, 473 std::string help_text; member
|
H A D | node_options.cc | 1184 Local<Value> help_text; in GetCLIOptions() local 1185 if (!ToV8Value(context, option_info.help_text).ToLocal(&help_text) || in GetCLIOptions() 1186 !info->Set(context, env->help_text_string(), help_text) in GetCLIOptions()
|
/third_party/gn/src/gn/ |
H A D | err.h | 33 : location(loc), message(msg), help_text(help) {} in ErrInfo() 41 std::string help_text; member 65 const std::string& help_text = std::string()); 70 const std::string& help_text = std::string()); 75 const std::string& help_text = std::string()); 88 const std::string& help_text() const { return info_->help_text; } in help_text() function in Err
|
H A D | err.cc | 113 const std::string& help_text) in Err() 114 : info_(std::make_unique<ErrInfo>(Location(), msg, help_text)) { in Err() 125 const std::string& help_text) in Err() 126 : info_(std::make_unique<ErrInfo>(Location(), msg, help_text)) { in Err() 197 if (!info_->help_text.empty()) in InternalPrintToStdout() 198 OutputString(info_->help_text + "\n"); in InternalPrintToStdout() 111 Err(const ParseNode* node, const std::string& msg, const std::string& help_text) Err() argument 123 Err(const Value& value, const std::string& msg, const std::string& help_text) Err() argument
|
H A D | functions_unittest.cc | 49 ASSERT_EQ(err.help_text(), "What failed"); in TEST() 512 ASSERT_FALSE(err.has_error()) << err.message() << "\n\n" << err.help_text(); in TEST() 541 ASSERT_FALSE(err.has_error()) << err.message() << "\n\n" << err.help_text(); in TEST() 576 ASSERT_FALSE(err.has_error()) << err.message() << "\n\n" << err.help_text(); in TEST() 612 ASSERT_FALSE(err.has_error()) << err.message() << "\n\n" << err.help_text(); in TEST() 654 ASSERT_FALSE(err.has_error()) << err.message() << "\n\n" << err.help_text(); in TEST()
|
H A D | string_utils.cc | 76 err->message(), err->help_text()); in AppendInterpolatedExpression() 85 err->message(), err->help_text()); in AppendInterpolatedExpression() 102 err->message(), err->help_text()); in AppendInterpolatedExpression()
|
H A D | parse_node_value_adapter.cc | 42 *err = Err(node, err->message(), err->help_text()); in InitForType()
|
H A D | function_write_file.cc | 104 *err = Err(function->function(), err->message(), err->help_text()); in RunWriteFile()
|
H A D | substitution_list.cc | 66 << err.help_text(); in MakeForTest()
|
H A D | substitution_pattern.cc | 97 << err.help_text(); in MakeForTest()
|
H A D | operators.cc | 130 *err = Err(dest_accessor->base(), err->message(), err->help_text()); in Init() 143 *err = Err(dest_accessor->base(), err->message(), err->help_text()); in Init()
|
H A D | ninja_build_writer_unittest.cc | 340 EXPECT_EQ(expected_help_test, err.help_text()); in TEST_F()
|
H A D | target_unittest.cc | 322 ASSERT_TRUE(a.OnResolved(&err)) << err.help_text(); in TEST_F() 983 err.help_text()); in TEST_F() 1019 err.help_text()); in TEST_F()
|
H A D | compile_commands_writer_unittest.cc | 636 << err.message() << " " << err.help_text(); in TEST_F()
|
/third_party/mbedtls/tests/scripts/ |
H A D | test_config_script.py | 63 def guess_presets_from_help(help_text): 66 help_text should be the output from running the script with --help. 69 hits = re.findall(r'\{([-\w,]+)\}', help_text) 78 hits = re.findall(r'\n +([-\w]+) +- ', help_text) 92 help_text = subprocess.run([options.script, '--help'], 96 return guess_presets_from_help(help_text.decode('ascii'))
|
/third_party/protobuf/src/google/protobuf/compiler/ |
H A D | command_line_interface.h | 125 // * help_text: Text describing this flag in the --help output. 134 const std::string& help_text); 147 const std::string& help_text); 355 std::string help_text; member
|
H A D | command_line_interface.cc | 783 const std::string& help_text) { in RegisterGenerator() 787 info.help_text = help_text; in RegisterGenerator() 793 CodeGenerator* generator, const std::string& help_text) { in RegisterGenerator() 798 info.help_text = help_text; in RegisterGenerator() 1999 << iter->second.help_text << std::endl; in PrintHelpText() 781 RegisterGenerator(const std::string& flag_name, CodeGenerator* generator, const std::string& help_text) RegisterGenerator() argument 791 RegisterGenerator( const std::string& flag_name, const std::string& option_flag_name, CodeGenerator* generator, const std::string& help_text) RegisterGenerator() argument
|
/third_party/rust/crates/clap/tests/builder/ |
H A D | double_require.rs | 49 fn help_text() { in help_text() functions
|
H A D | subcommands.rs | 345 let help_text = cmd.render_help().to_string(); in subcommand_placeholder_test() 347 assert!(help_text.contains("TEST_HEADER:")); in subcommand_placeholder_test()
|
/third_party/libfuse/example/ |
H A D | cxxopts.hpp | 1252 positional_help(std::string help_text) in positional_help() argument 1254 m_positional_help = std::move(help_text); in positional_help() 1259 custom_help(std::string help_text) in custom_help() argument 1261 m_custom_help = std::move(help_text); in custom_help()
|
/third_party/littlefs/runners/ |
H A D | test_runner.c | 2020 const char *const help_text[] = { variable 2091 size_t len = strlen(help_text[i]); in main() 2097 &help_text[i][j]); in main() 2104 printf("%24s%.80s\n", "", &help_text[i][j]); in main()
|
H A D | bench_runner.c | 1457 const char *const help_text[] = { variable 1525 size_t len = strlen(help_text[i]); in main() 1531 &help_text[i][j]); in main() 1538 printf("%24s%.80s\n", "", &help_text[i][j]); in main()
|
/third_party/python/Lib/ |
H A D | optparse.py | 322 help_text = self.expand_default(option) 323 help_lines = textwrap.wrap(help_text, self.help_width)
|
H A D | argparse.py | 543 help_text = self._expand_help(action) 544 if help_text: 545 help_lines = self._split_lines(help_text, help_width)
|