Lines Matching refs:set1
861 * Returns true if set1 contains all the characters and strings
862 * of set2. It answers the question, 'Is set1 a superset of set2?'
863 * @param set1 set to be checked for containment
869 uset_containsAll(const USet* set1, const USet* set2);
885 * Returns true if set1 contains none of the characters and strings
886 * of set2. It answers the question, 'Is set1 a disjoint set of set2?'
887 * @param set1 set to be checked for containment
893 uset_containsNone(const USet* set1, const USet* set2);
896 * Returns true if set1 contains some of the characters and strings
897 * of set2. It answers the question, 'Does set1 and set2 have an intersection?'
898 * @param set1 set to be checked for containment
904 uset_containsSome(const USet* set1, const USet* set2);
993 * Returns true if set1 contains all of the characters and strings
994 * of set2, and vis versa. It answers the question, 'Is set1 equal to set2?'
995 * @param set1 set to be checked for containment
1001 uset_equals(const USet* set1, const USet* set2);