Home | History | Annotate | Download | only in src

Lines Matching refs:thisEntry

2192     pANTLR3_TRIE_ENTRY	thisEntry;
2218 thisEntry = node->buckets;
2220 while (thisEntry != NULL)
2222 nextEntry = thisEntry->next;
2226 if (thisEntry->type == ANTLR3_HASH_TYPE_STR && thisEntry->freeptr != NULL)
2228 thisEntry->freeptr(thisEntry->data.ptr);
2233 ANTLR3_FREE(thisEntry);
2234 thisEntry = nextEntry; /* See if there are any more to free */