Home | History | Annotate | Download | only in browse

Lines Matching refs:snippet

455         final String snippet;
457 snippet = makeSnippet(mMessage.snippet);
459 snippet = mMessage.snippet;
461 mSnippet = snippet == null ? null : getBidiFormatter().unicodeWrap(snippet);
1372 * Returns a short plaintext snippet generated from the given HTML message
1374 * everything in between, and truncates the snippet to no more than 100
1377 * @return Short plaintext snippet
1385 final StringBuilder snippet = new StringBuilder(MAX_SNIPPET_LENGTH);
1390 while ((c = reader.read()) != -1 && snippet.length() < MAX_SNIPPET_LENGTH) {
1393 snippet.append(' ');
1428 snippet.append(' ');
1430 snippet.append('<');
1432 snippet.append('>');
1434 snippet.append('&');
1436 snippet.append('"');
1438 snippet.append('\'');
1441 snippet.append('&').append(entity);
1443 snippet.append(';');
1455 snippet.append((char) c);
1462 return snippet.toString();