Lines Matching refs:nTemp
43 sal_uInt16 nTemp; in StoreFont() local
46 nTemp = (sal_uInt16)rFont.GetFamily(); rStream << nTemp; in StoreFont()
49 …nTemp = (sal_uInt16)GetSOStoreTextEncoding((rtl_TextEncoding)rFont.GetCharSet(), (sal_uInt16)rStre… in StoreFont()
50 rStream << nTemp; in StoreFont()
52 nTemp = (sal_uInt16)rFont.GetPitch(); rStream << nTemp; in StoreFont()
53 nTemp = (sal_uInt16)rFont.GetAlign(); rStream << nTemp; in StoreFont()
54 nTemp = (sal_uInt16)rFont.GetWeight(); rStream << nTemp; in StoreFont()
55 nTemp = (sal_uInt16)rFont.GetUnderline(); rStream << nTemp; in StoreFont()
56 nTemp = (sal_uInt16)rFont.GetStrikeout(); rStream << nTemp; in StoreFont()
57 nTemp = (sal_uInt16)rFont.GetItalic(); rStream << nTemp; in StoreFont()
74 sal_uInt16 nTemp; in CreateFont() local
75 rStream >> nTemp; aFont.SetFamily((FontFamily)nTemp); in CreateFont()
78 rStream >> nTemp; in CreateFont()
79 …nTemp = (sal_uInt16)GetSOLoadTextEncoding((rtl_TextEncoding)nTemp, (sal_uInt16)rStream.GetVersion(… in CreateFont()
80 aFont.SetCharSet((rtl_TextEncoding)nTemp); in CreateFont()
82 rStream >> nTemp; aFont.SetPitch((FontPitch)nTemp); in CreateFont()
83 rStream >> nTemp; aFont.SetAlign((FontAlign)nTemp); in CreateFont()
84 rStream >> nTemp; aFont.SetWeight((FontWeight)nTemp); in CreateFont()
85 rStream >> nTemp; aFont.SetUnderline((FontUnderline)nTemp); in CreateFont()
86 rStream >> nTemp; aFont.SetStrikeout((FontStrikeout)nTemp); in CreateFont()
87 rStream >> nTemp; aFont.SetItalic((FontItalic)nTemp); in CreateFont()