Home
last modified time | relevance | path

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

/llvm-project/lldb/source/Interpreter/
H A DOptions.cpp638 if (opt_defs_index == OptionArgElement::eBareDash) { in HandleOptionCompletion()
653 } else if (opt_defs_index == OptionArgElement::eBareDoubleDash) { in HandleOptionCompletion()
664 } else if (opt_defs_index != OptionArgElement::eUnrecognizedArg) { in HandleOptionCompletion()
756 if (cur_defs_index == OptionArgElement::eUnrecognizedArg || in Append()
757 cur_defs_index == OptionArgElement::eBareDash || in Append()
758 cur_defs_index == OptionArgElement::eBareDoubleDash) in Append()
1155 OptionArgElement(OptionArgElement::eBareDoubleDash, dash_dash_pos, in ParseForCompletion()
1156 OptionArgElement::eBareDoubleDash)); in ParseForCompletion()
1163 option_element_vector.push_back(OptionArgElement( in ParseForCompletion()
[all...]
/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() argument
43 typedef std::vector<OptionArgElement> OptionElementVector; argument