Home
last modified time | relevance | path

Searched refs:rbc (Results 1 – 3 of 3) sorted by relevance

/external/icu4c/test/intltest/
Dregcoll.cpp545 RuleBasedCollator *rbc = new RuleBasedCollator((UnicodeString)"< a < bb", status); in Test4078588() local
547 if (rbc == NULL || U_FAILURE(status)) in Test4078588()
550 delete rbc; in Test4078588()
554 Collator::EComparisonResult result = rbc->compare("a","bb"); in Test4078588()
562 delete rbc; in Test4078588()
992 My4146160Collator(RuleBasedCollator &rbc, UErrorCode &status);
1004 My4146160Collator::My4146160Collator(RuleBasedCollator &rbc, UErrorCode &status) in My4146160Collator() argument
1005 : RuleBasedCollator(rbc.getRules(), status) in My4146160Collator()
Ddadrcoll.cpp211 RuleBasedCollator* rbc = (RuleBasedCollator*)col; in processTest() local
212 cloneSize = rbc->cloneBinary(NULL, 0, intStatus); in processTest()
215 cloneSize = rbc->cloneBinary(cloneBuf, cloneSize, intStatus); in processTest()
/external/icu4c/i18n/
Dcoll.cpp238 RuleBasedCollator *rbc = (RuleBasedCollator *)col; in createUCollator() local
239 if (!rbc->dataIsOwned) { in createUCollator()
240 result = ucol_safeClone(rbc->ucollator, NULL, NULL, status); in createUCollator()
242 result = rbc->ucollator; in createUCollator()
243 rbc->ucollator = NULL; // to prevent free on delete in createUCollator()