Home
last modified time | relevance | path

Searched refs:thisEntry (Results 1 – 2 of 2) sorted by relevance

/external/antlr/runtime/C/src/
Dantlr3collections.c2232 pANTLR3_TRIE_ENTRY thisEntry; in freeIntNode() local
2258 thisEntry = node->buckets; in freeIntNode()
2260 while (thisEntry != NULL) in freeIntNode()
2262 nextEntry = thisEntry->next; in freeIntNode()
2266 if (thisEntry->type == ANTLR3_HASH_TYPE_STR && thisEntry->freeptr != NULL) in freeIntNode()
2268 thisEntry->freeptr(thisEntry->data.ptr); in freeIntNode()
2273 ANTLR3_FREE(thisEntry); in freeIntNode()
2274 thisEntry = nextEntry; /* See if there are any more to free */ in freeIntNode()
/external/antlr/runtime/Cpp/include/
Dantlr3collections.inl500 TrieEntryType* thisEntry; local
526 thisEntry = m_buckets;
528 while (thisEntry != NULL)
530 nextEntry = thisEntry->get_next();
534 delete thisEntry;
535 thisEntry = nextEntry; /* See if there are any more to free */