OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:quoteDepth
(Results
1 - 2
of
2
) sorted by null
/packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
HtmlTree.java
597
private int
quoteDepth
= 0;
648
quoteDepth
++;
653
quoteDepth
= Math.max(0,
quoteDepth
- 1);
790
if (endingNewLines > 0 &&
quoteDepth
> 0) {
791
for (int i = 0; i <
quoteDepth
; i++) {
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlTree.java
631
private int
quoteDepth
= 0;
682
quoteDepth
++;
687
quoteDepth
= Math.max(0,
quoteDepth
- 1);
824
if (endingNewLines > 0 &&
quoteDepth
> 0) {
825
for (int i = 0; i <
quoteDepth
; i++) {
Completed in 475 milliseconds