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

  /external/lldb/source/Core/
RegularExpression.cpp 165 if (idx < m_matches.size())
167 if (m_matches[idx].rm_eo == m_matches[idx].rm_so)
173 else if (m_matches[idx].rm_eo > m_matches[idx].rm_so)
175 match_str.assign (s + m_matches[idx].rm_so,
176 m_matches[idx].rm_eo - m_matches[idx].rm_so);
186 if (idx < m_matches.size())
188 if (m_matches[idx].rm_eo == m_matches[idx].rm_so
    [all...]
  /external/lldb/include/lldb/Core/
RegularExpression.h 42 m_matches ()
45 m_matches.resize(max_matches + 1);
51 const size_t num_matches = m_matches.size();
54 m_matches[i] = invalid_match;
60 return m_matches.size();
66 if (m_matches.empty())
68 return m_matches.data();
82 std::vector<regmatch_t> m_matches; ///< Where parenthesized subexpressions results are stored member in class:lldb_private::RegularExpression::Match
  /external/lldb/source/Commands/
CommandCompletions.cpp 489 m_matches (matches)
589 m_matches.AppendString (m_matching_files.GetFileSpecAtIndex(i).GetFilename().GetCString());
591 return m_matches.GetSize();
690 m_matches.AppendString((*pos).GetCString());
692 return m_matches.GetSize();
743 m_matches.AppendString (cur_file_name);
753 return m_matches.GetSize();
  /external/lldb/include/lldb/Interpreter/
CommandCompletions.h 192 StringList &m_matches; member in class:lldb_private::CommandCompletions::Completer

Completed in 58 milliseconds