Lines Matching refs:thisNode
1823 pANTLR3_INT_TRIE_NODE thisNode;
1841 thisNode = trie->root; /* Start at the root node */
1842 nextNode = thisNode->leftN; /* Examine the left node from the root */
1846 while (thisNode->bitNum > nextNode->bitNum)
1850 thisNode = nextNode;
1915 pANTLR3_INT_TRIE_NODE thisNode;
1928 thisNode = trie->root; /* Start with the root node */
1934 while (thisNode->bitNum > nextNode->bitNum)
1938 thisNode = nextNode;
2085 thisNode = trie->root;
2090 while (thisNode->bitNum > entNode->bitNum && entNode->bitNum > depth)
2094 thisNode = entNode;
2170 if (key & bitMask[thisNode->bitNum] )
2172 thisNode->rightN = nextNode;
2176 thisNode->leftN = nextNode;