Home
last modified time | relevance | path

Searched refs:GetCharErrorDisplay (Results 1 – 4 of 4) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
DSlimLexer.cs359 …msg = "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting " + GetCharErrorD… in GetErrorMessage()
367 msg = "no viable alternative at character " + GetCharErrorDisplay( e.Character ); in GetErrorMessage()
373 …sg = "required (...)+ loop did not match anything at character " + GetCharErrorDisplay( e.Characte… in GetErrorMessage()
378 …msg = "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting set " + mse.Expec… in GetErrorMessage()
383 …msg = "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting set " + mse.Expec… in GetErrorMessage()
388 … msg = "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting set " + in GetErrorMessage()
389 GetCharErrorDisplay( mre.A ) + ".." + GetCharErrorDisplay( mre.B ); in GetErrorMessage()
398 public virtual string GetCharErrorDisplay( int c ) in GetCharErrorDisplay() method in Antlr.Runtime.SlimLexer
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DLexer.cs284 …msg = "mismatched character " + GetCharErrorDisplay(e.Character) + " expecting " + GetCharErrorDis… in GetErrorMessage()
290 msg = "no viable alternative at character " + GetCharErrorDisplay(e.Character); in GetErrorMessage()
294 …sg = "required (...)+ loop did not match anything at character " + GetCharErrorDisplay(e.Character… in GetErrorMessage()
297 …msg = "mismatched character " + GetCharErrorDisplay(e.Character) + " expecting set " + mse.Expecti… in GetErrorMessage()
300 …msg = "mismatched character " + GetCharErrorDisplay(e.Character) + " expecting set " + mse.Expecti… in GetErrorMessage()
303 … msg = "mismatched character " + GetCharErrorDisplay(e.Character) + " expecting set " + in GetErrorMessage()
304 GetCharErrorDisplay(mre.A) + ".." + GetCharErrorDisplay(mre.B); in GetErrorMessage()
311 public virtual string GetCharErrorDisplay(int c) { in GetCharErrorDisplay() method in Antlr.Runtime.Lexer
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DLexer.cs342 …msg = "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting " + GetCharErrorD… in GetErrorMessage()
350 msg = "no viable alternative at character " + GetCharErrorDisplay( e.Character ); in GetErrorMessage()
356 …sg = "required (...)+ loop did not match anything at character " + GetCharErrorDisplay( e.Characte… in GetErrorMessage()
361 …msg = "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting set " + mse.Expec… in GetErrorMessage()
366 …msg = "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting set " + mse.Expec… in GetErrorMessage()
371 … msg = "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting set " + in GetErrorMessage()
372 GetCharErrorDisplay( mre.A ) + ".." + GetCharErrorDisplay( mre.B ); in GetErrorMessage()
381 public virtual string GetCharErrorDisplay( int c ) in GetCharErrorDisplay() method in Antlr.Runtime.Lexer
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
DAntlr.Runtime.pas1107 function GetCharErrorDisplay(const C: Integer): String;
2468 function GetCharErrorDisplay(const C: Integer): String;
5358 function TLexer.GetCharErrorDisplay(const C: Integer): String; in GetCharErrorDisplay() function
5402 Result := 'mismatched character ' + GetCharErrorDisplay(E.Character)
5403 + ' expecting ' + GetCharErrorDisplay(MTE.Expecting)
5409 Result := 'no viable alternative at character ' + GetCharErrorDisplay(NVAE.Character)
5414 + GetCharErrorDisplay(EEE.Character)
5417 Result := 'mismatched character ' + GetCharErrorDisplay(MNSE.Character)
5421 Result := 'mismatched character ' + GetCharErrorDisplay(MSE.Character)
5425 Result := 'mismatched character ' + GetCharErrorDisplay(MRE.Character)
[all …]