HomeSort by relevance Sort by last modified time
    Searched refs:_calls (Results 1 - 3 of 3) 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();
  /external/autotest/scheduler/
drones.py 36 self._calls = []
115 return self._calls
124 self._calls.append(drone_utility.call(method, *args, **kwargs))
128 self._calls = []
132 if not self._calls:
134 results = self._execute_calls(self._calls)

Completed in 2919 milliseconds