Searched refs:normalizeWhitespace (Results 1 – 5 of 5) 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()
109 Assert.assertEquals(TextUtils.normalizeWhitespace(smaliContents), in runTest()110 TextUtils.normalizeWhitespace((stringWriter.toString()))); in runTest()
80 return TextUtils.normalizeWhitespace(smaliText); in normalizeSmali()
52 public static String normalizeWhitespace(@Nonnull String source) { in normalizeWhitespace() method in TextUtils
237 goog.string.normalizeWhitespace = function(str) { function