Home
last modified time | relevance | path

Searched refs:OptionArgElement (Results 1 – 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
HDOptions.cpp664 if (opt_defs_index == OptionArgElement::eBareDash) { in HandleOptionCompletion()
679 } else if (opt_defs_index == OptionArgElement::eBareDoubleDash) { in HandleOptionCompletion()
690 } else if (opt_defs_index != OptionArgElement::eUnrecognizedArg) { in HandleOptionCompletion()
781 if (cur_defs_index == OptionArgElement::eUnrecognizedArg || in HandleOptionArgumentCompletion()
782 cur_defs_index == OptionArgElement::eBareDash || in HandleOptionArgumentCompletion()
783 cur_defs_index == OptionArgElement::eBareDoubleDash) in HandleOptionArgumentCompletion()
1157 OptionArgElement(OptionArgElement::eBareDoubleDash, dash_dash_pos, in ParseForCompletion()
1158 OptionArgElement::eBareDoubleDash)); in ParseForCompletion()
1165 option_element_vector.push_back(OptionArgElement( in ParseForCompletion()
1166 OptionArgElement::eUnrecognizedArg, in ParseForCompletion()
[all …]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
HDOptions.h30 struct OptionArgElement { struct
33 OptionArgElement(int defs_index, int pos, int arg_pos) in OptionArgElement() argument
41 typedef std::vector<OptionArgElement> OptionElementVector; argument