Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptions.cpp606 if (opt_defs_index == OptionArgElement::eBareDash) { in HandleOptionCompletion()
621 } else if (opt_defs_index == OptionArgElement::eBareDoubleDash) { in HandleOptionCompletion()
632 } else if (opt_defs_index != OptionArgElement::eUnrecognizedArg) { in HandleOptionCompletion()
723 if (cur_defs_index == OptionArgElement::eUnrecognizedArg || in HandleOptionArgumentCompletion()
724 cur_defs_index == OptionArgElement::eBareDash || in HandleOptionArgumentCompletion()
725 cur_defs_index == OptionArgElement::eBareDoubleDash) in HandleOptionArgumentCompletion()
1121 OptionArgElement(OptionArgElement::eBareDoubleDash, dash_dash_pos, in ParseForCompletion()
1122 OptionArgElement::eBareDoubleDash)); in ParseForCompletion()
1129 option_element_vector.push_back(OptionArgElement( in ParseForCompletion()
1130 OptionArgElement::eUnrecognizedArg, in ParseForCompletion()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptions.h32 struct OptionArgElement { struct
35 OptionArgElement(int defs_index, int pos, int arg_pos) in OptionArgElement() function
43 typedef std::vector<OptionArgElement> OptionElementVector; argument