Home
last modified time | relevance | path

Searched refs:buff (Results 1 – 25 of 58) sorted by relevance

123

/trunk/main/filter/source/config/tools/merge/
H A DpyAltFCFGMerge98 buff = []
104 buff.append('\\t')
106 buff.append('\\n')
108 buff.append('\\r')
122 buff.append(c)
126 return ''.join(buff)
132 buff = []
167 buff.append(c)
175 return ''.join(buff)
205 def load(self, buff): argument
[all …]
/trunk/main/registry/source/
H A Dreflwrit.cxx121 buff += writeUINT16(buff, (sal_uInt16) v[i]); in writeString()
137 buff += readUINT16(buff, aChar); in readString()
297 buff += writeUINT32(buff, getBlopSize()); in toBlop()
298 buff += writeUINT16(buff, (sal_uInt16) m_tag); in toBlop()
306 buff += writeBYTE(buff, m_value.aConst.aByte); in toBlop()
309 buff += writeINT16(buff, m_value.aConst.aShort); in toBlop()
315 buff += writeINT32(buff, m_value.aConst.aLong); in toBlop()
321 buff += writeUINT64(buff, m_value.aConst.aHyper); in toBlop()
324 buff += writeUINT64(buff, m_value.aConst.aUHyper); in toBlop()
327 buff += writeFloat(buff, m_value.aConst.aFloat); in toBlop()
[all …]
/trunk/main/extensions/test/ole/cpnt/
H A Dcpnt.cxx1280 char buff[1024]; in methodStruct() local
1281 buff[0]= 0; in methodStruct()
1308 char buff[1024]; in setAttrStruct() local
1309 buff[0]= 0; in setAttrStruct()
1338 char buff[256]; in in_float() local
1453 char buff[1024]; in testInterface() local
1654 char buff[1024]; in testInterface() local
1668 char buff[1023]; in testInterface() local
1703 char buff[1024]; in testInterface() local
1712 char buff[1024]; in testInterface() local
[all …]
/trunk/main/setup_native/source/win32/customactions/reg4msdoc/
H A Dregistryw9x.cxx143 char buff[1024]; in GetSubKeyNames() local
144 DWORD buff_size = sizeof(buff); in GetSubKeyNames()
154 m_hSubKey, i, buff, &buff_size, in GetSubKeyNames()
161 buff_size = sizeof(buff); in GetSubKeyNames()
181 char buff[1024]; in GetSubValueNames() local
198 buff_size = sizeof(buff); in GetSubValueNames()
221 char buff[MAX_TMP_BUFF_SIZE]; in GetValue() local
222 DWORD size = sizeof(buff); in GetValue()
229 reinterpret_cast<LPBYTE>(buff), in GetValue()
271 char buff[MAX_TMP_BUFF_SIZE]; in GetValue() local
[all …]
H A Dregistrywnt.cxx148 wchar_t buff[1024]; in GetSubKeyNames() local
149 DWORD buff_size = sizeof(buff); in GetSubKeyNames()
166 buff_size = sizeof(buff); in GetSubKeyNames()
168 key_names->push_back(buff); in GetSubKeyNames()
190 wchar_t buff[1024]; in GetSubValueNames() local
207 buff_size = sizeof(buff); in GetSubValueNames()
209 value_names->push_back(buff); in GetSubValueNames()
234 wchar_t buff[MAX_TMP_BUFF_SIZE]; in GetValue() local
235 DWORD size = sizeof(buff); in GetValue()
242 reinterpret_cast<LPBYTE>(buff), in GetValue()
[all …]
H A Dstringconverter.cxx43 char* buff = reinterpret_cast<char*>(_alloca(len)); in UnicodeToAnsiString() local
46 CP_ACP, 0, UniString.c_str(), -1, buff, len, 0, 0); in UnicodeToAnsiString()
48 return std::string(buff); in UnicodeToAnsiString()
58 wchar_t* buff = reinterpret_cast<wchar_t*>(_alloca(len * sizeof(wchar_t))); in AnsiToUnicodeString() local
61 CP_ACP, 0, AnsiString.c_str(), -1, buff, len); in AnsiToUnicodeString()
63 return std::wstring(buff); in AnsiToUnicodeString()
/trunk/main/setup_native/source/win32/customactions/quickstarter/
H A Dquickstarter.cxx43 LPTSTR buff = reinterpret_cast<LPTSTR>(_alloca(nbytes)); in GetOfficeInstallationPath() local
44 ZeroMemory(buff, nbytes); in GetOfficeInstallationPath()
46 progpath = buff; in GetOfficeInstallationPath()
61 LPTSTR buff = reinterpret_cast<LPTSTR>(_alloca(nbytes)); in GetOfficeProductName() local
62 ZeroMemory(buff, nbytes); in GetOfficeProductName()
63 MsiGetProperty(handle, TEXT("ProductName"), buff, &sz); in GetOfficeProductName()
64 productname = buff; in GetOfficeProductName()
80 ZeroMemory(buff, nbytes); in GetQuickstarterLinkName()
82 quickstarterlinkname = buff; in GetQuickstarterLinkName()
89 ZeroMemory(buff, nbytes); in GetQuickstarterLinkName()
[all …]
/trunk/main/scripting/java/com/sun/star/script/framework/provider/
H A DPathUtils.java69 …StringBuffer buff = new StringBuffer( baseUrl.length() + url.length() ); buff.append( baseU… in make_url() local
73 if ( buff.charAt( buff.length() - 1 ) != '/' ) in make_url()
75 buff.append('/'); in make_url()
77 buff.append( java.net.URLEncoder.encode( (String)t.nextElement() ) ); } in make_url()
78 return buff.toString(); in make_url()
/trunk/main/extensions/test/ole/unoTocomCalls/XCallback_Impl/
H A DCallback.cpp66 char buff[1024]; in outValuesMixed() local
68 sprintf( buff, "param1: %d, param2 out: %d, param3: %S", val, *pval, string); in outValuesMixed()
69 MessageBox( NULL, A2T(buff), A2T("XCallback_Impl.Callback"), MB_OK); in outValuesMixed()
365 char buff[256]; in inoutChar() local
366 sprintf( buff, "character value: %C", *inoutVal); in inoutChar()
367 MessageBox( NULL, A2T(buff), _T("XCallback_Impl.Callback"), MB_OK); in inoutChar()
461 char buff[1024]; in inValues() local
462 sprintf( buff, "Parameters: char= %C, long= %d, string= %s", _char, aLong, W2A(aString)); in inValues()
463 MessageBox( NULL, A2T(buff), _T("XCallback_Impl.Callback"), MB_OK); in inValues()
/trunk/main/scripting/workben/installer/
H A DExecCmd.java44 String buff = null; in exec()
45 while ((buff = br_in.readLine()) != null) in exec()
47 System.out.println("Process out :" + buff); in exec()
79 String buff = null; in exec()
80 while ((buff = br_err.readLine()) != null) { in exec()
81 System.out.println("Process err :" + buff); in exec()
/trunk/main/xmerge/java/pexcel/src/main/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/formula/
H A DFormulaParser.java482 StringBuffer buff = new StringBuffer(); in expression() local
486 buff.append(look); in expression()
493 tokenVector.add(tokenFactory.getOperandToken(buff.toString(), "STRING")); in expression()
548 StringBuffer buff = new StringBuffer(); in makeErrorString() local
550 buff.append(' '); in makeErrorString()
553 buff.append('^'); in makeErrorString()
554 return "\n\t" + formulaStr + "\n\t" + buff.toString(); in makeErrorString()
/trunk/main/setup_native/source/win32/customactions/regactivex/
H A Dregactivex.cxx69 char* buff = reinterpret_cast<char*>( malloc( len ) ); in UnicodeToAnsiString() local
72 CP_ACP, 0, pUniString, -1, buff, len, 0, 0 ); in UnicodeToAnsiString()
74 return buff; in UnicodeToAnsiString()
154 wchar_t* buff = reinterpret_cast<wchar_t*>( malloc( nbytes ) ); in GetMsiProp() local
155 ZeroMemory( buff, nbytes ); in GetMsiProp()
156 MsiGetProperty( hMSI, pPropName, buff, &sz ); in GetMsiProp()
157 *ppValue = buff; in GetMsiProp()
/trunk/main/shell/source/tools/lngconvex/
H A Dlngconvex.cxx383 char buff[3]; in read_ulf_file() local
384 in.read(&buff[0], 3); in read_ulf_file()
386 if (memcmp(buff, BOM, 3) != 0) in read_ulf_file()
469 char buff[10]; in start_language_section() local
481 _itoa(primLangID, buff, 16); in start_language_section()
482 lang_section += std::string("0x") + std::string(buff); in start_language_section()
486 _itoa(subLangID, buff, 16); in start_language_section()
488 lang_section += std::string("0x") + std::string(buff); in start_language_section()
/trunk/main/sal/workben/clipboardwben/testcopy/
H A DXTDataObject.cxx138 char buff[] = "Hello World, How are you!"; in GetData() local
144 hr = lpStream->Write( buff, sizeof( buff ) * sizeof( char ), NULL ); in GetData()
165 WCHAR buff[] = L"Hello World, How are you!"; in GetData() local
171 hr = lpStream->Write( buff, sizeof( buff ) * sizeof( WCHAR ), NULL ); in GetData()
H A Dcbcpytest.cxx377 TCHAR buff[6]; in PasteData() local
378 int cbWritten = GetLocaleInfo( lcid, LOCALE_IDEFAULTANSICODEPAGE, buff, sizeof( buff ) ); in PasteData()
379 cbWritten = GetLocaleInfo( lcid, LOCALE_IDEFAULTCODEPAGE, buff, sizeof( buff ) ); in PasteData()
/trunk/main/scripting/java/org/openoffice/netbeans/modules/office/actions/
H A DParcelFolderSupport.java232 StringBuffer buff = new StringBuffer(classpath); in getConfigureClasspath() local
233 buff.delete(0,1); in getConfigureClasspath()
234 buff.delete( buff.length() - 1, buff.length() ); in getConfigureClasspath()
235 classpath = buff.toString(); in getConfigureClasspath()
/trunk/main/sw/qa/core/
H A DTest-BigPtrArray.cxx638 char buff[100] = { 0 }; in test_insert_at_end() local
639 strcat(buff, "test_insert_at_end "); in test_insert_at_end()
640 strcat(buff, numElements); in test_insert_at_end()
642 PerformanceTracer tracer(buff); in test_insert_at_end()
652 char buff[100] = { 0 }; in test_insert_at_front() local
653 strcat(buff, "test_insert_at_front "); in test_insert_at_front()
654 strcat(buff, numElements); in test_insert_at_front()
656 PerformanceTracer tracer(buff); in test_insert_at_front()
/trunk/main/setup_native/source/win32/customactions/languagepacks/
H A Dlngpckinsthelper.cxx76 CharacterBuffer_t buff(lLongestSubKey + 1); in FindProductInstallationPath() local
80 buff[0] = 0; in FindProductInstallationPath()
81 LONG ret = RegEnumKey(hkey, i, &buff[0], buff.size()); in FindProductInstallationPath()
87 if (RegOpenKey(hkey, &buff[0], &hSubKey) != ERROR_SUCCESS) in FindProductInstallationPath()
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/util/
H A DDebug.java320 StringBuffer buff = new StringBuffer(); in byteArrayToHexString() local
327 buff.append('0'); in byteArrayToHexString()
328 buff.append(str); in byteArrayToHexString()
329 buff.append(' '); in byteArrayToHexString()
332 return buff.toString(); in byteArrayToHexString()
/trunk/main/setup_native/source/win32/customactions/shellextensions/
H A Dupgrade.cxx73 char* buff = reinterpret_cast<char*>(_alloca(str.length())); in Invert() local
74 strncpy(buff, str.c_str(), str.length()); in Invert()
76 char* front = buff; in Invert()
77 char* back = buff + str.length() - 1; in Invert()
82 return string(buff, str.length()); in Invert()
/trunk/main/ucb/source/ucp/ftp/
H A Dtest_ftpurl.cxx257 char buff[bffsz]; in test_ftpopen() local
261 rtl_zeroMemory((void*)buff,bffsz); in test_ftpopen()
262 fread(buff,bffsz-1,1,file); in test_ftpopen()
263 nbuf = strlen(buff); in test_ftpopen()
266 strncat(dest,buff,nbuf); in test_ftpopen()
/trunk/main/extensions/test/ole/OleClient/
H A DclientTest.cxx1084 char buff[1024]; in doTest() local
1261 MessageBox( NULL, buff, _T("clientTest"), MB_OK); in doTest()
1267 MessageBox( NULL, buff, _T("clientTest"), MB_OK); in doTest()
1273 MessageBox( NULL, buff, _T("clientTest"), MB_OK); in doTest()
1278 sprintf(buff, "MFC outFloat %f", *(float*)anyOut.getValue()); in doTest()
1279 MessageBox( NULL, buff, _T("clientTest"), MB_OK); in doTest()
1284 sprintf(buff, "MFC outFloat %f", *(double*)anyOut.getValue()); in doTest()
1285 MessageBox( NULL, buff, _T("clientTest"), MB_OK); in doTest()
1292 MessageBox( NULL, buff, _T("clientTest"), MB_OK); in doTest()
1302 sprintf(buff, "MFC outObject, property: %S", tmpStr.getStr()); in doTest()
[all …]
/trunk/main/setup_native/source/win32/customactions/regpatchactivex/
H A Dregpatchactivex.cxx61 wchar_t* buff = reinterpret_cast<wchar_t*>( malloc( nbytes ) ); in GetMsiProp() local
62 ZeroMemory( buff, nbytes ); in GetMsiProp()
63 MsiGetProperty( hMSI, pPropName, buff, &sz ); in GetMsiProp()
64 *ppValue = buff; in GetMsiProp()
/trunk/main/dtrans/source/win32/misc/
H A DImplHelper.cxx122 char buff[6]; in getWinCPFromLocaleId() local
124 lcid, lctype | LOCALE_USE_CP_ACP, buff, sizeof( buff ) ); in getWinCPFromLocaleId()
131 CP_ACP, 0, buff, -1, NULL, 0 ); in getWinCPFromLocaleId()
140 CP_ACP, 0, buff, -1, reinterpret_cast<LPWSTR>(lpwchBuff.get( )), len ); in getWinCPFromLocaleId()
/trunk/main/pyuno/zipcore/
H A Dpython.cxx182 WCHAR *buff = new WCHAR[nNeededWStrBuffSize+1]; local
183 MultiByteToWideChar(CP_ACP, 0, argv[i], -1, buff, nNeededWStrBuffSize);
184 buff[nNeededWStrBuffSize] = 0;
185 cp = encode(cp, buff);
186 delete [] buff;

Completed in 147 milliseconds

123