Lines Matching refs:pools
115 factory->pools = NULL;
165 factory->pools = (pANTLR3_COMMON_TOKEN *)
166 ANTLR3_REALLOC( (void *)factory->pools, /* Current pools pointer (starts at NULL) */
172 factory->pools[factory->thisPool] =
208 token = factory->pools[factory->thisPool] + factory->nextToken;
250 /* We iterate the token pools one at a time
256 pool = factory->pools[poolCount];
288 ANTLR3_FREE(factory->pools[poolCount]);
289 factory->pools[poolCount] = NULL;
292 /* All the pools are deallocated we can free the pointers to the pools
295 ANTLR3_FREE(factory->pools);