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

  /external/lldb/source/Core/
StringList.cpp 127 StringList::LongestCommonPrefix (std::string &common_prefix)
134 common_prefix.clear();
136 common_prefix = m_strings[pos];
142 // First trim common_prefix if it is longer than the current element:
143 if (common_prefix.size() > new_size)
144 common_prefix.erase (new_size);
148 for (size_t i = 0; i < common_prefix.size(); i++)
150 if (m_strings[pos][i] != common_prefix[i])
152 common_prefix.erase(i);
158 if (common_prefix.empty()
    [all...]
  /external/lldb/include/lldb/Core/
StringList.h 64 LongestCommonPrefix (std::string &common_prefix);
  /external/lldb/source/Interpreter/
Args.cpp     [all...]
CommandInterpreter.cpp 2036 std::string common_prefix; local
    [all...]
  /external/lldb/include/lldb/Interpreter/
Args.h 445 LongestCommonPrefix (std::string &common_prefix);
  /external/chromium-trace/trace-viewer/tracing/third_party/python_gflags/
gflags.py 582 common_prefix = os.path.commonprefix([line for line in text_lines if line])
583 space_prefix_len = len(common_prefix) - len(common_prefix.lstrip())
    [all...]

Completed in 132 milliseconds