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

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
MismatchedSetException.cs 54 public MismatchedSetException(BitSet expecting, IIntStream input)
56 this._expecting = expecting;
59 public MismatchedSetException(string message, BitSet expecting, IIntStream input)
61 this._expecting = expecting;
64 public MismatchedSetException(string message, BitSet expecting, IIntStream input, Exception innerException)
66 this._expecting = expecting;
74 this._expecting = (BitSet)info.GetValue("Expecting", typeof(BitSet));
77 public BitSet Expecting {
88 info.AddValue("Expecting", _expecting);
92 return "MismatchedSetException(" + UnexpectedType + "!=" + Expecting + ")"
    [all...]
MismatchedTreeNodeException.cs 55 public MismatchedTreeNodeException(int expecting, ITreeNodeStream input)
57 this._expecting = expecting;
60 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input)
62 this._expecting = expecting;
65 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input, Exception innerException)
67 this._expecting = expecting;
75 this._expecting = info.GetInt32("Expecting");
78 public int Expecting {
89 info.AddValue("Expecting", _expecting);
93 return "MismatchedTreeNodeException(" + UnexpectedType + "!=" + Expecting + ")"
    [all...]
MismatchedTokenException.cs 61 public MismatchedTokenException(int expecting, IIntStream input)
62 : this(expecting, input, null) {
65 public MismatchedTokenException(int expecting, IIntStream input, IList<string> tokenNames)
67 this._expecting = expecting;
72 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames)
74 this._expecting = expecting;
81 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException)
83 this._expecting = expecting;
94 this._expecting = info.GetInt32("Expecting");
98 public int Expecting {
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
MismatchedSetException.cs 59 public MismatchedSetException( BitSet expecting, IIntStream input )
62 this._expecting = expecting;
65 public MismatchedSetException(string message, BitSet expecting, IIntStream input)
68 this._expecting = expecting;
71 public MismatchedSetException(string message, BitSet expecting, IIntStream input, Exception innerException)
74 this._expecting = expecting;
83 this._expecting = (BitSet)info.GetValue("Expecting", typeof(BitSet));
86 public BitSet Expecting
100 info.AddValue("Expecting", _expecting);
105 return "MismatchedSetException(" + UnexpectedType + "!=" + Expecting + ")"
    [all...]
MismatchedTreeNodeException.cs 60 public MismatchedTreeNodeException( int expecting, ITreeNodeStream input )
63 this._expecting = expecting;
66 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input)
69 this._expecting = expecting;
72 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input, Exception innerException)
75 this._expecting = expecting;
84 this._expecting = info.GetInt32("Expecting");
87 public int Expecting
101 info.AddValue("Expecting", _expecting);
106 return "MismatchedTreeNodeException(" + UnexpectedType + "!=" + Expecting + ")"
    [all...]
MismatchedTokenException.cs 63 public MismatchedTokenException(int expecting, IIntStream input)
64 : this(expecting, input, null)
68 public MismatchedTokenException(int expecting, IIntStream input, IList<string> tokenNames)
71 this._expecting = expecting;
77 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames)
80 this._expecting = expecting;
86 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException)
89 this._expecting = expecting;
101 this._expecting = info.GetInt32("Expecting");
105 public int Expecting
    [all...]

Completed in 151 milliseconds