Home
last modified time | relevance | path

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

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DRBBITableBuilder.java307 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()
DRBBINode.java102 Set<RBBINode> fLastPosSet; // See Aho. field in RBBINode
114 fLastPosSet = new HashSet<RBBINode>(); in RBBINode()
142 fLastPosSet = new HashSet<RBBINode>(other.fLastPosSet);
/external/icu/android_icu4j/src/main/java/android/icu/text/
DRBBITableBuilder.java308 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()
DRBBINode.java103 Set<RBBINode> fLastPosSet; // See Aho. field in RBBINode
115 fLastPosSet = new HashSet<RBBINode>(); in RBBINode()
143 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()
1068 printSet(n->fLastPosSet); in printPosSets()
Drbbinode.cpp70 fLastPosSet = new UVector(status); in RBBINode()
99 fLastPosSet = new UVector(status); in RBBINode()
134 delete fLastPosSet; in ~RBBINode()
Drbbinode.h90 UVector *fLastPosSet; // TODO: rename fFirstPos & fLastPos to avoid confusion. variable