Home | History | Annotate | Download | only in intltest

Lines Matching defs:c1

2306     logln("\ninit c1");
2307 RuleBasedCollator* c1 = (RuleBasedCollator*)Collator::createInstance(status);
2308 c1->setStrength(Collator::TERTIARY);
2309 UColAttributeValue val = c1->getAttribute(UCOL_CASE_FIRST, status);
2311 c1->setAttribute(UCOL_CASE_FIRST, UCOL_UPPER_FIRST, status);
2313 c1->setAttribute(UCOL_CASE_FIRST, UCOL_LOWER_FIRST, status);
2316 dump("c1", c1, status);
2319 RuleBasedCollator* c2 = (RuleBasedCollator*)c1->clone();
2331 dump("c1", c1, status);
2333 if(*c1 == *c2){
2337 delete c1;