Home | History | Annotate | Download | only in common

Lines Matching defs: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();
317 // because UStack has no special cleanup to do.
351 UStack(const UStack&);
354 UStack& operator=(const UStack&);
396 // UStack inlines
398 inline UBool UStack::empty(void) const {
402 inline void* UStack::peek(void) const {
406 inline int32_t UStack::peeki(void) const {
410 inline void* UStack::push(void* obj, UErrorCode &status) {
415 inline int32_t UStack::push(int32_t i, UErrorCode &status) {