Lines Matching refs:ec
96 void UVector::assign(const UVector& other, UElementAssigner *assign, UErrorCode &ec) {
97 if (ensureCapacity(other.count, ec)) {
98 setSize(other.count, ec);
99 if (U_SUCCESS(ec)) {
440 void UVector::sortedInsert(void* obj, UElementComparator *compare, UErrorCode& ec) {
443 sortedInsert(e, compare, ec);
451 void UVector::sortedInsert(int32_t obj, UElementComparator *compare, UErrorCode& ec) {
454 sortedInsert(e, compare, ec);
458 void UVector::sortedInsert(UElement e, UElementComparator *compare, UErrorCode& ec) {
475 if (ensureCapacity(count + 1, ec)) {
524 void UVector::sorti(UErrorCode &ec) {
525 if (U_SUCCESS(ec)) {
527 sortiComparator, NULL, FALSE, &ec);
546 void UVector::sort(UElementComparator *compare, UErrorCode &ec) {
547 if (U_SUCCESS(ec)) {
549 sortComparator, &compare, FALSE, &ec);
557 void UVector::sortWithUComparator(UComparator *compare, const void *context, UErrorCode &ec) {
558 if (U_SUCCESS(ec)) {
560 compare, context, TRUE, &ec);