Home
last modified time | relevance | path

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

/external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/
DFirstFunction.java40 Data thisNode = arg.getReference().getSymlink(); in execute() local
41 return literalConstant(thisNode.isFirstSibling(), arg); in execute()
DSubcountFunction.java40 Data thisNode = arg.getReference().getSymlink(); in execute() local
41 return literalConstant(thisNode.getChildCount(), arg); in execute()
DLastFunction.java40 Data thisNode = arg.getReference().getSymlink(); in execute() local
41 return literalConstant(thisNode.isLastSibling(), 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 …]
/external/swiftshader/src/OpenGL/compiler/
DParseHelper.h237 …ionCallOrMethod(TFunction *fnCall, TIntermNode *paramNode, TIntermNode *thisNode, const TSourceLoc…
DParseHelper.cpp3595 …ionCallOrMethod(TFunction *fnCall, TIntermNode *paramNode, TIntermNode *thisNode, const TSourceLoc… in addFunctionCallOrMethod() argument
3601 if(thisNode != nullptr) in addFunctionCallOrMethod()
3605 TIntermTyped *typedThis = thisNode->getAsTyped(); in addFunctionCallOrMethod()