Searched refs:OptionArgElement (Results 1 – 3 of 3) sorted by relevance
/external/lldb/source/Interpreter/ |
D | Args.cpp | 1541 … option_element_vector.push_back (OptionArgElement (OptionArgElement::eBareDoubleDash, optind - 1, in ParseArgsForCompletion() 1542 … OptionArgElement::eBareDoubleDash)); in ParseArgsForCompletion() 1553 …option_element_vector.push_back (OptionArgElement (OptionArgElement::eUnrecognizedArg, optind - 1, in ParseArgsForCompletion() 1554 OptionArgElement::eUnrecognizedArg)); in ParseArgsForCompletion() 1603 option_element_vector.push_back (OptionArgElement (opt_defs_index, optind - 1, 0)); in ParseArgsForCompletion() 1614 … option_element_vector.push_back (OptionArgElement (opt_defs_index, optind - 2, arg_index)); in ParseArgsForCompletion() 1618 … option_element_vector.push_back (OptionArgElement (opt_defs_index, optind - 1, -1)); in ParseArgsForCompletion() 1624 … option_element_vector.push_back (OptionArgElement (opt_defs_index, optind - 2, optind - 1)); in ParseArgsForCompletion() 1628 … option_element_vector.push_back (OptionArgElement (opt_defs_index, optind - 2, optind - 1)); in ParseArgsForCompletion() 1633 …option_element_vector.push_back (OptionArgElement (OptionArgElement::eUnrecognizedArg, optind - 1, in ParseArgsForCompletion() [all …]
|
D | Options.cpp | 771 if (opt_defs_index == OptionArgElement::eBareDash) in HandleOptionCompletion() 785 else if (opt_defs_index == OptionArgElement::eBareDoubleDash) in HandleOptionCompletion() 796 else if (opt_defs_index != OptionArgElement::eUnrecognizedArg) in HandleOptionCompletion()
|
/external/lldb/include/lldb/Interpreter/ |
D | Args.h | 35 struct OptionArgElement struct 43 OptionArgElement (int defs_index, int pos, int arg_pos) : in OptionArgElement() argument 55 typedef std::vector<OptionArgElement> OptionElementVector; argument
|