Home
last modified time | relevance | path

Searched refs:_tokenNames (Results 1 – 3 of 3) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DMismatchedTokenException.cs48 private readonly ReadOnlyCollection<string> _tokenNames; field in Antlr.Runtime.MismatchedTokenException
70 this._tokenNames = new List<string>(tokenNames).AsReadOnly(); in MismatchedTokenException()
77 this._tokenNames = new ReadOnlyCollection<string>(new List<string>(tokenNames)); in MismatchedTokenException()
86 this._tokenNames = new ReadOnlyCollection<string>(new List<string>(tokenNames)); in MismatchedTokenException()
95 …this._tokenNames = new ReadOnlyCollection<string>((string[])info.GetValue("TokenNames", typeof(str… in MismatchedTokenException()
106 return _tokenNames;
117 if (_tokenNames != null) { in GetObjectData()
118 tokenArray = new string[_tokenNames.Count]; in GetObjectData()
120 foreach (var token in _tokenNames) { in GetObjectData()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DMismatchedTokenException.cs47 private readonly ReadOnlyCollection<string> _tokenNames; field in Antlr.Runtime.MismatchedTokenException
74 this._tokenNames = new List<string>(tokenNames).AsReadOnly(); in MismatchedTokenException()
83 this._tokenNames = new List<string>(tokenNames).AsReadOnly(); in MismatchedTokenException()
92 this._tokenNames = new List<string>(tokenNames).AsReadOnly(); in MismatchedTokenException()
102 …this._tokenNames = new ReadOnlyCollection<string>((string[])info.GetValue("TokenNames", typeof(str… in MismatchedTokenException()
117 return _tokenNames;
128 …info.AddValue("TokenNames", (_tokenNames != null) ? new List<string>(_tokenNames).ToArray() : defa… in GetObjectData()
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DANTLRBaseRecognizer.m42 static AMutableArray *_tokenNames;
76 return _tokenNames;
81 if ( _tokenNames != theTokNams ) {
82 if ( _tokenNames ) [_tokenNames release];
85 _tokenNames = theTokNams;
103 tokenNames = _tokenNames;
124 tokenNames = _tokenNames;
147 tokenNames = _tokenNames;