Searched refs:CommonLen (Results 1 – 3 of 3) sorted by relevance
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 ()()