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

/packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
H A DHtmlParser.java54 private int clipLength = Integer.MAX_VALUE; field in class:HtmlParser
118 * @param clipLength must be greater than zero.
121 public void setClipLength(int clipLength) { argument
122 if (clipLength <= 0) {
124 "clipLength '" + clipLength + "' <= 0");
126 this.clipLength = clipLength;
196 int clipEnd = Math.min(clipLength, end);
232 clipped = pos >= clipLength;
[all...]
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
H A DHtmlParser.java54 private int clipLength = Integer.MAX_VALUE; field in class:HtmlParser
118 * @param clipLength must be greater than zero.
121 public void setClipLength(int clipLength) { argument
122 if (clipLength <= 0) {
124 "clipLength '" + clipLength + "' <= 0");
126 this.clipLength = clipLength;
196 int clipEnd = Math.min(clipLength, end);
232 clipped = pos >= clipLength;
[all...]

Completed in 696 milliseconds