Lines Matching refs:i

337 	for (sal_Int32 i = 0;  i < nEntries;  ++i)  in SearchForDictionaries()  local
339 String aURL( pDirCnt[i] ); in SearchForDictionaries()
402 for (size_t i = 0; i < n; i++) in GetDicPos() local
404 if ( rDicList[i] == xDic ) in GetDicPos()
405 return i; in GetDicPos()
437 for (sal_Int32 i = 0; i < n; i++) in getDictionaries() local
438 pDic[i] = rDicList[i]; in getDictionaries()
452 for (size_t i = 0; i < nCount; i++) in getDictionaryByName() local
454 const uno::Reference< XDictionary > &rDic = rDicList[i]; in getDictionaryByName()
619 for (size_t i = 0; i < nCount; i++) in dispose() local
621 uno::Reference< XDictionary > xDic( rDicList[i], UNO_QUERY ); in dispose()
674 for (sal_Int32 i = 0; i < aPaths.getLength(); ++i) in _CreateDicList() local
676 const sal_Bool bIsWriteablePath = (pPaths[i] == aWriteablePath); in _CreateDicList()
677 SearchForDictionaries( aDicList, pPaths[i], bIsWriteablePath ); in _CreateDicList()
704 for (sal_Int32 i = 0; i < nLen; ++i) in _CreateDicList() local
706 if (pActiveDic[i].getLength()) in _CreateDicList()
708 uno::Reference< XDictionary > xDic( getDictionaryByName( pActiveDic[i] ) ); in _CreateDicList()
733 for (size_t i = 0; i < nCount; i++) in SaveDics() local
736 uno::Reference< frame::XStorable > xStor( rDicList[i], UNO_QUERY ); in SaveDics()
771 for( sal_Int32 i = 0; i < aSNL.getLength(); i++ ) in supportsService() local
772 if( pArray[i] == ServiceName ) in supportsService()
831 xub_StrLen i; in lcl_GetToken() local
832 for (i = nPos; i < rText.Len(); ++i) in lcl_GetToken()
834 if (STRING_NOTFOUND != rDelim.Search( rText.GetChar(i) )) in lcl_GetToken()
838 if (i >= rText.Len()) // delimeter not found in lcl_GetToken()
841 rToken = rText.Copy( nPos, sal::static_int_cast< xub_StrLen >((sal_Int32) i - nPos) ); in lcl_GetToken()
842 nRes = i + 1; // continue after found delimeter in lcl_GetToken()