Searched refs:stripHtml (Results 1 – 2 of 2) sorted by relevance
364 public static String makeSnippetFromText(String text, boolean stripHtml) { in makeSnippetFromText() argument385 if (stripHtml && !inTag && (c == '<')) { in makeSnippetFromText()415 } else if (stripHtml && inTag && (c == '>')) { in makeSnippetFromText()424 } else if (stripHtml && (c == '&')) { in makeSnippetFromText()
348 public static String stripHtml(final String htmlText) { in stripHtml() method in UiUtils