Home
last modified time | relevance | path

Searched refs:rKey (Results 1 – 25 of 117) sorted by path

12345

/trunk/main/animations/source/animcore/
H A Dtargetpropertiescreator.cxx148 ::std::size_t operator()( const ShapeHashKey& rKey ) const in operator ()()
163 return reinterpret_cast< ::std::size_t >(rKey.mxRef.get()) ^ (rKey.mnParagraphIndex << 16L); in operator ()()
/trunk/main/basctl/source/basicide/
H A Dbastypes.cxx781 LibInfoKey::LibInfoKey( const LibInfoKey& rKey ) in LibInfoKey() argument
782 :m_aDocument( rKey.m_aDocument ) in LibInfoKey()
783 ,m_aLibName( rKey.m_aLibName ) in LibInfoKey()
787 LibInfoKey& LibInfoKey::operator=( const LibInfoKey& rKey ) in operator =() argument
789 m_aDocument = rKey.m_aDocument; in operator =()
790 m_aLibName = rKey.m_aLibName; in operator =()
794 bool LibInfoKey::operator==( const LibInfoKey& rKey ) const in operator ==()
797 if ( m_aDocument == rKey.m_aDocument && m_aLibName == rKey.m_aLibName ) in operator ==()
879 LibInfoItem* LibInfos::GetInfo( const LibInfoKey& rKey ) in GetInfo() argument
882 LibInfoMap::iterator it = m_aLibInfoMap.find( rKey ); in GetInfo()
/trunk/main/basctl/source/inc/
H A Dbastypes.hxx262 LibInfoKey( const LibInfoKey& rKey );
263 LibInfoKey& operator=( const LibInfoKey& rKey );
265 bool operator==( const LibInfoKey& rKey ) const;
300 size_t operator()( const LibInfoKey& rKey ) const in operator ()()
302 size_t nHash = (size_t) rKey.GetDocument().hashCode(); in operator ()()
303 nHash += (size_t) ::rtl::OUString( rKey.GetLibName() ).hashCode(); in operator ()()
318 LibInfoItem* GetInfo( const LibInfoKey& rKey );
/trunk/main/connectivity/source/drivers/dbase/
H A DDIndex.cxx184 sal_Bool ODbaseIndex::ConvertToKey(ONDXKey* rKey, sal_uInt32 nRec, const ORowSetValue& rValue) in ConvertToKey() argument
193 *rKey = ONDXKey(rValue.getString(), nRec ); in ConvertToKey()
198 *rKey = ONDXKey(rValue.getDouble(), DataType::DOUBLE, nRec ); in ConvertToKey()
200 *rKey = ONDXKey(rValue.getDouble(), nRec ); in ConvertToKey()
H A DDIndexIter.cxx98 ONDXKey* OIndexIterator::GetFirstKey(ONDXPage* pPage, const OOperand& rKey) in GetFirstKey() argument
112 while (i < pPage->Count() && !m_pOperator->operate(&((*pPage)[i]).GetKey(),&rKey)) in GetFirstKey()
116 while (i < pPage->Count() && !aTempOp.operate(&((*pPage)[i]).GetKey(),&rKey)) in GetFirstKey()
126 pFoundKey = aPage.Is() ? GetFirstKey(aPage, rKey) : NULL; in GetFirstKey()
135 if (!m_pOperator->operate(pFoundKey,&rKey)) in GetFirstKey()
H A DDNoException.cxx360 StringCompare ONDXKey::Compare(const ONDXKey& rKey) const in Compare()
368 …if (rKey.getValue().isNull() || (rKey.IsText(getDBType()) && !rKey.getValue().getString().getLengt… in Compare()
373 else if (rKey.getValue().isNull()) in Compare()
382 sal_Int32 nRes = getValue().getString().compareTo(rKey.getValue()); in Compare()
387 double m = getValue(),n = rKey.getValue(); in Compare()
392 if (eResult == COMPARE_EQUAL && nRecord && rKey.nRecord) in Compare()
393 eResult = (nRecord > rKey.nRecord) ? COMPARE_GREATER : in Compare()
394 (nRecord == rKey.nRecord) ? COMPARE_EQUAL : COMPARE_LESS; in Compare()
526 ONDXKey& rKey = rNode.GetKey(); in PrintPage() local
530 if (rKey.getValue().isNull()) in PrintPage()
[all …]
H A Ddindexnode.cxx139 while (i < nCount && rKey > ((*this)[i]).GetKey()) in FindPos()
146 sal_Bool ONDXPage::Find(const ONDXKey& rKey) in Find() argument
154 while (i < nCount && rKey > ((*this)[i]).GetKey()) in Find()
163 bResult = aPage.Is() && aPage->Find(rKey); in Find()
173 bResult = rKey == ((*this)[i]).GetKey(); in Find()
794 …if (rKey.getValue().isNull() || (rKey.IsText(getDBType()) && !rKey.getValue().getString().getLengt… in Compare()
799 else if (rKey.getValue().isNull()) in Compare()
813 double m = getValue(),n = rKey.getValue(); in Compare()
947 ONDXKey& rKey = rNode.GetKey(); in PrintPage() local
951 if (rKey.getValue().isNull()) in PrintPage()
[all …]
/trunk/main/connectivity/source/inc/dbase/
H A DDIndex.hxx146 sal_Bool ConvertToKey(ONDXKey* rKey, sal_uInt32 nRec, const ORowSetValue& rValue);
H A DDIndexIter.hxx56 const file::OOperand& rKey);
H A Ddindexnode.hxx233 ONDXNode(const ONDXKey& rKey, in ONDXNode() argument
247 void SetKey(ONDXKey& rKey) {aKey = rKey;} in SetKey() argument
284 ,nRecord(rKey.nRecord) in ONDXKey()
285 ,xValue(rKey.xValue) in ONDXKey()
291 if(&rKey == this) in operator =()
294 xValue = rKey.xValue; in operator =()
295 nRecord = rKey.nRecord; in operator =()
302 if(&rKey == this) in operator ==()
308 return !operator== (rKey); in operator !=()
320 return !operator > (rKey); in operator <=()
[all …]
/trunk/main/cppu/source/uno/
H A Dlbenv.cxx113 ::std::size_t operator () ( const OUString & rKey ) const in operator ()()
114 { return rKey.hashCode(); } in operator ()()
H A Dlbmap.cxx130 size_t operator()( const OUString & rKey ) const SAL_THROW( () ) in operator ()()
131 { return (size_t)rKey.hashCode(); } in operator ()()
/trunk/main/cppuhelper/inc/cppuhelper/
H A Dinterfacecontainer.h368 const key & rKey,
383 const key & rKey,
404 inline typename InterfaceMap::iterator find(const key &rKey) const in find()
412 if( equal( iter->first, rKey ) ) in find()
551 …OInterfaceContainerHelper * SAL_CALL getContainer( const ::com::sun::star::uno::Type & rKey ) cons…
572 const ::com::sun::star::uno::Type & rKey,
587 const ::com::sun::star::uno::Type & rKey,
H A Dinterfacecontainer.hxx93 const key & rKey ) const SAL_THROW( () ) in getContainer()
97 typename InterfaceMap::iterator iter = find( rKey ); in getContainer()
106 const key & rKey, in addInterface() argument
111 typename InterfaceMap::iterator iter = find( rKey ); in addInterface()
115 m_pMap->push_back(std::pair<key, void*>(rKey, pLC)); in addInterface()
125 const key & rKey, in removeInterface() argument
132 typename InterfaceMap::iterator iter = find( rKey ); in removeInterface()
H A Dpropshlp.hxx266 OInterfaceContainerHelper * SAL_CALL getContainer( const sal_Int32 & rKey ) const SAL_THROW( () );
276 const sal_Int32 & rKey,
288 const sal_Int32 & rKey,
H A Dunourl.hxx94 bool hasParameter(rtl::OUString const & rKey) const;
105 rtl::OUString getParameter(rtl::OUString const & rKey) const;
/trunk/main/cppuhelper/source/
H A Dinterfacecontainer.cxx435 if (iter->first == rKey) in findType()
448 t_type2ptr::iterator iter = findType( pMap, rKey ); in getContainer()
454 const Type & rKey, const Reference< XInterface > & rListener ) in addInterface() argument
459 t_type2ptr::iterator iter = findType( pMap, rKey ); in addInterface()
463 pMap->push_back(std::pair<Type, void*>(rKey, pLC)); in addInterface()
470 const Type & rKey, const Reference< XInterface > & rListener ) in removeInterface() argument
477 t_type2ptr::iterator iter = findType( pMap, rKey ); in removeInterface()
626 t_long2ptr::iterator iter = findLong( pMap, rKey ); in getContainer()
639 t_long2ptr::iterator iter = findLong( pMap, rKey ); in addInterface()
643 pMap->push_back(std::pair< sal_Int32, void* >(rKey, pLC)); in addInterface()
[all …]
H A Dunourl.cxx182 bool UnoUrlDescriptor::hasParameter(rtl::OUString const & rKey) const in hasParameter()
184 return m_xImpl->m_aParameters.find(rKey.toAsciiLowerCase()) in hasParameter()
188 rtl::OUString UnoUrlDescriptor::getParameter(rtl::OUString const & rKey) const in getParameter()
191 aIt(m_xImpl->m_aParameters.find(rKey.toAsciiLowerCase())); in getParameter()
/trunk/main/cui/source/dialogs/
H A Dthesdlg.cxx249 const KeyCode& rKey = rKEvt.GetKeyCode(); in KeyInput() local
251 if (rKey.GetCode() == KEY_RETURN || rKey.GetCode() == KEY_ESCAPE) in KeyInput()
253 else if (rKey.GetCode() == KEY_SPACE) in KeyInput()
/trunk/main/desktop/source/migration/
H A Dwizard.cxx214 const KeyCode& rKey = rNEvt.GetKeyEvent()->GetKeyCode(); in PreNotify() local
215 if( rKey.GetCode() == KEY_F1 && ! rKey.GetModifier() ) in PreNotify()
/trunk/main/framework/source/accelerators/
H A Dacceleratorcache.cxx237 const css::awt::KeyEvent& rKey = *pKey; in removeCommand() local
238 removeKey(rKey); in removeCommand()
/trunk/main/framework/source/xml/
H A Dacceleratorconfigurationwriter.cxx102 const css::awt::KeyEvent& rKey = *pKey; in flush() local
103 const ::rtl::OUString& rCommand = m_rContainer.getCommandByKey(rKey); in flush()
104 impl_ts_writeKeyCommandPair(rKey, rCommand, xCFG); in flush()
/trunk/main/idlc/inc/idlc/
H A Dastdeclaration.hxx122 virtual sal_Bool dump(RegistryKey& rKey);
H A Dastenum.hxx45 virtual sal_Bool dump(RegistryKey& rKey);
H A Dastinterface.hxx93 virtual sal_Bool dump(RegistryKey& rKey);

Completed in 114 milliseconds

12345