Searched refs:CommonLen (Results 1 – 4 of 4) 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()
45 size_t CommonLen = 0; in getCommonPrefix() local46 for (; CommonLen != Len; ++CommonLen) { in getCommonPrefix()47 if (CommonPrefix[CommonLen] != I->TypedText[CommonLen]) in getCommonPrefix()50 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 ()()