Searched refs:normalizeWhitespace (Results 1 – 4 of 4) sorted by relevance
83 return normalizeWhitespace(smaliText); in normalizeSmali()131 public static String normalizeWhitespace(@Nonnull String source) { in normalizeWhitespace() method in BaksmaliTestUtils171 Assert.assertEquals("", normalizeWhitespace(" ")); in testNormalizeWhitespace()172 Assert.assertEquals("hello", normalizeWhitespace("hello ")); in testNormalizeWhitespace()173 Assert.assertEquals("hello", normalizeWhitespace(" hello")); in testNormalizeWhitespace()174 Assert.assertEquals("hello", normalizeWhitespace(" hello ")); in testNormalizeWhitespace()175 Assert.assertEquals("hello\nworld", normalizeWhitespace("hello \n \n world")); in testNormalizeWhitespace()
124 Assert.assertEquals(BaksmaliTestUtils.normalizeWhitespace(smaliContents), in runTest()125 BaksmaliTestUtils.normalizeWhitespace((stringWriter.toString()))); in runTest()
865 String bufferString = normalizeWhitespace(buffer); in parseFile()931 private String normalizeWhitespace(CharSequence input) { in normalizeWhitespace() method in CheckHtmlFiles.Data
361 value = normalizeWhitespace(path, value); in processInput()584 private String normalizeWhitespace(String path, String value) { in normalizeWhitespace() method in DisplayAndInputProcessor