Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DSuspiciousCallArgumentCheck.cpp218 std::ptrdiff_t ParamLen = Param.size(); in applyJaroWinklerHeuristic() local
220 SmallVector<int, SmallVectorSize> ParamFlags(ParamLen); in applyJaroWinklerHeuristic()
222 std::max(std::ptrdiff_t{0}, std::max(ArgLen, ParamLen) / 2 - 1); in applyJaroWinklerHeuristic()
225 for (std::ptrdiff_t I = 0; I < ParamLen; ++I) in applyJaroWinklerHeuristic()
241 for (std::ptrdiff_t I = 0; I < ParamLen; ++I) { in applyJaroWinklerHeuristic()
258 double Dist = ((MatchD / ArgLen) + (MatchD / ParamLen) + in applyJaroWinklerHeuristic()
265 I < std::min(std::min(ArgLen, ParamLen), std::ptrdiff_t{4}); ++I) in applyJaroWinklerHeuristic()