Searched refs:replaceBareLfWithCrlf (Results 1 – 4 of 4) sorted by relevance
113 assertEquals("", Utility.replaceBareLfWithCrlf("")); in testReplaceBareLfWithCrlf()114 assertEquals("", Utility.replaceBareLfWithCrlf("\r")); in testReplaceBareLfWithCrlf()115 assertEquals("\r\n", Utility.replaceBareLfWithCrlf("\r\n")); in testReplaceBareLfWithCrlf()116 assertEquals("\r\n", Utility.replaceBareLfWithCrlf("\n")); in testReplaceBareLfWithCrlf()117 assertEquals("\r\n\r\n\r\n", Utility.replaceBareLfWithCrlf("\n\n\n")); in testReplaceBareLfWithCrlf()118 assertEquals("A\r\nB\r\nC\r\nD", Utility.replaceBareLfWithCrlf("A\nB\r\nC\nD")); in testReplaceBareLfWithCrlf()
79 *** replaceBareLfWithCrlf(java.lang.String);
438 public static String replaceBareLfWithCrlf(String str) { in replaceBareLfWithCrlf() method in Utility
1593 loc = Utility.replaceBareLfWithCrlf(loc); in sendEvent()