Home
last modified time | relevance | path

Searched refs:aBuffer (Results 76 – 100 of 196) sorted by relevance

12345678

/trunk/main/sw/source/filter/ww8/
H A Ddocxattributeoutput.cxx897 OStringBuffer aBuffer( 25 ); in impl_DateTimeToOString() local
899 aBuffer.append( '-' ); in impl_DateTimeToOString()
902 aBuffer.append( '-' ); in impl_DateTimeToOString()
905 aBuffer.append( 'T' ); in impl_DateTimeToOString()
908 aBuffer.append( ':' ); in impl_DateTimeToOString()
911 aBuffer.append( ':' ); in impl_DateTimeToOString()
914 aBuffer.append( 'Z' ); // we are in UTC in impl_DateTimeToOString()
916 return aBuffer.makeStringAndClear(); in impl_DateTimeToOString()
2174 aBuffer.append( pPrev, pIt - pPrev ); in NumberingLevel()
2175 aBuffer.appendAscii( "%" ); in NumberingLevel()
[all …]
/trunk/main/xmloff/source/core/
H A Dxmluconv.cxx1856 OUStringBuffer aBuffer( nLen ); in encodeStyleName() local
1939 aBuffer.append( c ); in encodeStyleName()
1943 aBuffer.append( static_cast< sal_Unicode >( '_' ) ); in encodeStyleName()
1945 aBuffer.append( static_cast< sal_Unicode >( in encodeStyleName()
1948 aBuffer.append( static_cast< sal_Unicode >( in encodeStyleName()
1951 aBuffer.append( static_cast< sal_Unicode >( in encodeStyleName()
1953 aBuffer.append( static_cast< sal_Unicode >( in encodeStyleName()
1955 aBuffer.append( static_cast< sal_Unicode >( '_' ) ); in encodeStyleName()
1962 if( aBuffer.getLength() > ((1<<15)-1) ) in encodeStyleName()
1964 aBuffer = rName; in encodeStyleName()
[all …]
H A DXMLBase64ImportContext.cxx78 Sequence< sal_Int8 > aBuffer( (sChars.getLength() / 4) * 3 ); in Characters() local
81 decodeBase64SomeChars( aBuffer, sChars ); in Characters()
82 xOut->writeBytes( aBuffer ); in Characters()
/trunk/main/oox/source/xls/
H A Dautofilterbuffer.cxx129 OUStringBuffer aBuffer; in lclConvertWildcardsToRegExp() local
130 aBuffer.ensureCapacity( rValue.getLength() + 5 ); in lclConvertWildcardsToRegExp()
138 aBuffer.append( sal_Unicode( '.' ) ); in lclConvertWildcardsToRegExp()
141 aBuffer.append( sal_Unicode( '.' ) ).append( sal_Unicode( '*' ) ); in lclConvertWildcardsToRegExp()
145 aBuffer.append( sal_Unicode( '\\' ) ).append( *pcChar ); in lclConvertWildcardsToRegExp()
148 aBuffer.append( *pcChar ); in lclConvertWildcardsToRegExp()
151 rValue = aBuffer.makeStringAndClear(); in lclConvertWildcardsToRegExp()
/trunk/main/desktop/source/so_comp/
H A Doemjob.cxx237 OUStringBuffer aBuffer( aUserDataPath ); in locateIniFile() local
238 aBuffer.appendAscii( CONFIG_DIR ); in locateIniFile()
239 aBuffer.append( aSofficeIniFileURL.copy( nIndex )); in locateIniFile()
240 aUserSofficeIniFileURL = aBuffer.makeStringAndClear(); in locateIniFile()
/trunk/main/reportdesign/source/ui/report/
H A DFormattedFieldBeautifier.cxx105 ::rtl::OUStringBuffer aBuffer; in setPlaceholderText()
106 aBuffer.appendAscii( "=" ); in setPlaceholderText()
107 aBuffer.append( sLabel ); in setPlaceholderText()
108 sDataField = aBuffer.makeStringAndClear(); in setPlaceholderText()
/trunk/main/sal/osl/w32/
H A Dtempfile.cxx238 ::osl::LongPathBuffer< sal_Unicode > aBuffer( MAX_LONG_PATH ); in osl_getTempDirURL()
239 LPWSTR lpBuffer = ::osl::mingw_reinterpret_cast<LPWSTR>(aBuffer); in osl_getTempDirURL()
240 DWORD nBufferLength = aBuffer.getBufSizeInSymbols() - 1; in osl_getTempDirURL()
245 nLength = GetTempPathW( aBuffer.getBufSizeInSymbols(), lpBuffer ); in osl_getTempDirURL()
/trunk/main/framework/source/uifactory/
H A Duicontrollerfactory.cxx58 rtl::OUStringBuffer aBuffer; in UIControllerFactory() local
59 aBuffer.appendAscii( in UIControllerFactory()
62 aBuffer.append( rConfigurationNode ); in UIControllerFactory()
64 m_xServiceManager, aBuffer.makeStringAndClear() ); in UIControllerFactory()
/trunk/main/filter/source/msfilter/
H A Ddffpropset.cxx1312 ::rtl::OUStringBuffer aBuffer; in GetPropertyString()
1317 aBuffer.ensureCapacity( nStrLen ); in GetPropertyString()
1323 aBuffer.append( static_cast< sal_Unicode >( nChar ) ); in GetPropertyString()
1329 return aBuffer.makeStringAndClear(); in GetPropertyString()
/trunk/main/reportdesign/source/ui/inspection/
H A DDefaultInspection.cxx49 ::rtl::OUStringBuffer aBuffer; in getHelpURL()
52 aBuffer.appendAscii( INET_HID_SCHEME ); in getHelpURL()
53 aBuffer.append( aTmp.getStr() ); in getHelpURL()
54 return aBuffer.makeStringAndClear(); in getHelpURL()
/trunk/main/ucb/source/core/
H A Ducbstore.cxx58 rtl::OUStringBuffer aBuffer; in makeHierarchalNameSegment() local
59 aBuffer.appendAscii( "['" ); in makeHierarchalNameSegment()
68 aBuffer.appendAscii( "&amp;" ); in makeHierarchalNameSegment()
72 aBuffer.appendAscii( "&quot;" ); in makeHierarchalNameSegment()
76 aBuffer.appendAscii( "&apos;" ); in makeHierarchalNameSegment()
80 aBuffer.appendAscii( "&lt;" ); in makeHierarchalNameSegment()
84 aBuffer.appendAscii( "&gt;" ); in makeHierarchalNameSegment()
88 aBuffer.append( c ); in makeHierarchalNameSegment()
93 aBuffer.appendAscii( "']" ); in makeHierarchalNameSegment()
94 return rtl::OUString( aBuffer.makeStringAndClear() ); in makeHierarchalNameSegment()
/trunk/main/xmloff/source/style/
H A Dxmlbahdl.cxx890 OUStringBuffer aBuffer; in exportXML() local
891 SvXMLUnitConverter::convertNumber( aBuffer, nValue ); in exportXML()
892 rStrExpValue = aBuffer.makeStringAndClear(); in exportXML()
933 OUStringBuffer aBuffer; in exportXML() local
934 SvXMLUnitConverter::convertNumber( aBuffer, nValue ); in exportXML()
935 rStrExpValue = aBuffer.makeStringAndClear(); in exportXML()
/trunk/main/extensions/source/propctrlr/
H A Deformshelper.cxx72 ::rtl::OUStringBuffer aBuffer; in composeModelElementUIName()
73 aBuffer.appendAscii( "[" ); in composeModelElementUIName()
74 aBuffer.append( _rModelName ); in composeModelElementUIName()
75 aBuffer.appendAscii( "] " ); in composeModelElementUIName()
76 aBuffer.append( _rElementName ); in composeModelElementUIName()
77 return aBuffer.makeStringAndClear(); in composeModelElementUIName()
/trunk/main/embedserv/source/embed/
H A Ded_ipersiststr.cxx87 uno::Sequence< sal_Int8 > aBuffer( nConstBufferSize ); in createTempXInStreamFromIStream() local
93 pStream->Read( (void*)aBuffer.getArray(), nConstBufferSize, &nRead ); in createTempXInStreamFromIStream()
96 aBuffer.realloc( nRead ); in createTempXInStreamFromIStream()
98 xTempOut->writeBytes( aBuffer ); in createTempXInStreamFromIStream()
144 uno::Sequence< sal_Int8 > aBuffer( nConstBufferSize ); in copyXTempOutToIStream() local
150 nReadBytes = xTempIn->readBytes( aBuffer, nConstBufferSize ); in copyXTempOutToIStream()
158 HRESULT hr = pStream->Write( (void*)aBuffer.getArray(), nReadBytes, &nWritten ); in copyXTempOutToIStream()
/trunk/main/odk/examples/DevelopersGuide/Config/
H A DConfigExamples.java363 StringBuffer aBuffer = new StringBuffer(); in toString() local
364 aBuffer.append("[ Grid is "); aBuffer.append(visible ? "VISIBLE" : "HIDDEN"); in toString()
365 aBuffer.append("; resolution = (" + resolution_x + "," + resolution_y + ")"); in toString()
366 aBuffer.append("; subdivision = (" + subdivision_x + "," + subdivision_y + ")"); in toString()
367 aBuffer.append(" ]"); in toString()
368 return aBuffer.toString(); in toString()
/trunk/main/sfx2/source/doc/
H A Doleprops.cxx302 ::std::vector< sal_Char > aBuffer( static_cast< size_t >( nSize + 1 ), 0 ); in ImplLoadString8()
303 rStrm.Read( &aBuffer.front(), static_cast< sal_Size >( nSize ) ); in ImplLoadString8()
305 aValue = String( &aBuffer.front(), GetTextEncoding() ); in ImplLoadString8()
321 ::std::vector< sal_Unicode > aBuffer; in ImplLoadString16()
322 aBuffer.reserve( static_cast< size_t >( nSize + 1 ) ); in ImplLoadString16()
327 aBuffer.push_back( static_cast< sal_Unicode >( cChar ) ); in ImplLoadString16()
333 aBuffer.push_back( 0 ); in ImplLoadString16()
334 aValue = String( &aBuffer.front() ); in ImplLoadString16()
/trunk/main/oox/source/vml/
H A Dvmltextbox.cxx68 OUStringBuffer aBuffer; in getText() local
70 aBuffer.append( aIt->maText ); in getText()
71 return aBuffer.makeStringAndClear(); in getText()
/trunk/main/unotools/source/config/
H A Deventcfg.cxx236 OUStringBuffer aBuffer( 32 ); in initBindingInfo() local
237 aBuffer.append( aSetNode ); in initBindingInfo()
238 aBuffer.append( lEventNames[i] ); in initBindingInfo()
239 aBuffer.append( aCommandKey ); in initBindingInfo()
240 lMacros[0] = aBuffer.makeStringAndClear(); in initBindingInfo()
/trunk/main/filter/source/xsltfilter/
H A Duof2storage.cxx114 ::rtl::OUStringBuffer aBuffer(m_aParentPath); in getPath()
115 if(aBuffer.getLength() > 0) in getPath()
117 aBuffer.append(sal_Unicode('/')); in getPath()
120 aBuffer.append(m_aStorageName); in getPath()
121 return aBuffer.makeStringAndClear(); in getPath()
/trunk/main/shell/source/unix/exec/
H A Durltest.cxx72 rtl::OStringBuffer aBuffer; in main() local
73 escapeForShell(aBuffer, aURL); in main()
76 strcpy( line + len, aBuffer.getStr() ); in main()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/convwatch/
H A DEnhancedComplexTestCase.java54 StringBuffer aBuffer = new StringBuffer(); in checkExistance() local
55 aBuffer.append(aHandler.getErrorText()).append(aHandler.getOutputText()); in checkExistance()
56 String sText = aBuffer.toString(); in checkExistance()
/trunk/main/svl/source/misc/
H A Dstrmadpt.cxx506 uno::Sequence< sal_Int8 > aBuffer; in GetData() local
510 nCount = m_xStream->readBytes(aBuffer, nRemain); in GetData()
518 aBuffer.getConstArray(), sal_uInt32(nCount)); in GetData()
543 uno::Sequence< sal_Int8 > aBuffer; in GetData() local
547 nCount = m_xStream->readBytes(aBuffer, nRemain); in GetData()
554 m_pPipe->write(aBuffer.getConstArray(), sal_uInt32(nCount)); in GetData()
/trunk/main/xmloff/source/forms/handler/
H A Dvcl_date_handler.cxx70 ::rtl::OUStringBuffer aBuffer; in getAttributeValue()
71 SvXMLUnitConverter::convertDateTime( aBuffer, aDateTime, sal_False ); in getAttributeValue()
72 return aBuffer.makeStringAndClear(); in getAttributeValue()
H A Dvcl_time_handler.cxx71 ::rtl::OUStringBuffer aBuffer; in getAttributeValue()
72 SvXMLUnitConverter::convertTime( aBuffer, aDateTime ); in getAttributeValue()
73 return aBuffer.makeStringAndClear(); in getAttributeValue()
/trunk/main/xmloff/source/chart/
H A DXMLErrorIndicatorPropertyHdl.cxx84 rtl::OUStringBuffer aBuffer; in exportXML() local
95 SvXMLUnitConverter::convertBool( aBuffer, bValue ); in exportXML()
96 rStrExpValue = aBuffer.makeStringAndClear(); in exportXML()

Completed in 146 milliseconds

12345678