Searched refs:getCharErrorDisplay (Results 1 – 7 of 7) sorted by relevance
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/ |
D | Lexer.java | 283 …msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting "+getCharErrorDisplay(mte.expec… in getErrorMessage() 290 msg = "no viable alternative at character "+getCharErrorDisplay(e.c); in getErrorMessage() 295 msg = "required (...)+ loop did not match anything at character "+getCharErrorDisplay(e.c); in getErrorMessage() 299 msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting set "+mse.expecting; in getErrorMessage() 303 msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting set "+mse.expecting; in getErrorMessage() 307 msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting set "+ in getErrorMessage() 308 getCharErrorDisplay(mre.a)+".."+getCharErrorDisplay(mre.b); in getErrorMessage() 316 public String getCharErrorDisplay(int c) { in getCharErrorDisplay() method in Lexer
|
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/ |
D | Lexer.js | 223 …msg = "mismatched character "+this.getCharErrorDisplay(e.c)+" expecting "+this.getCharErrorDisplay… 226 msg = "no viable alternative at character "+this.getCharErrorDisplay(e.c); 229 … msg = "required (...)+ loop did not match anything at character "+this.getCharErrorDisplay(e.c); 232 … msg = "mismatched character "+this.getCharErrorDisplay(e.c)+" expecting set "+e.expecting; 235 … msg = "mismatched character "+this.getCharErrorDisplay(e.c)+" expecting set "+e.expecting; 238 msg = "mismatched character "+this.getCharErrorDisplay(e.c)+" expecting set "+ 239 this.getCharErrorDisplay(e.a)+".."+this.getCharErrorDisplay(e.b); 247 getCharErrorDisplay: function(c) {
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | Lexer.as | 246 …msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting "+getCharErrorDisplay(mte.expec… 253 msg = "no viable alternative at character "+getCharErrorDisplay(e.c); 258 msg = "required (...)+ loop did not match anything at character "+getCharErrorDisplay(e.c); 262 msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting set "+mnse.expecting; 266 msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting set "+mse.expecting; 270 msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting set "+ 271 getCharErrorDisplay(mre.a)+".."+getCharErrorDisplay(mre.b); 279 public function getCharErrorDisplay(c:int):String { method in org.antlr.runtime.Lexer
|
/external/antlr/runtime/Python/antlr3/ |
D | recognizers.py | 1288 + self.getCharErrorDisplay(e.c) \ 1290 + self.getCharErrorDisplay(e.expecting) 1294 + self.getCharErrorDisplay(e.c) 1298 + self.getCharErrorDisplay(e.c) 1302 + self.getCharErrorDisplay(e.c) \ 1308 + self.getCharErrorDisplay(e.c) \ 1314 + self.getCharErrorDisplay(e.c) \ 1316 + self.getCharErrorDisplay(e.a) \ 1318 + self.getCharErrorDisplay(e.b) 1326 def getCharErrorDisplay(self, c): member in Lexer
|
/external/antlr/runtime/ObjC/Framework/ |
D | Lexer.m | 348 [self getCharErrorDisplay:mte.c], [self getCharErrorDisplay:mte.expectingChar]]; 356 nvae.decisionNumber, nvae.stateNumber, [self getCharErrorDisplay:(nvae.c)]]; 362 [self getCharErrorDisplay:(eee.c)]]; 367 [self getCharErrorDisplay:(mse.c)], mse.expecting]; 372 [self getCharErrorDisplay:(mse.c)], mse.expecting]; 377 [self getCharErrorDisplay:(mre.c)], [self getCharErrorDisplay:(mre.range.location)], 378 [self getCharErrorDisplay:(mre.range.location+mre.range.length-1)]]; 386 - (NSString *)getCharErrorDisplay:(NSInteger)c
|
D | Lexer.h | 85 - (NSString *)getCharErrorDisplay:(NSInteger)c;
|
/external/antlr/runtime/Python3/antlr3/ |
D | recognizers.py | 1262 self.getCharErrorDisplay(e.c), 1263 self.getCharErrorDisplay(e.expecting)) 1267 self.getCharErrorDisplay(e.c)) 1271 self.getCharErrorDisplay(e.c)) 1275 self.getCharErrorDisplay(e.c), 1280 self.getCharErrorDisplay(e.c), 1285 self.getCharErrorDisplay(e.c), 1286 self.getCharErrorDisplay(e.a), 1287 self.getCharErrorDisplay(e.b)) 1295 def getCharErrorDisplay(self, c): member in Lexer
|