Lines Matching refs:nValue

181                         sal_Int8 nValue = 0;  in propertysetToString()  local
182 aAny >>= nValue; in propertysetToString()
184 snprintf(buffer, sizeof(buffer), "%d", nValue); in propertysetToString()
191 sal_Int16 nValue = 0; in propertysetToString() local
192 aAny >>= nValue; in propertysetToString()
194 snprintf(buffer, sizeof(buffer), "%d", nValue); in propertysetToString()
201 sal_Int32 nValue = 0; in propertysetToString() local
202 aAny >>= nValue; in propertysetToString()
204 snprintf(buffer, sizeof(buffer), "%" SAL_PRIdINT32, nValue); in propertysetToString()
211 float nValue = 0.0; in propertysetToString() local
212 aAny >>= nValue; in propertysetToString()
214 snprintf(buffer, sizeof(buffer), "%f", nValue); in propertysetToString()
221 double nValue = 0.0; in propertysetToString() local
222 aAny >>= nValue; in propertysetToString()
224 snprintf(buffer, sizeof(buffer), "%lf", nValue); in propertysetToString()
231 sal_Bool nValue = sal_False; in propertysetToString() local
232 aAny >>= nValue; in propertysetToString()
234 if (nValue) in propertysetToString()
254 text::TextContentAnchorType nValue; in propertysetToString() local
255 aAny >>= nValue; in propertysetToString()
257 switch (nValue) in propertysetToString()
311 drawing::FillStyle nValue; in propertysetToString() local
312 aAny >>= nValue; in propertysetToString()
314 switch (nValue) in propertysetToString()
341 drawing::BitmapMode nValue; in propertysetToString() local
342 aAny >>= nValue; in propertysetToString()
344 switch (nValue) in propertysetToString()