OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:_calls
(Results
1 - 2
of
2
) sorted by null
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonTreeNodeStream.cs
59
Stack<int>
_calls
;
field in class:Antlr.Runtime.Tree.CommonTreeNodeStream
129
if (
_calls
!= null)
130
_calls
.Clear();
172
if (
_calls
== null) {
173
_calls
= new Stack<int>();
175
_calls
.Push(_p); // save current index
183
int ret =
_calls
.Pop();
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonTreeNodeStream.cs
61
Stack<int>
_calls
;
field in class:Antlr.Runtime.Tree.CommonTreeNodeStream
147
if (
_calls
!= null )
148
_calls
.Clear();
199
if (
_calls
== null )
201
_calls
= new Stack<int>();
203
_calls
.Push( _p ); // save current index
212
int ret =
_calls
.Pop();
Completed in 60 milliseconds