Home | History | Annotate | Download | only in browse

Lines Matching defs:snippet

451         final String snippet;
453 snippet = makeSnippet(mMessage.snippet);
455 snippet = mMessage.snippet;
457 mSnippet = snippet == null ? null : getBidiFormatter().unicodeWrap(snippet);
1360 * Returns a short plaintext snippet generated from the given HTML message
1362 * everything in between, and truncates the snippet to no more than 100
1365 * @return Short plaintext snippet
1373 final StringBuilder snippet = new StringBuilder(MAX_SNIPPET_LENGTH);
1378 while ((c = reader.read()) != -1 && snippet.length() < MAX_SNIPPET_LENGTH) {
1381 snippet.append(' ');
1416 snippet.append(' ');
1418 snippet.append('<');
1420 snippet.append('>');
1422 snippet.append('&');
1424 snippet.append('"');
1426 snippet.append('\'');
1429 snippet.append('&').append(entity);
1431 snippet.append(';');
1443 snippet.append((char) c);
1450 return snippet.toString();