Lines Matching refs:UVector
28 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(UVector) in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() argument
30 UVector::UVector(UErrorCode &status) : in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
40 UVector::UVector(int32_t initialCapacity, UErrorCode &status) : in UVector() function in UVector
50 UVector::UVector(UObjectDeleter *d, UElementsAreEqual *c, UErrorCode &status) : in UVector() function in UVector
60 UVector::UVector(UObjectDeleter *d, UElementsAreEqual *c, int32_t initialCapacity, UErrorCode &stat… in UVector() function in UVector
70 void UVector::_init(int32_t initialCapacity, UErrorCode &status) { in _init()
86 UVector::~UVector() { in ~UVector()
96 void UVector::assign(const UVector& other, UElementAssigner *assign, UErrorCode &ec) { in assign()
111 UBool UVector::operator==(const UVector& other) { in operator ==()
125 void UVector::addElement(void* obj, UErrorCode &status) { in addElement()
131 void UVector::addElement(int32_t elem, UErrorCode &status) { in addElement()
139 void UVector::setElementAt(void* obj, int32_t index) { in setElementAt()
149 void UVector::setElementAt(int32_t elem, int32_t index) { in setElementAt()
161 void UVector::insertElementAt(void* obj, int32_t index, UErrorCode &status) { in insertElementAt()
173 void UVector::insertElementAt(int32_t elem, int32_t index, UErrorCode &status) { in insertElementAt()
186 void* UVector::elementAt(int32_t index) const { in elementAt()
190 int32_t UVector::elementAti(int32_t index) const { in elementAti()
194 UBool UVector::containsAll(const UVector& other) const { in containsAll()
203 UBool UVector::containsNone(const UVector& other) const { in containsNone()
212 UBool UVector::removeAll(const UVector& other) { in removeAll()
224 UBool UVector::retainAll(const UVector& other) { in retainAll()
236 void UVector::removeElementAt(int32_t index) { in removeElementAt()
243 UBool UVector::removeElement(void* obj) { in removeElement()
252 void UVector::removeAllElements(void) { in removeAllElements()
263 UBool UVector::equals(const UVector &other) const { in equals()
289 int32_t UVector::indexOf(void* obj, int32_t startIndex) const { in indexOf()
295 int32_t UVector::indexOf(int32_t obj, int32_t startIndex) const { in indexOf()
302 int32_t UVector::indexOf(UElement key, int32_t startIndex, int8_t hint) const { in indexOf()
329 UBool UVector::ensureCapacity(int32_t minimumCapacity, UErrorCode &status) { in ensureCapacity()
366 void UVector::setSize(int32_t newSize, UErrorCode &status) { in setSize()
393 void** UVector::toArray(void** result) const { in toArray()
401 UObjectDeleter *UVector::setDeleter(UObjectDeleter *d) { in setDeleter()
407 UElementsAreEqual *UVector::setComparer(UElementsAreEqual *d) { in setComparer()
422 void* UVector::orphanElementAt(int32_t index) { in orphanElementAt()
440 void UVector::sortedInsert(void* obj, UElementComparator *compare, UErrorCode& ec) { in sortedInsert()
451 void UVector::sortedInsert(int32_t obj, UElementComparator *compare, UErrorCode& ec) { in sortedInsert()
458 void UVector::sortedInsert(UElement e, UElementComparator *compare, UErrorCode& ec) { in sortedInsert()
524 void UVector::sorti(UErrorCode &ec) { in sorti()
546 void UVector::sort(UElementComparator *compare, UErrorCode &ec) { in sort()
557 void UVector::sortWithUComparator(UComparator *compare, const void *context, UErrorCode &ec) { in sortWithUComparator()