Home
last modified time | relevance | path

Searched refs:buffer (Results 151 – 175 of 456) sorted by relevance

12345678910>>...19

/trunk/main/l10ntools/source/
H A Dtreeconfig.cxx122 char buffer[64000]; in getCurrentDir() local
123 if( getcwd( buffer , sizeof( buffer ) ) == 0 ){ in getCurrentDir()
127 dir = string( buffer ); in getCurrentDir()
H A Dinireader.cxx142 char* buffer = new char[ str.length()*3 ]; in toStlString() local
143 str.extract( 0 , str.length() , buffer ); in toStlString()
144 stl_str = string( buffer ); in toStlString()
145 delete [] buffer; in toStlString()
/trunk/main/oox/source/core/
H A Drelationshandler.cxx105 rtl::OUStringBuffer buffer; in removeDuplicateSlashes() local
115 buffer.append( sal_Unicode( '/' ) ); in removeDuplicateSlashes()
121 buffer.append( ch ); in removeDuplicateSlashes()
124 return buffer.makeStringAndClear(); in removeDuplicateSlashes()
/trunk/main/setup_native/source/win32/customactions/tools/
H A Dcheckversion.cxx65 TCHAR buffer[1024]; in OutputDebugStringFormat() local
69 StringCchVPrintf( buffer, sizeof(buffer), pFormat, args ); in OutputDebugStringFormat()
70 OutputDebugString( buffer ); in OutputDebugStringFormat()
/trunk/main/setup_native/source/win32/customactions/shellextensions/
H A Dcompleteinstallpath.cxx59 LPTSTR buffer = reinterpret_cast<LPTSTR>(_alloca(nBytes)); in GetMsiProperty() local
60 ZeroMemory( buffer, nBytes ); in GetMsiProperty()
61 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty()
62 result = buffer; in GetMsiProperty()
H A Dpostuninstall.cxx57 LPTSTR buffer = reinterpret_cast<LPTSTR>(_alloca(nBytes)); in GetMsiProperty() local
58 ZeroMemory( buffer, nBytes ); in GetMsiProperty()
59 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty()
60 result = buffer; in GetMsiProperty()
H A Ddotnetcheck.cxx61 LPTSTR buffer = reinterpret_cast<LPTSTR>(_alloca(nBytes)); in GetMsiProperty() local
62 ZeroMemory( buffer, nBytes ); in GetMsiProperty()
63 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty()
64 result = buffer; in GetMsiProperty()
H A Dlayerlinks.cxx61 LPTSTR buffer = reinterpret_cast<LPTSTR>(_alloca(nBytes)); in GetMsiProperty() local
62 ZeroMemory( buffer, nBytes ); in GetMsiProperty()
63 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty()
64 result = buffer; in GetMsiProperty()
H A Dregisterextensions.cxx175 LPTSTR buffer = reinterpret_cast<LPTSTR>(_alloca(nBytes)); in GetMsiProperty() local
176 ZeroMemory( buffer, nBytes ); in GetMsiProperty()
177 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty()
178 result = buffer; in GetMsiProperty()
/trunk/main/codemaker/test/cppumaker/
H A Dtest_codemaker_cppumaker.cxx378 explicit Guard(void * buffer): in Guard()
379 p(new(buffer) test::codemaker::cppumaker::BigStruct) {} in Guard()
389 boost::scoped_array< char > buffer( in TEST() local
394 buffer[i] = '\x56'; in TEST()
396 Guard guard(buffer.get()); in TEST()
/trunk/main/binaryurp/source/
H A Dwriter.cxx423 void Writer::sendMessage(std::vector< unsigned char > const & buffer) { in sendMessage() argument
425 if (buffer.size() > SAL_MAX_UINT32) { in sendMessage()
431 Marshal::write32(&header, static_cast< sal_uInt32 >(buffer.size())); in sendMessage()
433 OSL_ASSERT(!buffer.empty()); in sendMessage()
434 unsigned char const * p = &buffer[0]; in sendMessage()
435 std::vector< unsigned char >::size_type n = buffer.size(); in sendMessage()
H A Dunmarshal.cxx74 std::vector< BinaryAny >::iterator const & it, void * buffer) throw () in copyMemberValues() argument
80 buffer != 0); in copyMemberValues()
88 buffer); in copyMemberValues()
92 static_cast< char * >(buffer) + ctd->pMemberOffsets[j], in copyMemberValues()
104 css::uno::Sequence< sal_Int8 > const & buffer): in Unmarshal()
105 bridge_(bridge), state_(state), buffer_(buffer) in Unmarshal()
/trunk/main/setup_native/source/win32/customactions/languagepacks/
H A Drespintest.cxx61 LPTSTR buffer = reinterpret_cast<LPTSTR>(_alloca(nBytes)); in GetMsiProperty() local
62 ZeroMemory( buffer, nBytes ); in GetMsiProperty()
63 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty()
64 result = buffer; in GetMsiProperty()
/trunk/main/sal/osl/unx/
H A Dmodule.c57 char buffer[PATH_MAX]; in osl_loadModule() local
59 if (UnicodeToText(buffer, PATH_MAX, ustrTmp->buffer, ustrTmp->length)) in osl_loadModule()
60 pModule = osl_loadAsciiModule(buffer, nRtldMode); in osl_loadModule()
/trunk/main/setup_native/source/win32/customactions/relnotes/
H A Drelnotes.cxx45 TCHAR buffer[1024]; in OutputDebugStringFormat() local
49 StringCchVPrintf( buffer, sizeof(buffer), pFormat, args ); in OutputDebugStringFormat()
50 OutputDebugString( buffer ); in OutputDebugStringFormat()
/trunk/main/stoc/test/uriproc/
H A Dtest_uriproc.cxx66 rtl::OUStringBuffer & buffer, T const & value) in append() argument
68 buffer.append(value); in append()
71 template<> void append(rtl::OUStringBuffer & buffer, bool const & value) { in append() argument
72 buffer.append(static_cast< sal_Bool >(value)); in append()
75 template<> void append(rtl::OUStringBuffer & buffer, std::size_t const & value) in append() argument
77 buffer.append(static_cast< sal_Int32 >(value)); in append()
80 template<> void append(rtl::OUStringBuffer & buffer, char const * const & value) in append() argument
82 buffer.appendAscii(value); in append()
/trunk/test/testuno/source/testlib/uno/
H A DTestUtil.java175 StringBuffer buffer = new StringBuffer(); in connectByOperator() local
178 buffer.append(number[i]); in connectByOperator()
180 buffer.append(operator); in connectByOperator()
183 return buffer.toString(); in connectByOperator()
/trunk/main/odk/examples/cpp/remoteclient/
H A Dremoteclient.cxx158 printf( "%s\n", o.pData->buffer ); in run()
164 printf( "%s\n", o.pData->buffer ); in run()
170 printf( "%s\n", o.pData->buffer ); in run()
176 printf( "%s\n", o.pData->buffer ); in run()
/trunk/main/framework/source/fwe/xml/
H A Dsaxnamespacefilter.cxx182 char buffer[32]; in getErrorLineString() local
186 …snprintf( buffer, sizeof(buffer), "Line: %ld - ", static_cast<long>( m_xLocator->getLineNumber() )… in getErrorLineString()
187 return ::rtl::OUString::createFromAscii( buffer ); in getErrorLineString()
/trunk/main/xmlscript/source/xmlflat_imexp/
H A Dxmlbas_import.cxx243 … ::rtl::OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in startChildElement()
248 … ::rtl::OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in startChildElement()
289 … ::rtl::OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in startChildElement()
334 ::rtl::OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in BasicEmbeddedLibraryElement()
489 ::rtl::OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in endElement()
494 ::rtl::OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in endElement()
499 ::rtl::OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in endElement()
/trunk/main/odk/examples/DevelopersGuide/UCB/
H A DDataStreamRetriever.java156 byte[][] buffer = new byte[ 1 ][ 65536 ]; in printStream()
157 int read = data.readSomeBytes( buffer, 65536 ); in printStream()
163 bytes[ i ] = buffer[ 0 ][ i ]; in printStream()
168 read = data.readSomeBytes( buffer, 65536 ); in printStream()
/trunk/main/svx/workben/msview/
H A Dmsview.cxx701 char buffer[1024]; in InsertAtom() local
711 sprintf( buffer, "unknown_0x%04x", rHeader.nRecType ); in InsertAtom()
712 aText += rtl::OUString::createFromAscii( buffer ); in InsertAtom()
715 sprintf( buffer, " (I: %lu L: %lu)", (UINT32)rHeader.nRecVer, (UINT32)rHeader.nRecLen ); in InsertAtom()
716 aText += String( rtl::OUString::createFromAscii( buffer ) ); in InsertAtom()
971 char buffer[512]; in GetAtomText() local
972 sprintf( buffer, "Version = %lu\n\rInstance = %lu\n\rVersionInstance = %lu\n\rLength = %lu\n\r", in GetAtomText()
977 aText = rtl::OUString::createFromAscii( buffer ); in GetAtomText()
/trunk/main/writerfilter/qa/cppunittests/odiapi/
H A DExternalViewLogger.cxx30 #define SNPRINTF(buffer, size, format, args) _snprintf(buffer, size, format, args) argument
32 #define SNPRINTF(buffer, size, format, args) snprintf(buffer, size, format, args) argument
/trunk/main/scripting/source/storage/
H A DScriptInfo.cxx224 …>\n",::rtl::OUStringToOString(m_scriptData.parcelURI , RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in ScriptInfo()
326 RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in getFileSetNames()
343 RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in getFilesInFileSet()
354 RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in getFilesInFileSet()
363 RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in getFilesInFileSet()
/trunk/main/cpputools/source/registercomponent/
H A Dregistercomponent.cxx432 char *buffer = ( char * )rtl_allocateMemory( nLen +1 ); in parseOptions() local
433 if( ! buffer ) in parseOptions()
447 while ( fscanf(cmdFile, "%s", buffer) != EOF ) in parseOptions()
449 rargv[rargc]= (char * )rtl_allocateMemory( strlen( buffer ) +1 ); in parseOptions()
460 strcpy( rargv[rargc] , buffer ); // #100211# - checked in parseOptions()
471 rtl_freeMemory( buffer ); in parseOptions()

Completed in 134 milliseconds

12345678910>>...19