Searched refs:fLastPosSet (Results 1 – 7 of 7) sorted by relevance
307 n.fLastPosSet.add(n); in calcLastPos()318 n.fLastPosSet.addAll(n.fLeftChild.fLastPosSet); in calcLastPos()319 n.fLastPosSet.addAll(n.fRightChild.fLastPosSet); in calcLastPos()322 n.fLastPosSet.addAll(n.fRightChild.fLastPosSet); in calcLastPos()324 n.fLastPosSet.addAll(n.fLeftChild.fLastPosSet); in calcLastPos()330 n.fLastPosSet.addAll(n.fLeftChild.fLastPosSet); in calcLastPos()353 for (RBBINode i /* is 'i' in Aho's description */ : n.fLeftChild.fLastPosSet) { in calcFollowPos()361 … for (RBBINode i /* again, n and i are the names from Aho's description */ : n.fLastPosSet) { in calcFollowPos()825 printSet(n.fLastPosSet); in printPosSets()
102 Set<RBBINode> fLastPosSet; // See Aho. field in RBBINode114 fLastPosSet = new HashSet<RBBINode>(); in RBBINode()142 fLastPosSet = new HashSet<RBBINode>(other.fLastPosSet);
308 n.fLastPosSet.add(n); in calcLastPos()319 n.fLastPosSet.addAll(n.fLeftChild.fLastPosSet); in calcLastPos()320 n.fLastPosSet.addAll(n.fRightChild.fLastPosSet); in calcLastPos()323 n.fLastPosSet.addAll(n.fRightChild.fLastPosSet); in calcLastPos()325 n.fLastPosSet.addAll(n.fLeftChild.fLastPosSet); in calcLastPos()331 n.fLastPosSet.addAll(n.fLeftChild.fLastPosSet); in calcLastPos()354 for (RBBINode i /* is 'i' in Aho's description */ : n.fLeftChild.fLastPosSet) { in calcFollowPos()362 … for (RBBINode i /* again, n and i are the names from Aho's description */ : n.fLastPosSet) { in calcFollowPos()826 printSet(n.fLastPosSet); in printPosSets()
103 Set<RBBINode> fLastPosSet; // See Aho. field in RBBINode115 fLastPosSet = new HashSet<RBBINode>(); in RBBINode()143 fLastPosSet = new HashSet<RBBINode>(other.fLastPosSet);
305 n->fLastPosSet->addElement(n, *fStatus); in calcLastPos()316 setAdd(n->fLastPosSet, n->fLeftChild->fLastPosSet); in calcLastPos()317 setAdd(n->fLastPosSet, n->fRightChild->fLastPosSet); in calcLastPos()320 setAdd(n->fLastPosSet, n->fRightChild->fLastPosSet); in calcLastPos()322 setAdd(n->fLastPosSet, n->fLeftChild->fLastPosSet); in calcLastPos()328 setAdd(n->fLastPosSet, n->fLeftChild->fLastPosSet); in calcLastPos()354 UVector *LastPosOfLeftChild = n->fLeftChild->fLastPosSet; in calcFollowPos()368 for (ix=0; ix<(uint32_t)n->fLastPosSet->size(); ix++) { in calcFollowPos()369 i = (RBBINode *)n->fLastPosSet->elementAt(ix); in calcFollowPos()1068 printSet(n->fLastPosSet); in printPosSets()
70 fLastPosSet = new UVector(status); in RBBINode()99 fLastPosSet = new UVector(status); in RBBINode()134 delete fLastPosSet; in ~RBBINode()
90 UVector *fLastPosSet; // TODO: rename fFirstPos & fLastPos to avoid confusion. variable