Home
last modified time | relevance | path

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

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DCommonTreeNodeStream.cs61 Stack<int> _calls; field in Antlr.Runtime.Tree.CommonTreeNodeStream
147 if ( _calls != null ) in Reset()
148 _calls.Clear(); in Reset()
199 if ( _calls == null ) in Push()
201 _calls = new Stack<int>(); in Push()
203 _calls.Push( _p ); // save current index in Push()
212 int ret = _calls.Pop(); in Pop()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DCommonTreeNodeStream.cs59 Stack<int> _calls; field in Antlr.Runtime.Tree.CommonTreeNodeStream
129 if (_calls != null) in Reset()
130 _calls.Clear(); in Reset()
172 if (_calls == null) { in Push()
173 _calls = new Stack<int>(); in Push()
175 _calls.Push(_p); // save current index in Push()
183 int ret = _calls.Pop(); in Pop()
/external/autotest/scheduler/
Ddrones.py38 self._calls = []
119 return self._calls
128 self._calls.append(drone_utility.call(method, *args, **kwargs))
132 self._calls = []
136 if not self._calls:
138 results = self._execute_calls(self._calls)