Lines Matching refs:UStack
304 class U_COMMON_API UStack : public UVector {
306 UStack(UErrorCode &status);
308 UStack(int32_t initialCapacity, UErrorCode &status);
310 UStack(UObjectDeleter *d, UKeyComparator *c, UErrorCode &status);
312 UStack(UObjectDeleter *d, UKeyComparator *c, int32_t initialCapacity, UErrorCode &status);
314 virtual ~UStack();
351 UStack(const UStack&);
354 UStack& operator=(const UStack&);
398 inline UBool UStack::empty(void) const { in empty()
402 inline void* UStack::peek(void) const { in peek()
406 inline int32_t UStack::peeki(void) const { in peeki()
410 inline void* UStack::push(void* obj, UErrorCode &status) { in push()
415 inline int32_t UStack::push(int32_t i, UErrorCode &status) { in push()