Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/dom/
DTreeShared.h76 NodeType* thisNode = static_cast<NodeType*>(this); in deref() local
77 if (--m_refCount <= 0 && !thisNode->hasTreeSharedParent()) { in deref()
81 thisNode->removedLastRef(); in deref()
/external/chromium_org/chrome/test/pyautolib/
Ddom_mutation_observer.js112 var thisNode = con.iterateNext();
113 while (thisNode) {
114 if (node == thisNode) {
117 thisNode = con.iterateNext();
/external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/
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()
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 …]