Home | History | Annotate | Download | only in unicode

Lines Matching refs:set1

585  * Returns true if set1 contains all the characters and strings
586 * of set2. It answers the question, 'Is set1 a subset of set2?'
587 * @param set1 set to be checked for containment
593 uset_containsAll(const USet* set1, const USet* set2);
596 * Returns true if set1 contains none of the characters and strings
597 * of set2. It answers the question, 'Is set1 a disjoint set of set2?'
598 * @param set1 set to be checked for containment
604 uset_containsNone(const USet* set1, const USet* set2);
607 * Returns true if set1 contains some of the characters and strings
608 * of set2. It answers the question, 'Does set1 and set2 have an intersection?'
609 * @param set1 set to be checked for containment
615 uset_containsSome(const USet* set1, const USet* set2);
618 * Returns true if set1 contains all of the characters and strings
619 * of set2, and vis versa. It answers the question, 'Is set1 equal to set2?'
620 * @param set1 set to be checked for containment
626 uset_equals(const USet* set1, const USet* set2);