Home | History | Annotate | Download | only in intltest

Lines Matching defs:set2

319     // set1 and set2 used to be built with the obsolete constructor taking
328 UnicodeSet *set2=new UnicodeSet(UNICODE_STRING_SIMPLE("\\p{Decimal Number}"), status); //Number, Decimal digit
338 if (*set2 != *set2a) {
346 if(*set1 != *set1copy || *set1 == *set2 ||
355 UnicodeSet set2equal=*set2;
356 if(set1equal != *set1 || set1equal != *set1copy || set2equal != *set2 ||
363 UnicodeSet *set2clone=(UnicodeSet*)set2->clone();
365 *set2clone != *set2 || *set2clone == *set1copy || *set2clone != set2equal ||
372 set2->hashCode() != set2equal.hashCode() || set2->hashCode() != set2clone->hashCode() ||
374 set1->hashCode() == set2->hashCode() || set1copy->hashCode() == set2->hashCode() ||
375 set2->hashCode() == set1clone->hashCode() || set2->hashCode() == set1equal.hashCode() ){
381 delete set2;
439 UnicodeSet set2;
440 expectPattern(set2, "[f-ky-za-bc[vw]]", "acfkvwyz");
441 set.removeAll(set2);
446 expectPattern(set2, "[hitoshinamekatajamesanderson]", "aadehkmort");
447 set.addAll(set2);
449 doAssert(set.containsAll(set2) == TRUE, "set should contain all the elements in set2");
467 expectPattern(set2, "[jackiemclean]", "aacceein");
468 set.addAll(set2);
470 doAssert(set.containsAll(set2) == TRUE, "set should contain all the elements in set2");
489 UnicodeSet set2("[i-o]", status);
491 set.addAll(set2);
496 set2.applyPattern("[e-o]", status);
498 set.addAll(set2);
503 set2.applyPattern("[a-m]", status);
505 set.addAll(set2);
510 set2.applyPattern("[d-q]", status);
512 set.addAll(set2);