Home | History | Annotate | Download | only in src

Lines Matching refs:pools

105     factory->pools		= NULL;
132 factory->pools = (pANTLR3_COMMON_TREE *)
133 ANTLR3_REALLOC( (void *)factory->pools, // Current pools pointer (starts at NULL)
139 factory->pools[factory->thisPool] =
185 tree = factory->pools[factory->thisPool] + factory->nextTree;
266 // We now JUST free the pools because the C runtime CommonToken based tree
273 ANTLR3_FREE(factory->pools[poolCount]);
274 factory->pools[poolCount] = NULL;
277 // All the pools are deallocated we can free the pointers to the pools
280 ANTLR3_FREE(factory->pools);