OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:commentNest
(Results
1 - 4
of
4
) sorted by null
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
AddressListParser.jj
501
static int
commentNest
;
543
| "(" {
commentNest
= 1; } : NESTED_COMMENT
551
| "(" { ++
commentNest
; }
552
| ")" { --
commentNest
; if (
commentNest
== 0) SwitchTo(INCOMMENT); }
AddressListParserTokenManager.java
27
static int
commentNest
;
948
commentNest
= 1;
962
++
commentNest
;
969
--
commentNest
; if (
commentNest
== 0) SwitchTo(INCOMMENT);
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
ContentTypeParserTokenManager.java
28
static int
commentNest
;
822
commentNest
= 1;
836
++
commentNest
;
843
--
commentNest
; if (
commentNest
== 0) SwitchTo(INCOMMENT);
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
DateTimeParserTokenManager.java
29
static int
commentNest
;
855
commentNest
= 1;
869
++
commentNest
;
876
--
commentNest
; if (
commentNest
== 0) SwitchTo(INCOMMENT);
Completed in 83 milliseconds