Lines Matching refs:atoms
56 void AtomProvider::getAll( ::std::list< ::utl::AtomDescription >& atoms ) in getAll() argument
58 atoms.clear(); in getAll()
66 atoms.push_back( aDesc ); in getAll()
71 void AtomProvider::getRecent( int atom, ::std::list< ::utl::AtomDescription >& atoms ) in getRecent() argument
73 atoms.clear(); in getRecent()
84 atoms.push_back( aDesc ); in getRecent()
158 …ltiAtomProvider::getRecent( int atomClass, int atom, ::std::list< ::utl::AtomDescription >& atoms ) in getRecent() argument
163 it->second->getRecent( atom, atoms ); in getRecent()
165 atoms.clear(); in getRecent()
185 void MultiAtomProvider::getClass( int atomClass, ::std::list< ::utl::AtomDescription >& atoms) const in getClass()
190 it->second->getAll( atoms ); in getClass()
192 atoms.clear(); in getClass()
236 ::std::list< ::utl::AtomDescription > atoms; in getClass()
237 m_aProvider.getClass( atomClass, atoms ); in getClass()
239 Sequence< NMSP_UTIL::AtomDescription > aRet( atoms.size() ); in getClass()
242 aRet.getArray()[i].atom = atoms.back().atom; in getClass()
243 aRet.getArray()[i].description = atoms.back().description; in getClass()
244 atoms.pop_back(); in getClass()
254 ::std::list< ::utl::AtomDescription > atoms; in getRecentAtoms()
255 m_aProvider.getRecent( atomClass, atom, atoms ); in getRecentAtoms()
257 Sequence< NMSP_UTIL::AtomDescription > aRet( atoms.size() ); in getRecentAtoms()
260 aRet.getArray()[i].atom = atoms.back().atom; in getRecentAtoms()
261 aRet.getArray()[i].description = atoms.back().description; in getRecentAtoms()
262 atoms.pop_back(); in getRecentAtoms()
268 …tl::OUString > AtomServer::getAtomDescriptions( const Sequence< AtomClassRequest >& atoms ) throw() in getAtomDescriptions() argument
273 for( i = 0; i < atoms.getLength(); i++ ) in getAtomDescriptions()
274 nStrings += atoms.getConstArray()[ i ].atoms.getLength(); in getAtomDescriptions()
276 for( i = 0, nStrings = 0; i < atoms.getLength(); i++ ) in getAtomDescriptions()
278 const AtomClassRequest& rRequest = atoms.getConstArray()[i]; in getAtomDescriptions()
279 for( int n = 0; n < rRequest.atoms.getLength(); n++ ) in getAtomDescriptions()
280 …aRet.getArray()[ nStrings++ ] = m_aProvider.getString( rRequest.atomClass, rRequest.atoms.getConst… in getAtomDescriptions()
342 aReq.getArray()[0].atoms.realloc( 1 ); in getString()
343 aReq.getArray()[0].atoms.getArray()[0] = atom; in getString()