Home | History | Annotate | Download | only in cintltst

Lines Matching defs:set2

82     USet* set2;
178 set2 = uset_open(1, 1);
179 uset_clear(set2);
182 uset_applyPropertyAlias(set2, PAT_lb, PAT_lb_LEN, VAL_SP, VAL_SP_LEN, &ec);
183 expect(set2, " ", "abcdefghi{bc}", NULL);
186 uset_set(set2, 0x0061, 0x0063);
191 if (uset_containsSome(set, set2)) {
192 log_err("set should not contain some of set2 yet\n");
194 uset_complementAll(set, set2);
195 if (!uset_containsSome(set, set2)) {
196 log_err("set should contain some of set2\n");
201 uset_removeAll(set, set2);
205 uset_addAll(set2, set);
206 expect(set2, "abcghi", "def{bc}", NULL);
209 uset_retainAll(set2, set);
210 expect(set2, "ghi", "abcdef{bc}", NULL);
213 uset_close(set2);