/aoo42x/main/sw/sdi/ |
H A D | swriter.sdi | 34 Container = FALSE, 58 Container = FALSE, 85 Container = FALSE, 112 Container = FALSE, 137 Container = FALSE, 165 Container = FALSE, 193 Container = FALSE, 221 Container = FALSE, 246 Container = FALSE, 271 Container = FALSE, [all …]
|
/aoo42x/main/tools/source/memtools/ |
H A D | contnr.cxx | 46 DBG_NAME( Container ) in DBG_NAME() 509 Container* p = (Container*)pCont; in DbgCheckContainer() 528 void Container::ImpCopyContainer( const Container* pCont2 ) in ImpCopyContainer() 653 Container::Container( sal_uIntPtr nSize ) in Container() function in Container 713 Container::Container( const Container& r ) in Container() function in Container 731 Container::~Container() in ~Container() 1225 void Container::Clear() in Clear() 1570 void* Container::Last() in Last() 1596 void* Container::Next() in Next() 1660 Container& Container::operator =( const Container& r ) in operator =() [all …]
|
H A D | unqidx.cxx | 42 Container( _nInitSize ) in UniqueIndex() 61 Container( rIdx ) in UniqueIndex() 334 void* p = Container::First(); in First() 336 while ( !p && (Container::GetCurPos() < (Container::GetSize()-1)) ) in First() 337 p = Container::Next(); in First() 354 void* p = Container::Last(); in Last() 357 p = Container::Prev(); in Last() 376 while ( !p && (Container::GetCurPos() < (Container::GetSize()-1)) ) in Next() 377 p = Container::Next(); in Next() 397 p = Container::Prev(); in Prev() [all …]
|
H A D | table.cxx | 165 Container::Insert( p, i+1 ); in Insert() 188 Container::Remove( nIndex ); in Remove() 226 return Container::ImpGetObject( Container::GetCurPos()+1 ); in GetCurObject() 325 Container::Seek( nIndex ); in Seek() 328 return Container::ImpGetObject( Container::GetCurPos() + 1 ); in Seek() 356 Container::First(); in First() 374 Container::Prev(); in Last() 388 Container::Next(); in Next() 391 Container::Next(); in Next() 394 return Container::ImpGetObject( Container::GetCurPos() + 1 ); in Next() [all …]
|
/aoo42x/main/svx/sdi/ |
H A D | svx.sdi | 34 Container = FALSE, 62 Container = FALSE, 89 Container = FALSE, 114 Container = FALSE, 139 Container = FALSE, 164 Container = FALSE, 189 Container = FALSE, 216 Container = FALSE, 241 Container = FALSE, 266 Container = FALSE, [all …]
|
/aoo42x/main/sfx2/sdi/ |
H A D | sfx.sdi | 34 Container = FALSE, 61 Container = FALSE, 88 Container = FALSE, 115 Container = FALSE, 142 Container = FALSE, 169 Container = FALSE, 194 Container = TRUE, 273 Container = TRUE, 301 Container = TRUE, 326 Container = TRUE, [all …]
|
/aoo42x/main/sc/sdi/ |
H A D | scalc.sdi | 35 Container = FALSE, 60 Container = FALSE, 85 Container = FALSE, 110 Container = FALSE, 137 Container = FALSE, 164 Container = FALSE, 189 Container = FALSE, 214 Container = FALSE, 239 Container = FALSE, 264 Container = FALSE, [all …]
|
/aoo42x/main/sd/sdi/ |
H A D | sdraw.sdi | 34 Container = FALSE, 61 Container = FALSE, 86 Container = FALSE, 113 Container = FALSE, 140 Container = FALSE, 167 Container = FALSE, 194 Container = FALSE, 221 Container = FALSE, 248 Container = FALSE, 273 Container = FALSE, [all …]
|
/aoo42x/main/accessibility/java/java_uno_accessbridge/src/main/java/org/openoffice/java/accessibility/ |
H A D | AccessibleObjectFactory.java | 110 public static void addChild(java.awt.Container parent, Object any) { in addChild() 140 if (c instanceof java.awt.Container) { in addChild() 166 if (c instanceof java.awt.Container) { in removeChild() 167 clearContainer((java.awt.Container) c); in removeChild() 180 protected static void clearContainer(java.awt.Container parent) { in clearContainer() 185 if (c instanceof java.awt.Container) { in clearContainer() 186 clearContainer((java.awt.Container) c); in clearContainer() 226 if (c instanceof java.awt.Container) { in populateContainer() 300 c = new Container(javax.accessibility.AccessibleRole.PANEL, in createAccessibleComponentImpl() 304 c = new Container(javax.accessibility.AccessibleRole.PANEL, in createAccessibleComponentImpl() [all …]
|
H A D | Container.java | 32 public class Container extends java.awt.Container implements javax.accessibility.Accessible { class 42 protected Container(javax.accessibility.AccessibleRole role, in Container() method in Container 71 java.awt.Container parent = getParent(); in isShowing() 223 Container.this, enable ? in setComponentState() 295 Container.this, in handleAllChildrenChangedEvent() 304 Container.this); in handleAllChildrenChangedEvent() 368 AccessibleObjectFactory.disposing(Container.this); in disposing() 652 return Container.this.isEnabled(); in isEnabled() 660 return Container.this.isVisible(); in isVisible() 668 return Container.this.isShowing(); in isShowing() [all …]
|
H A D | FocusTraversalPolicy.java | 41 public java.awt.Component getComponentAfter(java.awt.Container focusCycleRoot, in getComponentAfter() 47 public java.awt.Component getComponentBefore(java.awt.Container focusCycleRoot, in getComponentBefore() 53 public java.awt.Component getDefaultComponent(java.awt.Container focusCycleRoot) { in getDefaultComponent() 69 public java.awt.Component getFirstComponent(java.awt.Container focusCycleRoot) { in getFirstComponent() 82 public java.awt.Component getLastComponent(java.awt.Container focusCycleRoot) { in getLastComponent()
|
/aoo42x/main/tools/inc/tools/ |
H A D | list.hxx | 37 class List : private Container 40 using Container::Insert; 41 using Container::Remove; 43 using Container::Clear; 44 using Container::Count; 48 using Container::GetPos; 49 using Container::Seek; 50 using Container::First; 51 using Container::Last; 52 using Container::Next; [all …]
|
H A D | stack.hxx | 35 class Stack : private Container 38 using Container::Clear; 39 using Container::Count; 40 using Container::GetObject; 41 using Container::GetPos; 45 Stack( const Stack& rStack ) : Container( rStack ) {} in Stack() 47 void Push( void* p ) { Container::Insert( p, CONTAINER_APPEND ); } in Push() 48 void* Pop() { return Container::Remove( Count()-1 ); } in Pop() 52 { Container::operator =( rStack ); return *this; } in operator =() 55 { return Container::operator ==( rStack ); } in operator ==() [all …]
|
H A D | dynary.hxx | 36 class DynArray : private Container 39 using Container::SetSize; 40 using Container::GetSize; 41 using Container::Clear; 44 DynArray( const DynArray& rAry ) : Container( rAry ) {} in DynArray() 47 { return Container::Replace( p, nIndex ); } in Put() 49 { return Container::GetObject( nIndex ); } in Get() 52 { return Container::GetPos( p ); } in GetIndex() 58 { Container::operator =( rAry ); return *this; } in operator =() 61 { return Container::operator ==( rAry ); } in operator ==() [all …]
|
H A D | queue.hxx | 36 class Queue : private Container 39 using Container::Clear; 40 using Container::Count; 41 using Container::GetObject; 42 using Container::GetPos; 45 Container( _nReSize, _nInitSize, _nReSize ) {} in Queue() 46 Queue( const Queue& rQueue ) : Container( rQueue ) {} in Queue() 48 void Put( void* p ) { Container::Insert( p, CONTAINER_APPEND ); } in Put() 52 { Container::operator =( rQueue ); return *this; } in operator =() 55 { return Container::operator ==( rQueue ); } in operator ==() [all …]
|
H A D | contnr.hxx | 43 class TOOLS_DLLPUBLIC Container class 55 TOOLS_DLLPRIVATE void ImpCopyContainer(Container const *); 70 Container( sal_uInt16 nBlockSize, 73 Container( sal_uIntPtr nSize ); 74 Container( const Container& rContainer ); 75 ~Container(); 112 Container& operator =( const Container& rContainer ); 114 sal_Bool operator ==( const Container& rContainer ) const; 115 sal_Bool operator !=( const Container& rContainer ) const in operator !=() 116 { return !(Container::operator==( rContainer )); } in operator !=()
|
H A D | table.hxx | 36 class TOOLS_DLLPUBLIC Table : private Container 45 Table( const Table& rTable ) : Container( rTable ) in Table() 53 void Clear() { Container::Clear(); nCount = 0; } in Clear() 57 sal_uIntPtr GetCurKey() const { return (sal_uIntPtr)Container::GetCurObject(); } in GetCurKey() 62 { return Container::GetObject( (nPos*2)+1 ); } in GetObject() 64 { return (sal_uIntPtr)Container::GetObject( nPos*2 ); } in GetObjectKey() 78 { return Container::operator ==( rTable ); } in operator ==() 80 { return Container::operator !=( rTable ); } in operator !=() 85 Container::operator =( r ); in operator =()
|
/aoo42x/main/starmath/sdi/ |
H A D | smath.sdi | 34 Container = FALSE, 59 Container = FALSE, 84 Container = FALSE, 109 Container = FALSE, 134 Container = FALSE, 159 Container = FALSE, 184 Container = FALSE, 209 Container = FALSE, 236 Container = FALSE, 261 Container = FALSE, [all …]
|
/aoo42x/main/toolkit/source/layout/vcl/ |
H A D | wcontainer.cxx | 37 Container::Container( Context const* context, char const* pId ) in Container() function in layout::Container 46 Container::Container( rtl::OUString const& rName, sal_Int32 nBorder ) in Container() function in layout::Container 55 void Container::Add( Window *pChild ) in Add() 64 void Container::Add( Container *pChild ) in Add() 82 void Container::Remove( Container *pChild ) in Remove() 91 void Container::Clear() in Clear() 129 void Container::Show() in Show() 134 void Container::Hide() in Hide() 186 : Container( rName, nBorder ) in Box() 231 : Container( context, pId ) in Table() [all …]
|
/aoo42x/main/chart2/source/inc/ |
H A D | ContainerHelper.hxx | 48 template< class Container > 49 ::com::sun::star::uno::Sequence< typename Container::value_type > 50 ContainerToSequence( const Container & rCont ) in ContainerToSequence() 52 ::com::sun::star::uno::Sequence< typename Container::value_type > aResult( rCont.size()); in ContainerToSequence() 70 template< class Container > 71 Container 74 Container aResult( rSeq.getLength()); in SequenceToSTLSequenceContainer() 96 template< class Container > 97 Container 100 Container aResult; in SequenceToSTLContainer() [all …]
|
H A D | EventListenerHelper.hxx | 135 template< class Container > 137 const Container & rContainer, in addListenerToAllElements() 143 impl::addListenerFunctor< typename Container::value_type >( xListener )); in addListenerToAllElements() 146 template< class Container > 148 const Container & rContainer, in addListenerToAllMapElements() 154 … impl::addListenerToMappedElementFunctor< typename Container::value_type >( xListener )); in addListenerToAllMapElements() 181 template< class Container > 183 const Container & rContainer, in removeListenerFromAllElements() 189 … impl::removeListenerFunctor< typename Container::value_type >( xListener )); in removeListenerFromAllElements() 192 template< class Container > [all …]
|
H A D | ModifyListenerHelper.hxx | 220 template< class Container > 222 const Container & rContainer, in addListenerToAllElements() 228 impl::addListenerFunctor< typename Container::value_type >( xListener )); in addListenerToAllElements() 231 template< class Container > 233 const Container & rContainer, in addListenerToAllMapElements() 239 … impl::addListenerToMappedElementFunctor< typename Container::value_type >( xListener )); in addListenerToAllMapElements() 266 template< class Container > 268 const Container & rContainer, in removeListenerFromAllElements() 274 … impl::removeListenerFunctor< typename Container::value_type >( xListener )); in removeListenerFromAllElements() 277 template< class Container > [all …]
|
/aoo42x/main/toolkit/source/layout/core/ |
H A D | container.cxx | 34 Container::Container() in Container() function in layoutimpl::Container 46 Container::emptyVisible () in emptyVisible() 52 Container::queryInterface( const uno::Type & rType ) throw (uno::RuntimeException) in queryInterface() 59 Container::allocateChildAt( const uno::Reference< awt::XLayoutConstrains > &xChild, in allocateChildAt() 80 Container::getSingleChild ( uno::Reference< awt::XLayoutConstrains >const &xChildOrNil ) in getSingleChild() 89 Container::queueResize() in queueResize() 96 Container::setChildParent( const uno::Reference< awt::XLayoutConstrains >& xChild ) in setChildParent() 110 Container::unsetChildParent( const uno::Reference< awt::XLayoutConstrains >& xChild ) in unsetChildParent() 124 Container::getLabel() // debug label 156 void Container::propertiesChanged() in propertiesChanged()
|
/aoo42x/main/svl/inc/svl/ |
H A D | cntnrsrt.hxx | 35 * Definiert eine von Container abgeleitete Klasse "ClassName", 43 * Die Zugriffs-Methoden entsprechen in etwa denen der Container- 61 using Container::Count; \ 64 Container( CONTAINER_MAXBLOCKSIZE, InitSize, ReSize ) {} \ 69 { return (Type *)Container::Remove( nPos ); } \ 84 { return (Type *)Container::GetObject( nPos ); } \ 95 class ClassName : private Container \ 103 class ClassName : private Container \ 116 Container::Insert( pObj, nPos ); \
|
/aoo42x/main/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/ |
H A D | DialogFocusTraversalPolicy.java | 39 public java.awt.Component getFirstComponent(java.awt.Container focusCycleRoot) { in getFirstComponent() 43 public java.awt.Component getLastComponent(java.awt.Container focusCycleRoot) { in getLastComponent() 47 …public java.awt.Component getComponentAfter(java.awt.Container focusCycleRoot, java.awt.Component … in getComponentAfter() 74 …public java.awt.Component getComponentBefore(java.awt.Container focusCycleRoot, java.awt.Component… in getComponentBefore() 101 public java.awt.Component getDefaultComponent(java.awt.Container focusCycleRoot) { in getDefaultComponent()
|