Searched refs:curChar (Results 1 - 6 of 6) sorted by relevance

/packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
H A DAddressListParserTokenManager.java52 try { curChar = input_stream.readChar(); }
58 switch(curChar)
130 if (curChar < 64)
132 long l = 1L << curChar;
168 else if (curChar < 128)
170 long l = 1L << (curChar & 077);
189 int i2 = (curChar & 0xff) >> 6;
190 long l2 = 1L << (curChar & 077);
208 try { curChar = input_stream.readChar(); }
228 try { curChar
748 protected char curChar; field in class:AddressListParserTokenManager
[all...]
H A DTokenMgrError.java112 protected static String LexicalError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar) { argument
116 (EOFSeen ? "<EOF> " : ("\"" + addEscapes(String.valueOf(curChar)) + "\"") + " (" + (int)curChar + "), ") +
145 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) { argument
146 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
/packages/apps/Email/src/org/apache/james/mime4j/field/contenttype/parser/
H A DContentTypeParserTokenManager.java53 try { curChar = input_stream.readChar(); }
59 switch(curChar)
124 if (curChar < 64)
126 long l = 1L << curChar;
175 else if (curChar < 128)
177 long l = 1L << (curChar & 077);
195 int i2 = (curChar & 0xff) >> 6;
196 long l2 = 1L << (curChar & 077);
222 try { curChar = input_stream.readChar(); }
242 try { curChar
634 protected char curChar; field in class:ContentTypeParserTokenManager
[all...]
H A DTokenMgrError.java112 protected static String LexicalError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar) { argument
116 (EOFSeen ? "<EOF> " : ("\"" + addEscapes(String.valueOf(curChar)) + "\"") + " (" + (int)curChar + "), ") +
145 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) { argument
146 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
/packages/apps/Email/src/org/apache/james/mime4j/field/datetime/parser/
H A DTokenMgrError.java112 protected static String LexicalError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar) { argument
116 (EOFSeen ? "<EOF> " : ("\"" + addEscapes(String.valueOf(curChar)) + "\"") + " (" + (int)curChar + "), ") +
145 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) { argument
146 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
H A DDateTimeParserTokenManager.java72 try { curChar = input_stream.readChar(); }
78 switch(curChar)
126 try { curChar = input_stream.readChar(); }
131 switch(curChar)
168 try { curChar = input_stream.readChar(); }
173 switch(curChar)
308 if (curChar < 64)
310 long l = 1L << curChar;
350 else if (curChar < 128)
352 long l = 1L << (curChar
673 protected char curChar; field in class:DateTimeParserTokenManager
[all...]

Completed in 142 milliseconds