Home
last modified time | relevance | path

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

/external/antlr/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/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DCommonTreeNodeStream.cs60 private Stack<int> _calls; field in Antlr.Runtime.Tree.CommonTreeNodeStream
159 if ( _calls != null ) in Reset()
160 _calls.Clear(); in Reset()
220 if ( _calls == null ) in Push()
221 _calls = new Stack<int>(); in Push()
223 _calls.Push( _p ); // save current index in Push()
232 int ret = _calls.Pop(); in Pop()
/external/autotest/scheduler/
Ddrones.py39 self._calls = []
116 return self._calls
125 self._calls.append(drone_utility.call(method, *args, **kwargs))
129 self._calls = []
142 if not self._calls:
144 results = self._execute_calls(self._calls)
/external/grpc-grpc/src/python/grpcio_tests/tests/unit/
D_server_ssl_cert_config_test.py95 self._calls = []
101 self._calls = []
115 return self._calls
120 self._calls.append(Call(True, None))
123 self._calls.append(Call(False, self._cert_config))
/external/python/cpython2/Doc/reference/
Dexpressions.rst675 .. _calls:
/external/python/cpython3/Doc/reference/
Dexpressions.rst900 .. _calls:
/external/python/cpython3/Doc/library/
Dunittest.mock.rst1942 .. _calls-as-tuples: