Home
last modified time | relevance | path

Searched refs:LongestCommonPrefix (Results 1 – 5 of 5) sorted by relevance

/external/llvm-project/lldb/unittests/Utility/
DStringListTest.cpp218 std::string prefix = s.LongestCommonPrefix(); in TEST()
222 TEST(StringListTest, LongestCommonPrefix) { in TEST() argument
229 std::string prefix = s.LongestCommonPrefix(); in TEST()
237 std::string prefix = s.LongestCommonPrefix(); in TEST()
246 std::string prefix = s.LongestCommonPrefix(); in TEST()
257 std::string prefix = s.LongestCommonPrefix(); in TEST()
/external/llvm-project/lldb/include/lldb/Utility/
DStringList.h82 std::string LongestCommonPrefix();
/external/llvm-project/lldb/source/Utility/
DStringList.cpp101 std::string StringList::LongestCommonPrefix() { in LongestCommonPrefix() function in StringList
/external/llvm-project/lldb/source/API/
DSBCommandInterpreter.cpp293 std::string common_prefix = lldb_matches.LongestCommonPrefix(); in HandleCompletionWithDescriptions()
/external/llvm-project/lldb/source/Host/common/
DEditline.cpp1033 std::string longest_prefix = completions.LongestCommonPrefix(); in TabCommand()