Home
last modified time | relevance | path

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

/packages/apps/Email/tests/src/com/android/emailcommon/utility/
DUtilityUnitTests.java113 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()
/packages/apps/Email/
Dproguard.flags79 *** replaceBareLfWithCrlf(java.lang.String);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
DUtility.java438 public static String replaceBareLfWithCrlf(String str) { in replaceBareLfWithCrlf() method in Utility
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
DCalendarSyncAdapter.java1593 loc = Utility.replaceBareLfWithCrlf(loc); in sendEvent()