HomeSort by relevance Sort by last modified time
    Searched defs:TokenNames (Results 1 - 11 of 11) sorted by null

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ITokenSource.cs 73 string[] TokenNames
MismatchedTokenException.cs 68 public MismatchedTokenException(int expecting, IIntStream input, IList<string> tokenNames)
73 if (tokenNames != null)
74 this._tokenNames = new List<string>(tokenNames).AsReadOnly();
77 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames)
82 if (tokenNames != null)
83 this._tokenNames = new List<string>(tokenNames).AsReadOnly();
86 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException)
91 if (tokenNames != null)
92 this._tokenNames = new List<string>(tokenNames).AsReadOnly();
102 this._tokenNames = new ReadOnlyCollection<string>((string[])info.GetValue("TokenNames", typeof(string[])))
    [all...]
BaseRecognizer.cs 239 DisplayRecognitionError( this.TokenNames, e );
242 public virtual void DisplayRecognitionError( string[] tokenNames,
246 string msg = GetErrorMessage( e, tokenNames );
273 public virtual string GetErrorMessage( RecognitionException e, string[] tokenNames )
286 tokenName = tokenNames[ute.Expecting];
301 tokenName = tokenNames[mte.Expecting];
315 tokenName = tokenNames[mte.Expecting];
330 tokenName = tokenNames[mtne.Expecting];
701 e = new UnwantedTokenException( ttype, input, TokenNames );
725 e = new MismatchedTokenException(ttype, input, TokenNames);
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
MismatchedTokenException.cs 65 public MismatchedTokenException(int expecting, IIntStream input, IList<string> tokenNames)
69 if (tokenNames != null)
70 this._tokenNames = new List<string>(tokenNames).AsReadOnly();
72 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames)
76 if (tokenNames != null) {
77 this._tokenNames = new ReadOnlyCollection<string>(new List<string>(tokenNames));
81 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException)
85 if (tokenNames != null)
86 this._tokenNames = new ReadOnlyCollection<string>(new List<string>(tokenNames));
95 this._tokenNames = new ReadOnlyCollection<string>((string[])info.GetValue("TokenNames", typeof(string[])))
    [all...]
BaseRecognizer.cs 217 DisplayRecognitionError(this.TokenNames, e);
220 public virtual void DisplayRecognitionError(string[] tokenNames,
223 string msg = GetErrorMessage(e, tokenNames);
250 public virtual string GetErrorMessage(RecognitionException e, string[] tokenNames) {
258 tokenName = tokenNames[ute.Expecting];
268 tokenName = tokenNames[mte.Expecting];
277 tokenName = tokenNames[mte.Expecting];
287 tokenName = tokenNames[mtne.Expecting];
620 e = new UnwantedTokenException(ttype, input, TokenNames);
643 e = new MismatchedTokenException(ttype, input, TokenNames);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
Lexer.java 99 addKeyword(TokenNames.REGISTER, TokenTypes.REGISTER);
100 addKeyword(TokenNames.ACK, TokenTypes.ACK);
101 addKeyword(TokenNames.OPTIONS, TokenTypes.OPTIONS);
102 addKeyword(TokenNames.BYE, TokenTypes.BYE);
103 addKeyword(TokenNames.INVITE, TokenTypes.INVITE);
104 addKeyword(TokenNames.SIP.toUpperCase(), TokenTypes.SIP);
105 addKeyword(TokenNames.SIPS.toUpperCase(), TokenTypes.SIPS);
106 addKeyword(TokenNames.SUBSCRIBE, TokenTypes.SUBSCRIBE);
107 addKeyword(TokenNames.NOTIFY, TokenTypes.NOTIFY);
108 addKeyword(TokenNames.MESSAGE, TokenTypes.MESSAGE)
    [all...]
TokenNames.java 40 public interface TokenNames
94 * $Log: TokenNames.java,v $
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugTreeGrammar.cs 28 internal static readonly string[] tokenNames = new string[] {
90 public override string[] TokenNames { get { return DebugTreeGrammar.tokenNames; } }
ProfileTreeGrammar.cs 28 internal static readonly string[] tokenNames = new string[] {
95 public override string[] TokenNames { get { return ProfileTreeGrammar.tokenNames; } }
DebugGrammarParser.cs 25 internal static readonly string[] tokenNames = new string[] {
118 public override string[] TokenNames { get { return DebugGrammarParser.tokenNames; } }
    [all...]
ProfileGrammarParser.cs 25 internal static readonly string[] tokenNames = new string[] {
122 public override string[] TokenNames { get { return ProfileGrammarParser.tokenNames; } }
    [all...]

Completed in 200 milliseconds