Lines Matching refs:UVector
73 class U_COMMON_API UVector : public UObject {
93 UVector(UErrorCode &status);
95 UVector(int32_t initialCapacity, UErrorCode &status);
97 UVector(UObjectDeleter *d, UElementsAreEqual *c, UErrorCode &status);
99 UVector(UObjectDeleter *d, UElementsAreEqual *c, int32_t initialCapacity, UErrorCode &status);
101 virtual ~UVector();
107 void assign(const UVector& other, UElementAssigner *assign, UErrorCode &ec);
114 UBool operator==(const UVector& other);
119 inline UBool operator!=(const UVector& other);
141 UBool equals(const UVector &other) const;
157 UBool containsAll(const UVector& other) const;
159 UBool removeAll(const UVector& other);
161 UBool retainAll(const UVector& other);
215 UBool containsNone(const UVector& other) const;
271 UVector(const UVector&);
274 UVector& operator=(const UVector&);
295 class U_COMMON_API UStack : public UVector {
351 inline int32_t UVector::size(void) const { in size()
355 inline UBool UVector::isEmpty(void) const { in isEmpty()
359 inline UBool UVector::contains(void* obj) const { in contains()
363 inline UBool UVector::contains(int32_t obj) const { in contains()
367 inline void* UVector::firstElement(void) const { in firstElement()
371 inline void* UVector::lastElement(void) const { in lastElement()
375 inline int32_t UVector::lastElementi(void) const { in lastElementi()
379 inline void* UVector::operator[](int32_t index) const {
383 inline UBool UVector::operator!=(const UVector& other) {