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

  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
AddressListParserTokenManager.java 52 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 = input_stream.readChar();
    [all...]
TokenMgrError.java 109 * curchar : the offending character
112 protected static String LexicalError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar) {
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) {
146 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
  /packages/apps/Email/src/org/apache/james/mime4j/field/contenttype/parser/
ContentTypeParserTokenManager.java 53 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 = input_stream.readChar();
    [all...]
TokenMgrError.java 109 * curchar : the offending character
112 protected static String LexicalError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar) {
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) {
146 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
  /packages/apps/Email/src/org/apache/james/mime4j/field/datetime/parser/
TokenMgrError.java 109 * curchar : the offending character
112 protected static String LexicalError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar) {
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) {
146 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
DateTimeParserTokenManager.java 72 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 & 077)
    [all...]