Lines Matching refs:pools
115 factory->pools = NULL; in antlr3TokenFactoryNew()
166 ANTLR3_REALLOC((void *)factory->pools, /* Current pools pointer (starts at NULL) */ in newPool()
176 factory->pools = newPools; in newPool()
180 factory->pools[factory->thisPool] = in newPool()
183 if (factory->pools[factory->thisPool] == NULL) in newPool()
225 if (factory->pools == NULL) { return NULL; } in newPoolToken()
226 if (factory->pools[factory->thisPool] == NULL) { return NULL; } in newPoolToken()
231 token = factory->pools[factory->thisPool] + factory->nextToken; in newPoolToken()
279 pool = factory->pools[poolCount]; in factoryClose()
311 ANTLR3_FREE(factory->pools[poolCount]); in factoryClose()
312 factory->pools[poolCount] = NULL; in factoryClose()
318 ANTLR3_FREE(factory->pools); in factoryClose()