Lines Matching defs:wrapLength
102 const int wrapLength = wrapLengthParam > 0 ? wrapLengthParam : std::numeric_limits<int>::max();
106 if (length > wrapLength)
108 result += string() + "{" + (length > wrapLength ? "\n"+deepIndentation : " ");
115 result += string() + ", " + (index % wrapLength == 0 ? "\n"+deepIndentation : "");
120 result += length > wrapLength ? "\n"+baseIndentation : " ";