Lines Matching refs:rName

67 											const rtl::OUString& rName) const  in CallTypeFunction()
70 ManipulateSetting( aAny, rName ); in CallTypeFunction()
87 exportBool(::cppu::any2bool(aAny), rName); in CallTypeFunction()
94 exportByte(nInt8, rName); in CallTypeFunction()
101 exportShort(nInt16, rName); in CallTypeFunction()
108 exportInt(nInt32, rName); in CallTypeFunction()
115 exportLong(nInt64, rName); in CallTypeFunction()
122 exportDouble(fDouble, rName); in CallTypeFunction()
129 exportString(sString, rName); in CallTypeFunction()
139 exportSequencePropertyValue(aProps, rName); in CallTypeFunction()
145 exportbase64Binary(aProps, rName); in CallTypeFunction()
152 exportNameAccess(aNamed, rName); in CallTypeFunction()
159 exportIndexAccess(aIndexed, rName); in CallTypeFunction()
165 exportDateTime(aDateTime, rName); in CallTypeFunction()
169 exportForbiddenCharacters( aAny, rName ); in CallTypeFunction()
175 exportSymbolDescriptors(aProps, rName); in CallTypeFunction()
185 void XMLSettingsExportHelper::exportBool(const sal_Bool bValue, const rtl::OUString& rName) const in exportBool()
187 DBG_ASSERT(rName.getLength(), "no name"); in exportBool()
188 m_rContext.AddAttribute( XML_NAME, rName ); in exportBool()
200 void XMLSettingsExportHelper::exportByte(const sal_Int8 nValue, const rtl::OUString& rName) const in exportByte()
203 DBG_ASSERT(rName.getLength(), "no name"); in exportByte()
204 m_rContext.AddAttribute( XML_NAME, rName ); in exportByte()
212 (void) nValue; (void) rName; in exportByte()
219 void XMLSettingsExportHelper::exportShort(const sal_Int16 nValue, const rtl::OUString& rName) const in exportShort()
221 DBG_ASSERT(rName.getLength(), "no name"); in exportShort()
222 m_rContext.AddAttribute( XML_NAME, rName ); in exportShort()
231 void XMLSettingsExportHelper::exportInt(const sal_Int32 nValue, const rtl::OUString& rName) const in exportInt()
233 DBG_ASSERT(rName.getLength(), "no name"); in exportInt()
234 m_rContext.AddAttribute( XML_NAME, rName ); in exportInt()
243 void XMLSettingsExportHelper::exportLong(const sal_Int64 nValue, const rtl::OUString& rName) const in exportLong()
245 DBG_ASSERT(rName.getLength(), "no name"); in exportLong()
246 m_rContext.AddAttribute( XML_NAME, rName ); in exportLong()
254 void XMLSettingsExportHelper::exportDouble(const double fValue, const rtl::OUString& rName) const in exportDouble()
256 DBG_ASSERT(rName.getLength(), "no name"); in exportDouble()
257 m_rContext.AddAttribute( XML_NAME, rName ); in exportDouble()
266 void XMLSettingsExportHelper::exportString(const rtl::OUString& sValue, const rtl::OUString& rName)… in exportString()
268 DBG_ASSERT(rName.getLength(), "no name"); in exportString()
269 m_rContext.AddAttribute( XML_NAME, rName ); in exportString()
277 …ettingsExportHelper::exportDateTime(const util::DateTime& aValue, const rtl::OUString& rName) const in exportDateTime()
279 DBG_ASSERT(rName.getLength(), "no name"); in exportDateTime()
280 m_rContext.AddAttribute( XML_NAME, rName ); in exportDateTime()
291 const rtl::OUString& rName) const in exportSequencePropertyValue()
293 DBG_ASSERT(rName.getLength(), "no name"); in exportSequencePropertyValue()
297 m_rContext.AddAttribute( XML_NAME, rName ); in exportSequencePropertyValue()
306 const rtl::OUString rName) const in exportSymbolDescriptors()
363 exportIndexAccess( xIA, rName ); in exportSymbolDescriptors()
369 const rtl::OUString& rName) const in exportbase64Binary()
371 DBG_ASSERT(rName.getLength(), "no name"); in exportbase64Binary()
373 m_rContext.AddAttribute( XML_NAME, rName ); in exportbase64Binary()
386 const rtl::OUString& rName, in exportMapEntry() argument
389 DBG_ASSERT((bNameAccess && rName.getLength()) || !bNameAccess, "no name"); in exportMapEntry()
396 m_rContext.AddAttribute( XML_NAME, rName ); in exportMapEntry()
406 const rtl::OUString& rName) const in exportNameAccess()
408 DBG_ASSERT(rName.getLength(), "no name"); in exportNameAccess()
413 m_rContext.AddAttribute( XML_NAME, rName ); in exportNameAccess()
424 const rtl::OUString rName) const in exportIndexAccess()
426 DBG_ASSERT(rName.getLength(), "no name"); in exportIndexAccess()
432 m_rContext.AddAttribute( XML_NAME, rName ); in exportIndexAccess()
445 const rtl::OUString rName) const in exportForbiddenCharacters()
506 exportIndexAccess( xIA, rName ); in exportForbiddenCharacters()
513 const rtl::OUString& rName) const in exportAllSettings()
515 DBG_ASSERT(rName.getLength(), "no name"); in exportAllSettings()
516 exportSequencePropertyValue(aProps, rName); in exportAllSettings()
524 void XMLSettingsExportHelper::ManipulateSetting( uno::Any& rAny, const rtl::OUString& rName ) const in ManipulateSetting()
526 if( rName == msPrinterIndependentLayout ) in ManipulateSetting()
539 …else if( (rName == msColorTableURL) || (rName == msLineEndTableURL) || (rName == msHatchTableURL) … in ManipulateSetting()
540 (rName == msDashTableURL) || (rName == msGradientTableURL) || (rName == msBitmapTableURL ) ) in ManipulateSetting()