Searched refs:textNodes (Results 1 - 2 of 2) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
H A DHtmlParser.java255 LinkedList<HtmlDocument.Text> textNodes = Lists.newLinkedList();
259 textNodes.add((HtmlDocument.Text) node);
261 mergeTextNodes(textNodes, out);
265 mergeTextNodes(textNodes, out);
270 * Flushes any Text nodes in {@code textNodes} into a single Text node
271 * in {@code output}. {@code textNodes} is guaranteed to be empty when
273 * @param textNodes Text nodes.
276 private static void mergeTextNodes(LinkedList<HtmlDocument.Text> textNodes, argument
278 if (!textNodes.isEmpty()) {
279 if (textNodes
[all...]
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
H A DHtmlParser.java255 LinkedList<HtmlDocument.Text> textNodes = Lists.newLinkedList();
259 textNodes.add((HtmlDocument.Text) node);
261 mergeTextNodes(textNodes, out);
265 mergeTextNodes(textNodes, out);
270 * Flushes any Text nodes in {@code textNodes} into a single Text node
271 * in {@code output}. {@code textNodes} is guaranteed to be empty when
273 * @param textNodes Text nodes.
276 private static void mergeTextNodes(LinkedList<HtmlDocument.Text> textNodes, argument
278 if (!textNodes.isEmpty()) {
279 if (textNodes
[all...]

Completed in 74 milliseconds