Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
1113 OptionArgElement(OptionArgElement::eBareDoubleDash, dash_dash_pos, in ParseForCompletion()
1114 OptionArgElement::eBareDoubleDash)); in ParseForCompletion()
1121 option_element_vector.push_back(OptionArgElement( in ParseForCompletion()
1122 OptionArgElement::eUnrecognizedArg, in ParseForCompletion()
[all …]
/openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/
H A DOptions.h31 struct OptionArgElement { struct
34 OptionArgElement(int defs_index, int pos, int arg_pos) in OptionArgElement() function
42 typedef std::vector<OptionArgElement> OptionElementVector; argument