Searched refs:normalizeWhitespace (Results 1 – 6 of 6) sorted by relevance
47 Assert.assertEquals("", TextUtils.normalizeWhitespace(" ")); in testNormalizeWhitespace()48 Assert.assertEquals("hello", TextUtils.normalizeWhitespace("hello ")); in testNormalizeWhitespace()49 Assert.assertEquals("hello", TextUtils.normalizeWhitespace(" hello")); in testNormalizeWhitespace()50 Assert.assertEquals("hello", TextUtils.normalizeWhitespace(" hello ")); in testNormalizeWhitespace()51 Assert.assertEquals("hello\nworld", TextUtils.normalizeWhitespace("hello \n \n world")); in testNormalizeWhitespace()
125 Assert.assertEquals(TextUtils.normalizeWhitespace(smaliContents), in runTest()126 TextUtils.normalizeWhitespace((stringWriter.toString()))); in runTest()
79 return TextUtils.normalizeWhitespace(smaliText); in normalizeSmali()
52 public static String normalizeWhitespace(@Nonnull String source) { in normalizeWhitespace() method in TextUtils
344 value = normalizeWhitespace(path, value); in processInput()550 private String normalizeWhitespace(String path, String value) { in normalizeWhitespace() method in DisplayAndInputProcessor
864 String bufferString = normalizeWhitespace(buffer); in parseFile()930 private String normalizeWhitespace(CharSequence input) { in normalizeWhitespace() method in CheckHtmlFiles.Data