Searched defs:Expecting (Results 1 - 6 of 6) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DMismatchedSetException.cs74 this._expecting = (BitSet)info.GetValue("Expecting", typeof(BitSet));
77 public BitSet Expecting { property in class:Antlr.Runtime.MismatchedSetException
88 info.AddValue("Expecting", _expecting);
92 return "MismatchedSetException(" + UnexpectedType + "!=" + Expecting + ")";
H A DMismatchedTokenException.cs94 this._expecting = info.GetInt32("Expecting");
98 public int Expecting { property in class:Antlr.Runtime.MismatchedTokenException
115 info.AddValue("Expecting", _expecting);
130 string expected = (TokenNames != null && Expecting >= 0 && Expecting < TokenNames.Count) ? TokenNames[Expecting] : Expecting.ToString();
H A DMismatchedTreeNodeException.cs75 this._expecting = info.GetInt32("Expecting");
78 public int Expecting { property in class:Antlr.Runtime.MismatchedTreeNodeException
89 info.AddValue("Expecting", _expecting);
93 return "MismatchedTreeNodeException(" + UnexpectedType + "!=" + Expecting + ")";
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DMismatchedSetException.cs83 this._expecting = (BitSet)info.GetValue("Expecting", typeof(BitSet));
86 public BitSet Expecting property in class:Antlr.Runtime.MismatchedSetException
100 info.AddValue("Expecting", _expecting);
105 return "MismatchedSetException(" + UnexpectedType + "!=" + Expecting + ")";
H A DMismatchedTokenException.cs101 this._expecting = info.GetInt32("Expecting");
105 public int Expecting property in class:Antlr.Runtime.MismatchedTokenException
127 info.AddValue("Expecting", _expecting);
135 string expected = ( TokenNames != null && Expecting >= 0 && Expecting < TokenNames.Count ) ? TokenNames[Expecting] : Expecting.ToString();
H A DMismatchedTreeNodeException.cs84 this._expecting = info.GetInt32("Expecting");
87 public int Expecting property in class:Antlr.Runtime.MismatchedTreeNodeException
101 info.AddValue("Expecting", _expecting);
106 return "MismatchedTreeNodeException(" + UnexpectedType + "!=" + Expecting + ")";

Completed in 321 milliseconds