OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:thisPool
(Results
1 - 6
of
6
) sorted by null
/external/antlr/antlr-3.4/runtime/C/include/
antlr3commontree.h
120
ANTLR3_INT32
thisPool
;
antlr3commontoken.h
323
ANTLR3_INT32
thisPool
;
antlr3collections.h
293
ANTLR3_INT32
thisPool
;
/external/antlr/antlr-3.4/runtime/C/src/
antlr3commontoken.c
114
factory->
thisPool
= -1;
156
factory->
thisPool
++;
161
if (factory->
thisPool
> factory->maxPool)
167
(ANTLR3_UINT32)((factory->
thisPool
+ 1) * sizeof(pANTLR3_COMMON_TOKEN *)) /* Memory for new pool pointers */
172
factory->pools[factory->
thisPool
] =
178
factory->maxPool = factory->
thisPool
;
208
token = factory->pools[factory->
thisPool
] + factory->nextToken;
237
factory->
thisPool
= -1;
252
for (poolCount = 0; poolCount <= factory->
thisPool
; poolCount++)
260
limit = (poolCount == factory->
thisPool
? factory->nextToken : ANTLR3_FACTORY_POOL_SIZE)
[
all
...]
antlr3commontree.c
104
factory->
thisPool
= -1;
128
factory->
thisPool
++;
134
(ANTLR3_UINT32)((factory->
thisPool
+ 1) * sizeof(pANTLR3_COMMON_TREE *)) // Memory for new pool pointers
139
factory->pools[factory->
thisPool
] =
185
tree = factory->pools[factory->
thisPool
] + factory->nextTree;
269
for (poolCount = 0; poolCount <= factory->
thisPool
; poolCount++)
antlr3collections.c
[
all
...]
Completed in 40 milliseconds