Lines Matching refs:UnoBase
87 typedef ::com::sun::star::uno::Sequence< ELEMENT > UnoBase; typedef in pcr::StlSyntaxSequence
90 inline StlSyntaxSequence() : UnoBase() { } in StlSyntaxSequence()
91 inline StlSyntaxSequence( const UnoBase& rSeq ) : UnoBase( rSeq ) { } in StlSyntaxSequence()
92 …inline StlSyntaxSequence( const ELEMENT* pElements, sal_Int32 len ) : UnoBase( pElements, len ) { } in StlSyntaxSequence()
93 inline StlSyntaxSequence( sal_Int32 len ) : UnoBase( len ) { } in StlSyntaxSequence()
95 operator const UnoBase&() const { return *this; }
96 operator UnoBase&() { return *this; } in operator UnoBase&()
101 inline const_iterator begin() const { return UnoBase::getConstArray(); } in begin()
102 … inline const_iterator end() const { return UnoBase::getConstArray() + UnoBase::getLength(); } in end()
104 inline iterator begin() { return UnoBase::getArray(); } in begin()
105 inline iterator end() { return UnoBase::getArray() + UnoBase::getLength(); } in end()
107 inline sal_Int32 size() const { return UnoBase::getLength(); } in size()
108 inline bool empty() const { return UnoBase::getLength() == 0; } in empty()
110 inline void resize( size_t _newSize ) { UnoBase::realloc( _newSize ); } in resize()