Home | History | Annotate | Download | only in common

Lines Matching refs:uset

656 //                  - find the corresponding Unicode Set  (uset node)
659 // to the uset node
660 // Maintain a hash table of uset nodes, so the same one is always used
680 U_ASSERT(node->fLeftChild->fType == RBBINode::uset);
698 // Make a new uset node to refer to this UnicodeSet
699 // This new uset node becomes the child of the caller's setReference node.
701 RBBINode *usetNode = new RBBINode(RBBINode::uset);
713 // Add the new uset node to the list of all uset nodes.
1139 UnicodeSet *uset;
1151 uset = new UnicodeSet();
1152 if (uset == NULL) {
1155 uset->applyPatternIgnoreSpace(fRB->fRules, pos, fSymbolTable, localStatus);
1164 delete uset;
1170 U_ASSERT(uset!=NULL);
1171 if (uset->isEmpty()) {
1177 delete uset;
1205 // - Creates a new uset node if necessary (if this isn't a duplicate.)
1206 findSetFor(n->fText, n, uset);