Home | History | Annotate | Download | only in common

Lines Matching defs:UStack

313 class U_COMMON_API UStack : public UVector {
315 UStack(UErrorCode &status);
317 UStack(int32_t initialCapacity, UErrorCode &status);
319 UStack(UObjectDeleter *d, UKeyComparator *c, UErrorCode &status);
321 UStack(UObjectDeleter *d, UKeyComparator *c, int32_t initialCapacity, UErrorCode &status);
323 virtual ~UStack();
326 // because UStack has no special cleanup to do.
360 UStack(const UStack&);
363 UStack& operator=(const UStack&);
405 // UStack inlines
407 inline UBool UStack::empty(void) const {
411 inline void* UStack::peek(void) const {
415 inline int32_t UStack::peeki(void) const {
419 inline void* UStack::push(void* obj, UErrorCode &status) {
424 inline int32_t UStack::push(int32_t i, UErrorCode &status) {