Home
last modified time | relevance | path

Searched refs:short_option (Results 1 – 25 of 610) sorted by relevance

12345678910>>...25

/dports/audio/musicpd/mpd-0.23.6/src/util/
H A DOptionDef.hxx31 char short_option; member in OptionDef
37 short_option(0), in OptionDef()
43 short_option(_short_option), in OptionDef()
50 short_option(_short_option), in OptionDef()
55 constexpr bool HasShortOption() const { return short_option != 0; } in HasShortOption()
70 return short_option; in GetShortOption()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/lldb/source/Interpreter/
H A DOptionGroupFile.cpp17 const char *long_option, int short_option, in OptionGroupFile() argument
24 m_option_definition.short_option = short_option; in OptionGroupFile()
47 int short_option, uint32_t completion_type, in OptionGroupFileList() argument
53 m_option_definition.short_option = short_option; in OptionGroupFileList()
H A DOptionGroupUUID.cpp29 const int short_option = g_option_table[option_idx].short_option; in SetOptionValue() local
31 switch (short_option) { in SetOptionValue()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/lldb/source/Interpreter/
H A DOptionGroupFile.cpp17 const char *long_option, int short_option, in OptionGroupFile() argument
24 m_option_definition.short_option = short_option; in OptionGroupFile()
47 int short_option, uint32_t completion_type, in OptionGroupFileList() argument
53 m_option_definition.short_option = short_option; in OptionGroupFileList()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/lldb/source/Interpreter/
H A DOptionGroupFile.cpp17 const char *long_option, int short_option, in OptionGroupFile() argument
24 m_option_definition.short_option = short_option; in OptionGroupFile()
47 int short_option, uint32_t completion_type, in OptionGroupFileList() argument
53 m_option_definition.short_option = short_option; in OptionGroupFileList()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/lldb/source/Interpreter/
H A DOptionGroupFile.cpp17 const char *long_option, int short_option, in OptionGroupFile() argument
24 m_option_definition.short_option = short_option; in OptionGroupFile()
47 int short_option, uint32_t completion_type, in OptionGroupFileList() argument
53 m_option_definition.short_option = short_option; in OptionGroupFileList()
/dports/devel/llvm13/llvm-project-13.0.1.src/lldb/source/Interpreter/
H A DOptionGroupFile.cpp17 const char *long_option, int short_option, in OptionGroupFile() argument
24 m_option_definition.short_option = short_option; in OptionGroupFile()
47 int short_option, uint32_t completion_type, in OptionGroupFileList() argument
53 m_option_definition.short_option = short_option; in OptionGroupFileList()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/lldb/source/Interpreter/
H A DOptionGroupFile.cpp17 const char *long_option, int short_option, in OptionGroupFile() argument
25 m_option_definition.short_option = short_option; in OptionGroupFile()
50 int short_option, uint32_t completion_type, in OptionGroupFileList() argument
56 m_option_definition.short_option = short_option; in OptionGroupFileList()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/lldb/source/Interpreter/
H A DOptionGroupFile.cpp17 const char *long_option, int short_option, in OptionGroupFile() argument
25 m_option_definition.short_option = short_option; in OptionGroupFile()
50 int short_option, uint32_t completion_type, in OptionGroupFileList() argument
56 m_option_definition.short_option = short_option; in OptionGroupFileList()
/dports/devel/llvm12/llvm-project-12.0.1.src/lldb/source/Interpreter/
H A DOptionGroupFile.cpp17 const char *long_option, int short_option, in OptionGroupFile() argument
25 m_option_definition.short_option = short_option; in OptionGroupFile()
50 int short_option, uint32_t completion_type, in OptionGroupFileList() argument
56 m_option_definition.short_option = short_option; in OptionGroupFileList()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/lldb/source/Interpreter/
H A DOptionGroupFile.cpp17 const char *long_option, int short_option, in OptionGroupFile() argument
25 m_option_definition.short_option = short_option; in OptionGroupFile()
50 int short_option, uint32_t completion_type, in OptionGroupFileList() argument
56 m_option_definition.short_option = short_option; in OptionGroupFileList()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/lldb/source/Interpreter/
H A DOptionGroupFile.cpp17 const char *long_option, int short_option, in OptionGroupFile() argument
25 m_option_definition.short_option = short_option; in OptionGroupFile()
50 int short_option, uint32_t completion_type, in OptionGroupFileList() argument
56 m_option_definition.short_option = short_option; in OptionGroupFileList()
/dports/audio/alsa-utils/alsa-utils-1.2.2/alsactl/
H A Dalsactl.c198 char *short_option; in main() local
203 short_option = malloc(128); in main()
204 if (short_option == NULL) { in main()
218 short_option[k++] = o->val; in main()
220 short_option[k++] = ':'; in main()
222 short_option[k] = '\0'; in main()
227 if ((c = getopt_long(argc, argv, short_option, long_option, in main()
317 free(short_option); in main()
318 short_option = NULL; in main()
395 free(short_option); in main()
/dports/devel/gengetopt/gengetopt-2.23/src/skels/
H A Dgeneric_option.h_skel2 case '@short_option@': /* @option_comment@. */
3 @IF@ short_option:string = "?" @then@
19 "@long_option@", '@short_option@',
41 check_ambiguity, override, 1, 0, "@long_option@", '@short_option@',
49 "@long_option@", '@short_option@',
/dports/www/trafficserver/trafficserver-9.1.1/src/tscore/
H A DArgParser.cc60 …return _top_level_command.add_option(long_option, short_option, description, envvar, arg_num, defa… in add_option()
232 if (short_option.size() > 2 || (short_option.size() > 0 && short_option[0] != '-')) { in check_option()
234 std::cerr << "Error: invalid short option added: '" + short_option + "'" << std::endl; in check_option()
241 } else if (_option_map.find(short_option) != _option_map.end()) { in check_option()
242 std::cerr << "Error: short option '" + short_option + "' already existed" << std::endl; in check_option()
270 check_option(long_option, short_option, lookup_key); in add_option()
271 …_option_list[long_option] = {long_option, short_option == "-" ? "" : short_option, description, en… in add_option()
273 if (short_option != "-" && !short_option.empty()) { in add_option()
274 _option_map[short_option] = long_option; in add_option()
337 if (!it.second.short_option.empty()) { in output_option()
[all …]
/dports/audio/zrythm/zrythm-1.0.0-alpha.26.0.13/ext/sh-manpage-completions/src/
H A DZshConverter.cpp4 std::vector<std::string> &short_option, in convert() argument
13 num_options += short_option.size() + long_option.size() + old_option.size(); in convert()
16 short_option.clear(); in convert()
27 for (auto &it : short_option) { in convert()
H A DBashConverter.cpp21 std::vector<std::string> &short_option, in convert() argument
25 short_option.size() + long_option.size() + old_option.size(); in convert()
28 short_option.clear(); in convert()
36 for (auto &it : short_option) { in convert()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/lldb/include/lldb/Utility/
H A DOptionDefinition.h32 int short_option; member
52 return llvm::isUInt<CHAR_BIT>(short_option) && in HasShortOption()
53 llvm::isPrint(short_option); in HasShortOption()
/dports/devel/llvm12/llvm-project-12.0.1.src/lldb/include/lldb/Utility/
H A DOptionDefinition.h32 int short_option; member
52 return llvm::isUInt<CHAR_BIT>(short_option) && in HasShortOption()
53 llvm::isPrint(short_option); in HasShortOption()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/lldb/include/lldb/Utility/
H A DOptionDefinition.h32 int short_option; member
52 return llvm::isUInt<CHAR_BIT>(short_option) && in HasShortOption()
53 llvm::isPrint(short_option); in HasShortOption()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/lldb/include/lldb/Utility/
H A DOptionDefinition.h32 int short_option; member
52 return llvm::isUInt<CHAR_BIT>(short_option) && in HasShortOption()
53 llvm::isPrint(short_option); in HasShortOption()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/lldb/include/lldb/Utility/
H A DOptionDefinition.h32 int short_option; member
52 return llvm::isUInt<CHAR_BIT>(short_option) && in HasShortOption()
53 llvm::isPrint(short_option); in HasShortOption()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/lldb/include/lldb/Utility/
H A DOptionDefinition.h32 int short_option; member
52 return llvm::isUInt<CHAR_BIT>(short_option) && in HasShortOption()
53 llvm::isPrint(short_option); in HasShortOption()
/dports/devel/llvm13/llvm-project-13.0.1.src/lldb/include/lldb/Utility/
H A DOptionDefinition.h32 int short_option; member
52 return llvm::isUInt<CHAR_BIT>(short_option) && in HasShortOption()
53 llvm::isPrint(short_option); in HasShortOption()
/dports/audio/zrythm/zrythm-1.0.0-alpha.26.0.13/ext/sh-manpage-completions/
H A Dfish-completions.l17 static std::vector<std::string> short_option, variable
99 short_option.push_back(buffer);
105 log("short_option: " + short_option.back());
125 short_option,
134 short_option.clear();

12345678910>>...25