Home
last modified time | relevance | path

Searched refs:fLastPosSet (Results 1 – 7 of 7) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/text/
DRBBITableBuilder.java305 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()
DRBBINode.java96 Set<RBBINode> fLastPosSet; // See Aho. field in RBBINode
108 fLastPosSet = new HashSet<RBBINode>(); in RBBINode()
134 fLastPosSet = new HashSet<RBBINode>(other.fLastPosSet);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DRBBITableBuilder.java304 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()
DRBBINode.java95 Set<RBBINode> fLastPosSet; // See Aho. field in RBBINode
107 fLastPosSet = new HashSet<RBBINode>(); in RBBINode()
133 fLastPosSet = new HashSet<RBBINode>(other.fLastPosSet);
/external/icu/icu4c/source/common/
Drbbitblb.cpp305 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()
Drbbinode.cpp64 fLastPosSet = new UVector(status); in RBBINode()
91 fLastPosSet = new UVector(status); in RBBINode()
126 delete fLastPosSet; in ~RBBINode()
Drbbinode.h83 UVector *fLastPosSet; // TODO: rename fFirstPos & fLastPos to avoid confusion. variable