Home
last modified time | relevance | path

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

/dports/science/gromacs/gromacs-2021.4/src/gromacs/utility/
H A Dstringutil.cpp312 …CaseInsensitive(const std::string& source, const std::string& target, size_t maxLengthOfComparison) in equalCaseInsensitive() argument
315 if (source.length() < maxLengthOfComparison) in equalCaseInsensitive()
325 if (maxLengthOfComparison > target.length()) in equalCaseInsensitive()
329 comparisonEnd = source.begin() + maxLengthOfComparison; in equalCaseInsensitive()
H A Dstringutil.h451 …aseInsensitive(const std::string& source, const std::string& target, size_t maxLengthOfComparison);