Lines Matching refs:aSourceCode

149     OUStringBuffer aSourceCode;  in readSourceCode()  local
170 aSourceCode.appendAscii( RTL_CONSTASCII_STRINGPARAM( "Rem " ) ); in readSourceCode()
171 aSourceCode.append( aCodeLine ).append( sal_Unicode( '\n' ) ); in readSourceCode()
176 return aSourceCode.makeStringAndClear(); in readSourceCode()
188 OUStringBuffer aSourceCode; in createModule() local
189 aSourceCode.appendAscii( RTL_CONSTASCII_STRINGPARAM( "Rem Attribute VBA_ModuleType=" ) ); in createModule()
193 aSourceCode.appendAscii( RTL_CONSTASCII_STRINGPARAM( "VBAModule" ) ); in createModule()
196 aSourceCode.appendAscii( RTL_CONSTASCII_STRINGPARAM( "VBAClassModule" ) ); in createModule()
199 aSourceCode.appendAscii( RTL_CONSTASCII_STRINGPARAM( "VBAFormModule" ) ); in createModule()
204 aSourceCode.appendAscii( RTL_CONSTASCII_STRINGPARAM( "VBADocumentModule" ) ); in createModule()
215 aSourceCode.appendAscii( RTL_CONSTASCII_STRINGPARAM( "VBAUnknown" ) ); in createModule()
217 aSourceCode.append( sal_Unicode( '\n' ) ); in createModule()
220 aSourceCode.appendAscii( RTL_CONSTASCII_STRINGPARAM( "Option VBASupport 1\n" ) ); in createModule()
222 aSourceCode.appendAscii( RTL_CONSTASCII_STRINGPARAM( "Option ClassModule\n" ) ); in createModule()
227 aSourceCode.appendAscii( RTL_CONSTASCII_STRINGPARAM( "Sub " ) ). in createModule()
232 aSourceCode.append( rVBASourceCode ); in createModule()
236 aSourceCode.appendAscii( RTL_CONSTASCII_STRINGPARAM( "End Sub\n" ) ); in createModule()
251 rxBasicLib->insertByName( maName, Any( aSourceCode.makeStringAndClear() ) ); in createModule()