Lines Matching refs:thisPool
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);