Lines Matching refs:thisPool
114 factory->thisPool = -1; in antlr3TokenFactoryNew()
156 ++(factory->thisPool); in newPool()
161 if (factory->thisPool > factory->maxPool) in newPool()
167 …(ANTLR3_UINT32)((factory->thisPool + 1) * sizeof(pANTLR3_COMMON_TOKEN *)) /* Memory for new pool p… in newPool()
172 --(factory->thisPool); in newPool()
180 factory->pools[factory->thisPool] = in newPool()
183 if (factory->pools[factory->thisPool] == NULL) in newPool()
186 --(factory->thisPool); in newPool()
192 factory->maxPool = factory->thisPool; in newPool()
226 if (factory->pools[factory->thisPool] == NULL) { return NULL; } in newPoolToken()
231 token = factory->pools[factory->thisPool] + factory->nextToken; in newPoolToken()
260 factory->thisPool = -1; in factoryReset()
275 for (poolCount = 0; poolCount <= factory->thisPool; poolCount++) in factoryClose()
283 limit = (poolCount == factory->thisPool ? factory->nextToken : ANTLR3_FACTORY_POOL_SIZE); in factoryClose()