HomeSort by relevance Sort by last modified time
    Searched refs:m_seen_options (Results 1 - 4 of 4) sorted by null

  /external/lldb/include/lldb/Interpreter/
Options.h 313 OptionSet m_seen_options; member in class:lldb_private::Options
  /external/lldb/tools/driver/
Driver.h 121 OptionSet m_seen_options; member in class:Driver::OptionData
Driver.cpp 402 m_seen_options()
572 m_option_data.m_seen_options.insert ((char) val);
    [all...]
  /external/lldb/source/Interpreter/
Options.cpp 49 m_seen_options.clear();
63 m_seen_options.insert (option_idx);
141 // This is the correct set of options if: 1). m_seen_options contains all of m_required_options[i]
142 // (i.e. all the required options at this level are a subset of m_seen_options); AND
143 // 2). { m_seen_options - m_required_options[i] is a subset of m_options_options[i] (i.e. all the rest of
144 // m_seen_options are in the set of optional options at this level.
146 // Check to see if all of m_required_options[i] are a subset of m_seen_options
147 if (IsASubset (GetRequiredOptions()[i], m_seen_options))
149 // Construct the set difference: remaining_options = {m_seen_options} - {m_required_options[i]}
151 OptionsSetDiff (m_seen_options, GetRequiredOptions()[i], remaining_options)
    [all...]

Completed in 41 milliseconds