Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/lib/LineEditor/
H A DLineEditor.cpp40 std::string CommonPrefix = Comps[0].TypedText; in getCommonPrefix() local
42 size_t Len = std::min(CommonPrefix.size(), C.TypedText.size()); in getCommonPrefix()
45 if (CommonPrefix[CommonLen] != C.TypedText[CommonLen]) in getCommonPrefix()
48 CommonPrefix.resize(CommonLen); in getCommonPrefix()
50 return CommonPrefix; in getCommonPrefix()
62 std::string CommonPrefix = getCommonPrefix(Comps); in complete() local
69 if (CommonPrefix.empty()) { in complete()
75 Action.Text = CommonPrefix; in complete()