Lines Matching refs:Trimmed
3211 StringRef Trimmed = Line.trim(); in sortCppIncludes() local
3216 if (RawStringRegex.match(Trimmed, &RawStringMatches)) { in sortCppIncludes()
3222 if (Trimmed.contains(RawStringTermination)) in sortCppIncludes()
3227 if (isClangFormatOff(Trimmed)) { in sortCppIncludes()
3229 } else if (isClangFormatOn(Trimmed)) { in sortCppIncludes()
3231 } else if (Trimmed.starts_with("/*")) { in sortCppIncludes()
3237 Trimmed.empty() && in sortCppIncludes()
3242 bool MergeWithNextLine = Trimmed.ends_with("\\"); in sortCppIncludes()
3245 tooling::HeaderIncludes::IncludeRegex.match(Trimmed, &Matches)) { in sortCppIncludes()
3247 if (Trimmed.contains("/*") && !Trimmed.contains("*/")) { in sortCppIncludes()
3269 if (Trimmed.starts_with("#pragma hdrstop")) // Precompiled headers. in sortCppIncludes()
3411 StringRef Trimmed = Line.trim(); in sortJavaImports() local
3412 if (isClangFormatOff(Trimmed)) in sortJavaImports()
3414 else if (isClangFormatOn(Trimmed)) in sortJavaImports()
3431 } else if (Trimmed.size() > 0 && !ImportsInBlock.empty()) { in sortJavaImports()