Home
last modified time | relevance | path

Searched refs:thisNode (Results 1 – 4 of 4) sorted by relevance

/external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/
DLastFunction.java40 Data thisNode = arg.getReference().getSymlink(); in execute() local
41 return literalConstant(thisNode.isLastSibling(), arg); in execute()
DSubcountFunction.java40 Data thisNode = arg.getReference().getSymlink(); in execute() local
41 return literalConstant(thisNode.getChildCount(), arg); in execute()
DFirstFunction.java40 Data thisNode = arg.getReference().getSymlink(); in execute() local
41 return literalConstant(thisNode.isFirstSibling(), arg); in execute()
/external/antlr/antlr-3.4/runtime/C/src/
Dantlr3collections.c1823 pANTLR3_INT_TRIE_NODE thisNode; in intTrieGet() local
1841 thisNode = trie->root; /* Start at the root node */ in intTrieGet()
1842 nextNode = thisNode->leftN; /* Examine the left node from the root */ in intTrieGet()
1846 while (thisNode->bitNum > nextNode->bitNum) in intTrieGet()
1850 thisNode = nextNode; in intTrieGet()
1915 pANTLR3_INT_TRIE_NODE thisNode; in intTrieAdd() local
1928 thisNode = trie->root; /* Start with the root node */ in intTrieAdd()
1934 while (thisNode->bitNum > nextNode->bitNum) in intTrieAdd()
1938 thisNode = nextNode; in intTrieAdd()
2085 thisNode = trie->root; in intTrieAdd()
[all …]