HomeSort by relevance Sort by last modified time
    Searched refs:textend (Results 1 - 2 of 2) sorted by null

  /packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
HtmlTree.java 337 * @param textEnd beginning plain-text offset
342 public ArrayList<Block> createBlocks(int textStart, int textEnd, int minNode, int maxNode) {
346 int endNode = Math.min(getBlockEnd(textEnd), maxNode);
350 "text pos: " + textStart + "-" + textEnd + "\n" +
352 plainText.substring(textStart, textEnd));
511 int textend = textPositions[toNode]; local
512 return plainText.substring(textstart, textend);
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlTree.java 370 * @param textEnd beginning plain-text offset
375 public ArrayList<Block> createBlocks(int textStart, int textEnd, int minNode, int maxNode) {
379 int endNode = Math.min(getBlockEnd(textEnd), maxNode);
383 "text pos: " + textStart + "-" + textEnd + "\n" +
385 plainText.substring(textStart, textEnd));
544 int textend = textPositions[toNode]; local
545 return plainText.substring(textstart, textend);

Completed in 31 milliseconds