Lines Matching refs:pDescriptor

725 					SymbolDescriptor *pDescriptor = aSequence.getArray();  in _setPropertyValues()  local
726 for (sal_uInt32 i = 0; i < nSize ; i++, pDescriptor++) in _setPropertyValues()
729 aFont.SetName ( pDescriptor->sFontName ); in _setPropertyValues()
730 aFont.SetCharSet ( static_cast < rtl_TextEncoding > (pDescriptor->nCharSet) ); in _setPropertyValues()
731 aFont.SetFamily ( static_cast < FontFamily > (pDescriptor->nFamily ) ); in _setPropertyValues()
732 aFont.SetPitch ( static_cast < FontPitch > (pDescriptor->nPitch ) ); in _setPropertyValues()
733 aFont.SetWeight ( static_cast < FontWeight > (pDescriptor->nWeight ) ); in _setPropertyValues()
734 aFont.SetItalic ( static_cast < FontItalic > (pDescriptor->nItalic ) ); in _setPropertyValues()
735 … SmSym aSymbol ( pDescriptor->sName, aFont, static_cast < sal_Unicode > (pDescriptor->nCharacter), in _setPropertyValues()
736 pDescriptor->sSymbolSet ); in _setPropertyValues()
737 aSymbol.SetExportName ( pDescriptor->sExportName ); in _setPropertyValues()
934 SymbolDescriptor * pDescriptor = aSequence.getArray(); in _getPropertyValues() local
937 for(; aIter != aEnd; pDescriptor++, aIter++) in _getPropertyValues()
939 pDescriptor->sName = (*aIter)->GetName(); in _getPropertyValues()
940 pDescriptor->sExportName = (*aIter)->GetExportName(); in _getPropertyValues()
941 pDescriptor->sSymbolSet = (*aIter)->GetSymbolSetName(); in _getPropertyValues()
942 pDescriptor->nCharacter = static_cast < sal_Int32 > ((*aIter)->GetCharacter()); in _getPropertyValues()
945 pDescriptor->sFontName = rFont.GetName(); in _getPropertyValues()
946 pDescriptor->nCharSet = sal::static_int_cast< sal_Int16 >(rFont.GetCharSet()); in _getPropertyValues()
947 pDescriptor->nFamily = sal::static_int_cast< sal_Int16 >(rFont.GetFamily()); in _getPropertyValues()
948 pDescriptor->nPitch = sal::static_int_cast< sal_Int16 >(rFont.GetPitch()); in _getPropertyValues()
949 pDescriptor->nWeight = sal::static_int_cast< sal_Int16 >(rFont.GetWeight()); in _getPropertyValues()
950 pDescriptor->nItalic = sal::static_int_cast< sal_Int16 >(rFont.GetItalic()); in _getPropertyValues()