Home | History | Annotate | Download | only in i18n

Lines Matching defs:compare

434 Collator::EComparisonResult Collator::compare(const UnicodeString& source, 
438 return (EComparisonResult)compare(source, target, ec);
442 Collator::EComparisonResult Collator::compare(const UnicodeString& source,
447 return (EComparisonResult)compare(source, target, length, ec);
451 Collator::EComparisonResult Collator::compare(const UChar* source, int32_t sourceLength,
456 return (EComparisonResult)compare(source, sourceLength, target, targetLength, ec);
459 UCollationResult Collator::compare(UCharIterator &/*sIter*/,
478 return compare(sIter, tIter, status);
485 return (compare(source, target, ec) == UCOL_EQUAL);
492 return (compare(source, target, ec) != UCOL_LESS);
499 return (compare(source, target, ec) == UCOL_GREATER);