Home | History | Annotate | Download | only in cintltst

Lines Matching refs:set2

83     USet* set2;
179 set2 = uset_open(1, 1);
180 uset_clear(set2);
183 uset_applyPropertyAlias(set2, PAT_lb, PAT_lb_LEN, VAL_SP, VAL_SP_LEN, &ec);
184 expect(set2, " ", "abcdefghi{bc}", NULL);
187 uset_set(set2, 0x0061, 0x0063);
192 if (uset_containsSome(set, set2)) {
193 log_err("set should not contain some of set2 yet\n");
195 uset_complementAll(set, set2);
196 if (!uset_containsSome(set, set2)) {
197 log_err("set should contain some of set2\n");
202 uset_removeAll(set, set2);
206 uset_addAll(set2, set);
207 expect(set2, "abcghi", "def{bc}", NULL);
210 uset_retainAll(set2, set);
211 expect(set2, "ghi", "abcdef{bc}", NULL);
214 uset_close(set2);