Searched refs:fLastPosSet (Results 1 – 7 of 7) sorted by relevance
305 n.fLastPosSet.add(n); in calcLastPos()316 n.fLastPosSet.addAll(n.fLeftChild.fLastPosSet); in calcLastPos()317 n.fLastPosSet.addAll(n.fRightChild.fLastPosSet); in calcLastPos()320 n.fLastPosSet.addAll(n.fRightChild.fLastPosSet); in calcLastPos()322 n.fLastPosSet.addAll(n.fLeftChild.fLastPosSet); in calcLastPos()328 n.fLastPosSet.addAll(n.fLeftChild.fLastPosSet); in calcLastPos()351 for (RBBINode i /* is 'i' in Aho's description */ : n.fLeftChild.fLastPosSet) { in calcFollowPos()359 … for (RBBINode i /* again, n and i are the names from Aho's description */ : n.fLastPosSet) { in calcFollowPos()800 printSet(n.fLastPosSet); in printPosSets()
96 Set<RBBINode> fLastPosSet; // See Aho. field in RBBINode108 fLastPosSet = new HashSet<RBBINode>(); in RBBINode()134 fLastPosSet = new HashSet<RBBINode>(other.fLastPosSet);
304 n.fLastPosSet.add(n); in calcLastPos()315 n.fLastPosSet.addAll(n.fLeftChild.fLastPosSet); in calcLastPos()316 n.fLastPosSet.addAll(n.fRightChild.fLastPosSet); in calcLastPos()319 n.fLastPosSet.addAll(n.fRightChild.fLastPosSet); in calcLastPos()321 n.fLastPosSet.addAll(n.fLeftChild.fLastPosSet); in calcLastPos()327 n.fLastPosSet.addAll(n.fLeftChild.fLastPosSet); in calcLastPos()350 for (RBBINode i /* is 'i' in Aho's description */ : n.fLeftChild.fLastPosSet) { in calcFollowPos()358 … for (RBBINode i /* again, n and i are the names from Aho's description */ : n.fLastPosSet) { in calcFollowPos()799 printSet(n.fLastPosSet); in printPosSets()
95 Set<RBBINode> fLastPosSet; // See Aho. field in RBBINode107 fLastPosSet = new HashSet<RBBINode>(); in RBBINode()133 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()1042 printSet(n->fLastPosSet); in printPosSets()
64 fLastPosSet = new UVector(status); in RBBINode()91 fLastPosSet = new UVector(status); in RBBINode()126 delete fLastPosSet; in ~RBBINode()
83 UVector *fLastPosSet; // TODO: rename fFirstPos & fLastPos to avoid confusion. variable