HomeSort by relevance Sort by last modified time
    Searched refs:common_prefix (Results 1 - 11 of 11) 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/chromium_org/components/url_matcher/
substring_set_matcher.cc 43 uint32 common_prefix = 0; local
44 while (common_prefix < prefix_bound &&
45 last_pattern[common_prefix] == current_pattern[common_prefix])
46 ++common_prefix;
47 result += current_pattern.size() - common_prefix;
  /external/chromium_org/tools/telemetry/telemetry/core/
memory_cache_http_server.py 250 common_prefix = os.path.commonprefix(paths)
251 if os.path.isdir(common_prefix):
252 self._base_dir = common_prefix
254 self._base_dir = os.path.dirname(common_prefix)
  /external/lldb/source/Interpreter/
Args.cpp     [all...]
CommandInterpreter.cpp 2036 std::string common_prefix; local
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/page/
__init__.py 186 common_prefix = os.path.dirname(os.path.commonprefix(all_urls))
187 return self.url[len(common_prefix):].strip('/')
  /external/lldb/include/lldb/Interpreter/
Args.h 445 LongestCommonPrefix (std::string &common_prefix);
  /external/chromium_org/tools/telemetry/telemetry/util/
find_dependencies.py 28 common_prefix = os.path.commonprefix([subdirectory, directory])
29 return common_prefix == directory
  /external/chromium-trace/trace-viewer/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...]
  /external/chromium_org/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 263 milliseconds