HomeSort by relevance Sort by last modified time
    Searched refs:_calls (Results 1 - 5 of 5) 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/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptCanvasModuleSource.js 651 this._calls = [];
785 return this._calls;
801 for (var i = 0, n = this._calls.length; i < n; ++i) {
802 result = this._calls[i].resource().contextResource();
852 data.calls = this._calls.map(function(call) {
885 this._calls = [];
901 this._calls.push(data.calls[i].replay(cache));
910 this._calls.push(call);
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
tcmalloc_unittest.cc 727 static int g_##hook_type##_calls = 0; \
729 g_##hook_type##_calls++; \
732 CHECK_GT(g_##hook_type##_calls, 0); \
733 g_##hook_type##_calls = 0; /* reset for next call */ \
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
tcmalloc_unittest.cc 727 static int g_##hook_type##_calls = 0; \
729 g_##hook_type##_calls++; \
732 CHECK_GT(g_##hook_type##_calls, 0); \
733 g_##hook_type##_calls = 0; /* reset for next call */ \
    [all...]

Completed in 316 milliseconds