Home
last modified time | relevance | path

Searched refs:buf (Results 151 – 175 of 308) sorted by relevance

12345678910>>...13

/trunk/main/unodevtools/source/skeletonmaker/
H A Dcppcompskeleton.cxx85 OStringBuffer buf; in generateNamespace() local
88 buf.append("comp_"); in generateNamespace()
89 buf.append(implname); in generateNamespace()
90 nm = buf.makeStringAndClear(); in generateNamespace()
101 buf.append("::comp_"); in generateNamespace()
102 buf.append(token); in generateNamespace()
106 buf.append("::"); in generateNamespace()
107 buf.append(token); in generateNamespace()
112 nm = buf.makeStringAndClear(); in generateNamespace()
H A Dskeletonmaker.cxx276 OUStringBuffer buf( 64 ); variable
277 buf.appendAscii(RTL_CONSTASCII_STRINGPARAM("unexpected parameter \""));
278 buf.append(arg);
279 buf.appendAscii(RTL_CONSTASCII_STRINGPARAM("\"!"));
280 throw RuntimeException(buf.makeStringAndClear(),
/trunk/main/shell/source/win32/shlxthandler/ooofilt/
H A Dstream_helper.cxx55 uLong ZCALLBACK cb_swrite OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
90 uLong ZCALLBACK cb_sread (voidpf /*opaque*/, voidpf stream, void* buf, uLong size) { in cb_sread() argument
94 hr = ((IStream *)stream)->Read (buf, size, &newsize); in cb_sread()
158 uLong ZCALLBACK cb_swrite (voidpf /*opaque*/, voidpf stream, const void* buf, uLong size) { in cb_swrite() argument
161 hr = ((IStream*)stream)->Write (buf, size, &writecount); in cb_swrite()
/trunk/main/sal/rtl/source/
H A Dustrbuf.c147 sal_Unicode buf[2]; in rtl_uStringbuffer_insertUtf32() local
151 buf[0] = (sal_Unicode) c; in rtl_uStringbuffer_insertUtf32()
155 buf[0] = (sal_Unicode) ((c >> 10) | 0xD800); in rtl_uStringbuffer_insertUtf32()
156 buf[1] = (sal_Unicode) ((c & 0x3FF) | 0xDC00); in rtl_uStringbuffer_insertUtf32()
159 rtl_uStringbuffer_insert(pThis, capacity, offset, buf, len); in rtl_uStringbuffer_insertUtf32()
H A Dbootstrap.cxx915 rtl::OUStringBuffer buf; in expandMacros() local
920 buf.append(c); in expandMacros()
964 buf.append(lookup(file, mode, false, seg[0], requestStack)); in expandMacros()
988 buf.append( in expandMacros()
993 buf.append( in expandMacros()
1005 buf.append( in expandMacros()
1012 buf.append( in expandMacros()
1036 buf.append( in expandMacros()
1043 return buf.makeStringAndClear(); in expandMacros()
/trunk/main/extensions/source/oooimprovement/
H A Dmyconfigurationhelper.cxx56 OUStringBuffer buf(256); in noSuchElement() local
57 buf.appendAscii("The requested path \""); in noSuchElement()
58 buf.append(path); in noSuchElement()
59 buf.appendAscii("\" does not exists."); in noSuchElement()
60 return buf.makeStringAndClear(); in noSuchElement()
/trunk/main/xmlsecurity/tools/demo/
H A Dperformance.cxx584 char buf[32]; in parseFile() local
585 sprintf(buf, "%.2f", diff); in parseFile()
772 char buf[32]; in transfer_without_sec() local
773 sprintf(buf, "%.2f", diff); in transfer_without_sec()
774 ouMessage += rtl::OUString(RTL_ASCII_USTRINGPARAM(buf)); in transfer_without_sec()
902 char buf[16]; in SignatureEntity() local
904 sprintf(buf, "%d", m_nSecurityId); in SignatureEntity()
908 sprintf(buf, "%d", m_nSignatureElementCollectorId); in SignatureEntity()
941 char buf[16]; in SignatureEntity() local
943 sprintf(buf, "%d", m_nSecurityId); in SignatureEntity()
[all …]
/trunk/main/stoc/source/uriproc/
H A DUriSchemeParser_vndDOTsunDOTstarDOTscript.cxx79 rtl::OUStringBuffer buf; in parsePart() local
88 buf.append(static_cast< sal_Unicode >(n)); in parsePart()
130 buf.append(static_cast< sal_Unicode >(encoded)); in parsePart()
132 buf.append(static_cast< sal_Unicode >( in parsePart()
134 buf.append(static_cast< sal_Unicode >( in parsePart()
142 buf.append(c); in parsePart()
146 return buf.makeStringAndClear(); in parsePart()
H A DUriReferenceFactory.cxx385 rtl::OUStringBuffer buf; in parse() local
386 buf.appendAscii( in parse()
391 buf.append(toLowerCase(c)); in parse()
393 buf.appendAscii(RTL_CONSTASCII_STRINGPARAM("PLUS")); in parse()
395 buf.appendAscii(RTL_CONSTASCII_STRINGPARAM("HYPHEN")); in parse()
397 buf.appendAscii(RTL_CONSTASCII_STRINGPARAM("DOT")); in parse()
400 buf.append(c); in parse()
403 serviceName = buf.makeStringAndClear(); in parse()
/trunk/main/bridges/source/cpp_uno/msvc_win64_x86-64/
H A Dexcept.cxx605 OUStringBuffer buf; in mscx_filterCppException() local
606 buf.appendAscii( in mscx_filterCppException()
610 buf.append( aUNOname ); in mscx_filterCppException()
611 buf.appendAscii( RTL_CONSTASCII_STRINGPARAM( in mscx_filterCppException()
613 buf.append( aRTTIname ); in mscx_filterCppException()
614 buf.appendAscii( RTL_CONSTASCII_STRINGPARAM("\"!") ); in mscx_filterCppException()
616 buf.makeStringAndClear(), Reference< XInterface >() ); in mscx_filterCppException()
/trunk/main/soltools/mkdepend/
H A Dmain.c663 buf[ OURBUFSIZ ]; local
702 while (!found && fgets(buf, OURBUFSIZ, fdin)) {
703 if (*buf == '#' && strncmp(line, buf, len) == 0)
705 fputs(buf, fdout);
713 while (fgets(buf, OURBUFSIZ, fdin)) {
714 fputs(buf, fdout);
H A Dinclude.c236 char buf[ BUFSIZ ], **pp; local
238 sprintf(buf, "%s%s%s", dir, *dir ? "/" : "", component);
240 if (strcmp(*pp, buf) == 0)
242 if (lstat(buf, &st) == 0
244 *pp++ = copy(buf);
/trunk/main/extensions/source/update/feed/
H A Dupdatefeed.cxx346 rtl::OUStringBuffer buf; in UpdateInformationProvider() local
347 buf.append( in UpdateInformationProvider()
352 buf.append(sal_Unicode(' ')); in UpdateInformationProvider()
353 buf.append( in UpdateInformationProvider()
364 buf.append(sal_Unicode(' ')); in UpdateInformationProvider()
365 buf.append(edition); in UpdateInformationProvider()
373 buf.append(sal_Unicode(' ')); in UpdateInformationProvider()
374 buf.append(extension); in UpdateInformationProvider()
376 rtl::OUString product(buf.makeStringAndClear()); in UpdateInformationProvider()
/trunk/main/sfx2/source/doc/
H A DSfxDocumentMetaData.cxx539 ::rtl::OUStringBuffer buf; in dateToText()
540 ::sax::Converter::convertDate(buf, i_rd); in dateToText()
541 return buf.makeStringAndClear(); in dateToText()
553 ::rtl::OUStringBuffer buf; in dateTimeToText()
555 return buf.makeStringAndClear(); in dateTimeToText()
591 ::rtl::OUStringBuffer buf; in durationToText()
593 return buf.makeStringAndClear(); in durationToText()
910 ::rtl::OUStringBuffer buf; in propsToStrings()
963 ::rtl::OUStringBuffer buf; in propsToStrings()
1777 ::rtl::OUStringBuffer buf; in setDocumentStatistics()
[all …]
/trunk/main/crashrep/source/unx/
H A Dmain.cxx287 char buf[1024]; in save_crash_report() local
289 while (fgets(buf, sizeof(buf), fpin) != NULL) in save_crash_report()
291 fputs(buf, fpout); in save_crash_report()
539 char buf[1024]; in append_file() local
546 while (fgets(buf, sizeof(buf), fp) != NULL) in append_file()
548 rString.append( buf ); in append_file()
/trunk/main/desktop/source/deployment/misc/
H A Ddp_platform.cxx107 ::rtl::OUStringBuffer buf; in operator ()()
108 buf.append( StrOperatingSystem::get() ); in operator ()()
109 buf.append( static_cast<sal_Unicode>('_') ); in operator ()()
112 buf.append( arch ); in operator ()()
113 return buf.makeStringAndClear(); in operator ()()
/trunk/main/jvmfwk/source/
H A Dfwkutil.hxx52 ::rtl::OUStringBuffer buf(256); in operator ()()
53 buf.append(getLibraryLocation()); in operator ()()
54 buf.appendAscii(SAL_CONFIGFILE("/jvmfwk3")); in operator ()()
55 ::rtl::OUString sIni = buf.makeStringAndClear(); in operator ()()
/trunk/main/icc/source/create_sRGB_profile/
H A Dcreate_sRGB_profile.cpp182 char buf[64]; in dumpTag() local
189 … fprintf(outfile, "\nContents of %s tag (%s)\n", Fmt.GetTagSigName(sig), icGetSig(buf, sig)); in dumpTag()
199 fprintf(outfile, "Tag (%s) not found in profile\n", icGetSig(buf, sig)); in dumpTag()
215 char buf[64]; in dumpProfile() local
231 fprintf(outfile,"Creator: %s\n", icGetSig(buf, pHdr->creator)); in dumpProfile()
256 icGetSig(buf, i->TagInfo.sig, false), in dumpProfile()
/trunk/main/l10ntools/source/
H A Dexport2.cxx360 char* buf = aScopedBuffer.get(); in CopyFile() local
367 const size_t nBytesRead = fread( buf, 1, BUFFERSIZE, IN_FILE ); in CopyFile()
376 else if( fwrite( buf, 1, nBytesRead, OUT_FILE ) <= 0 ) in CopyFile()
572 char buf[20]; in GetTimeStamp() local
575 snprintf(buf, sizeof(buf), "%8d %02d:%02d:%02d", int(Date().GetDate()), in GetTimeStamp()
577 return ByteString(buf); in GetTimeStamp()
/trunk/main/filter/source/placeware/
H A Dzip.cxx95 char buf[2048]; in copyAndCRC() local
102 mnRC = rFile.read( buf, sizeof(buf), n ); in copyAndCRC()
109 e->crc = rtl_crc32( e->crc, (const void *) buf, nTemp ); in copyAndCRC()
110 mnRC = mrFile.write( buf, n, nWritten ); in copyAndCRC()
/trunk/main/vcl/workben/
H A Dsvpclient.cxx242 char buf[256]; in processCommand() local
246 nBytes = read( nSocket, buf, sizeof(buf) ); in processCommand()
247 aAnswer.append( buf, nBytes ); in processCommand()
248 } while( nBytes == sizeof( buf ) ); in processCommand()
/trunk/main/writerfilter/source/rtftok/
H A DRTFScanner.skl396 #define YY_INPUT(buf,result,max_size) \
399 {result=yyin->read(buf, max_size);}
708 int yyFlexLexer::LexerInput( char* buf, int max_size )
717 memcpy(buf, _buffer, len);
729 // (void) yyout->write( buf, size );
1327 char *buf;
1333 buf = (char *) yy_flex_alloc( n );
1334 if ( ! buf )
1338 buf[i] = bytes[i];
1340 buf[len] = buf[len+1] = YY_END_OF_BUFFER_CHAR;
[all …]
/trunk/main/bridges/source/cpp_uno/gcc3_freebsd_x86-64/
H A Duno2cpp.cxx402 OUStringBuffer buf; in cpp_call() local
403 buf.appendAscii(RTL_CONSTASCII_STRINGPARAM("C++ code threw ")); in cpp_call()
404 appendCString(buf, typeid(e).name()); in cpp_call()
405 buf.appendAscii(RTL_CONSTASCII_STRINGPARAM(": ")); in cpp_call()
406 appendCString(buf, e.what()); in cpp_call()
408 buf.makeStringAndClear(), Reference< XInterface >()); in cpp_call()
/trunk/main/bridges/source/cpp_uno/gcc3_linux_x86-64/
H A Duno2cpp.cxx396 OUStringBuffer buf; in cpp_call() local
397 buf.appendAscii(RTL_CONSTASCII_STRINGPARAM("C++ code threw ")); in cpp_call()
398 appendCString(buf, typeid(e).name()); in cpp_call()
399 buf.appendAscii(RTL_CONSTASCII_STRINGPARAM(": ")); in cpp_call()
400 appendCString(buf, e.what()); in cpp_call()
402 buf.makeStringAndClear(), Reference< XInterface >()); in cpp_call()
/trunk/main/bridges/source/cpp_uno/s5abi_macosx_x86-64/
H A Duno2cpp.cxx397 OUStringBuffer buf; in cpp_call() local
398 buf.appendAscii(RTL_CONSTASCII_STRINGPARAM("C++ code threw ")); in cpp_call()
399 appendCString(buf, typeid(e).name()); in cpp_call()
400 buf.appendAscii(RTL_CONSTASCII_STRINGPARAM(": ")); in cpp_call()
401 appendCString(buf, e.what()); in cpp_call()
403 buf.makeStringAndClear(), Reference< XInterface >()); in cpp_call()

Completed in 171 milliseconds

12345678910>>...13