Searched defs:curChar (Results 1 - 8 of 8) sorted by relevance

/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/standard/parser/
H A DTokenMgrError.java101 protected static String LexicalError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar) { argument
105 (EOFSeen ? "<EOF> " : ("\"" + addEscapes(String.valueOf(curChar)) + "\"") + " (" + (int)curChar + "), ") +
137 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) { argument
138 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
H A DStandardSyntaxParserTokenManager.java76 switch(curChar)
121 if (curChar < 64)
123 long l = 1L << curChar;
140 else if (curChar == 34)
142 else if (curChar == 33)
147 if (curChar == 38)
151 if (curChar == 38 && kind > 8)
155 if (curChar == 38)
159 if (curChar == 33 && kind > 10)
163 if (curChar
934 protected char curChar; field in class:StandardSyntaxParserTokenManager
[all...]
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/surround/parser/
H A DTokenMgrError.java101 protected static String LexicalError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar) { argument
105 (EOFSeen ? "<EOF> " : ("\"" + addEscapes(String.valueOf(curChar)) + "\"") + " (" + (int)curChar + "), ") +
137 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) { argument
138 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
H A DQueryParserTokenManager.java45 switch(curChar)
78 if (curChar < 64)
80 long l = 1L << curChar;
97 else if (curChar == 34)
101 else if (curChar == 49)
117 if (curChar == 49)
121 if (curChar == 34)
129 if (curChar == 34)
133 if (curChar == 42 && kind > 18)
141 if (curChar
538 protected char curChar; field in class:QueryParserTokenManager
[all...]
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/queryParser/
H A DTokenMgrError.java101 protected static String LexicalError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar) { argument
105 (EOFSeen ? "<EOF> " : ("\"" + addEscapes(String.valueOf(curChar)) + "\"") + " (" + (int)curChar + "), ") +
137 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) { argument
138 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
H A DQueryParserTokenManager.java65 switch(curChar)
93 try { curChar = input_stream.readChar(); }
120 if (curChar < 64)
122 long l = 1L << curChar;
147 else if (curChar == 34)
149 else if (curChar == 33)
160 else if (curChar == 42)
165 if (curChar == 38)
169 if (curChar == 38 && kind > 8)
173 if (curChar
1074 protected char curChar; field in class:QueryParserTokenManager
[all...]
/lucene-3.6.0/lucene/contrib/benchmark/src/java/org/apache/lucene/benchmark/byTask/feeds/demohtml/
H A DTokenMgrError.java101 protected static String LexicalError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar) { argument
105 (EOFSeen ? "<EOF> " : ("\"" + addEscapes(String.valueOf(curChar)) + "\"") + " (" + (int)curChar + "), ") +
137 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) { argument
138 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
H A DHTMLParserTokenManager.java84 switch(curChar)
94 try { curChar = input_stream.readChar(); }
99 switch(curChar)
119 try { curChar = input_stream.readChar(); }
124 switch(curChar)
139 try { curChar = input_stream.readChar(); }
144 switch(curChar)
161 try { curChar = input_stream.readChar(); }
166 switch(curChar)
179 try { curChar
1447 protected char curChar; field in class:HTMLParserTokenManager
[all...]

Completed in 2121 milliseconds