OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
677
this.
_calls
= [];
811
return this.
_calls
;
827
for (var i = 0, n = this.
_calls
.length; i < n; ++i) {
828
result = this.
_calls
[i].resource().contextResource();
879
data.calls = this.
_calls
.map(function(call) {
912
this.
_calls
= [];
928
this.
_calls
.push(data.calls[i].replay(cache));
937
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 144 milliseconds