Home
last modified time | relevance | path

Searched refs:Container (Results 1 – 25 of 199) sorted by relevance

12345678

/trunk/main/sw/sdi/
H A Dswriter.sdi34 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 …]
/trunk/main/tools/source/memtools/
H A Dcontnr.cxx46 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 Dunqidx.cxx42 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 Dtable.cxx165 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 …]
/trunk/main/svx/sdi/
H A Dsvx.sdi34 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 …]
/trunk/main/sfx2/sdi/
H A Dsfx.sdi36 Container = FALSE,
63 Container = FALSE,
90 Container = FALSE,
117 Container = FALSE,
144 Container = FALSE,
171 Container = FALSE,
196 Container = TRUE,
275 Container = TRUE,
303 Container = TRUE,
328 Container = TRUE,
[all …]
/trunk/main/sc/sdi/
H A Dscalc.sdi35 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 …]
/trunk/main/sd/sdi/
H A Dsdraw.sdi34 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 …]
/trunk/main/accessibility/java/java_uno_accessbridge/src/main/java/org/openoffice/java/accessibility/
H A DAccessibleObjectFactory.java110 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 DContainer.java32 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 DFocusTraversalPolicy.java41 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()
/trunk/main/tools/inc/tools/
H A Dlist.hxx37 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 Dstack.hxx35 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 Ddynary.hxx36 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 Dqueue.hxx36 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 Dcontnr.hxx43 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 Dtable.hxx36 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 =()
/trunk/main/starmath/sdi/
H A Dsmath.sdi34 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 …]
/trunk/main/toolkit/source/layout/vcl/
H A Dwcontainer.cxx37 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 …]
/trunk/main/chart2/source/inc/
H A DContainerHelper.hxx48 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 DEventListenerHelper.hxx135 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 DModifyListenerHelper.hxx220 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 …]
/trunk/main/toolkit/source/layout/core/
H A Dcontainer.cxx34 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()
/trunk/main/svl/inc/svl/
H A Dcntnrsrt.hxx35 * 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 ); \
/trunk/main/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/
H A DDialogFocusTraversalPolicy.java39 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()

Completed in 238 milliseconds

12345678