Lines Matching refs:i

67 	for( sal_Int32 i = 0; *ppPropName;  ++i, ++ppPropName )  in lcl_GetFontPropertyNames()  local
69 pNames[i] = A2OU( *ppPropName ); in lcl_GetFontPropertyNames()
93 for( sal_Int32 i = 0; *ppPropName; ++i, ++ppPropName ) in lcl_GetSymbolPropertyNames() local
95 pNames[i] = A2OU( *ppPropName ); in lcl_GetSymbolPropertyNames()
175 for (sal_Int32 i = 0; i < nCount; ++i, ++ppPropName) in lcl_GetPropertyNames() local
177 pNames[i] = A2OU( *ppPropName ); in lcl_GetPropertyNames()
319 for (size_t i = 0; i < aEntries.size(); ++i) in RemoveFontFormat() local
321 if (aEntries[i].aId == rFntFmtId) in RemoveFontFormat()
324 aEntries.erase( aEntries.begin() + i ); in RemoveFontFormat()
336 for (size_t i = 0; i < aEntries.size(); ++i) in GetFontFormat() local
338 if (aEntries[i].aId == rFntFmtId) in GetFontFormat()
340 pRes = &aEntries[i].aFntFmt; in GetFontFormat()
363 for (size_t i = 0; i < aEntries.size(); ++i) in GetFontFormatId() local
365 if (aEntries[i].aFntFmt == rFntFmt) in GetFontFormatId()
367 aRes = aEntries[i].aId; in GetFontFormatId()
405 for (sal_Int32 i = 1; i <= nCnt + 1; ++i) in GetNewFontFormatId() local
408 aTmpId += String::CreateFromInt32( i ); in GetNewFontFormatId()
472 for (sal_Int32 i = 0; i < nProps; ++i) in ReadSymbol() local
474 OUString &rName = pName[i]; in ReadSymbol()
676 for (sal_Int32 i = 0; i < nNodes; ++i) in LoadFontFormatList() local
679 ReadFontFormat( aFntFmt, pNode[i], A2OU( FONT_FORMAT_LIST ) ); in LoadFontFormatList()
680 if (!pFontFormatList->GetFontFormat( pNode[i] )) in LoadFontFormatList()
682 DBG_ASSERT( 0 == pFontFormatList->GetFontFormat( pNode[i] ), in LoadFontFormatList()
684 pFontFormatList->AddFontFormat( pNode[i], aFntFmt ); in LoadFontFormatList()
699 for (sal_Int32 i = 0; i < nProps; ++i) in ReadFontFormat() local
701 OUString &rName = pName[i]; in ReadFontFormat()
773 for (size_t i = 0; i < nCount; ++i) in SaveFontFormatList() local
775 String aFntFmtId( rFntFmtList.GetFontFormatId( i ) ); in SaveFontFormatList()
826 size_t i; in StripFontFormatList() local
831 for (i = 0; i < rSymbols.size(); ++i) in StripFontFormatList()
833 DBG_ASSERT( rSymbols[i].GetName().Len() > 0, "non named symbol" ); in StripFontFormatList()
834 aUsedList.GetFontFormatId( SmFontFormat( rSymbols[i].GetFace() ) , sal_True ); in StripFontFormatList()
837 for (i = FNT_BEGIN; i <= FNT_END; ++i) in StripFontFormatList()
839 aUsedList.GetFontFormatId( SmFontFormat( rStdFmt.GetFont( i ) ) , sal_True ); in StripFontFormatList()
1016 sal_uInt16 i; in LoadFormat() local
1017 for (i = SIZ_BEGIN; i <= SIZ_END; ++i) in LoadFormat()
1020 pFormat->SetRelSize( i, nTmp16 ); in LoadFormat()
1024 for (i = DIS_BEGIN; i <= DIS_END; ++i) in LoadFormat()
1027 pFormat->SetDistance( i, nTmp16 ); in LoadFormat()
1032 for (i = FNT_BEGIN; i < FNT_END; ++i) in LoadFormat()
1041 aFnt = pFormat->GetFont( i ); in LoadFormat()
1042 aFnt.SetName( GetDefaultFontName( nLang, i ) ); in LoadFormat()
1055 pFormat->SetFont( i, aFnt, bUseDefaultFont ); in LoadFormat()
1088 sal_uInt16 i; in SaveFormat() local
1089 for (i = SIZ_BEGIN; i <= SIZ_END; ++i) in SaveFormat()
1090 *pValue++ <<= (sal_Int16) pFormat->GetRelSize( i ); in SaveFormat()
1092 for (i = DIS_BEGIN; i <= DIS_END; ++i) in SaveFormat()
1093 *pValue++ <<= (sal_Int16) pFormat->GetDistance( i ); in SaveFormat()
1095 for (i = FNT_BEGIN; i < FNT_END; ++i) in SaveFormat()
1099 if (!pFormat->IsDefaultFont( i )) in SaveFormat()
1101 SmFontFormat aFntFmt( pFormat->GetFont( i ) ); in SaveFormat()