Searched refs:CommonLen (Results 1 – 2 of 2) sorted by relevance
44 size_t CommonLen = 0; in getCommonPrefix() local45 for (; CommonLen != Len; ++CommonLen) { in getCommonPrefix()46 if (CommonPrefix[CommonLen] != I->TypedText[CommonLen]) in getCommonPrefix()49 CommonPrefix.resize(CommonLen); in getCommonPrefix()
209 size_t CommonLen = std::min(LenA, LenB); in operator ()() local211 for (size_t i = 0; i < CommonLen; ++i) { in operator ()()