callcatcher: update list
This commit is contained in:
@@ -982,8 +982,6 @@ oox::xls::CellBlock::CellBlock(oox::xls::WorksheetHelper const&, oox::ValueRange
|
|||||||
oox::xls::CellBlock::isBefore(oox::ValueRange const&) const
|
oox::xls::CellBlock::isBefore(oox::ValueRange const&) const
|
||||||
oox::xls::CellBlock::isExpandable(oox::ValueRange const&) const
|
oox::xls::CellBlock::isExpandable(oox::ValueRange const&) const
|
||||||
oox::xls::CellBlock::startNextRow()
|
oox::xls::CellBlock::startNextRow()
|
||||||
pdfi::createOdfEmitter(com::sun::star::uno::Reference<com::sun::star::io::XOutputStream> const&)
|
|
||||||
psp::GetCommandLineTokenCount(rtl::OString const&)
|
|
||||||
psp::PrinterGfx::DrawBitmap(Rectangle const&, Rectangle const&, psp::PrinterBmp const&, psp::PrinterBmp const&)
|
psp::PrinterGfx::DrawBitmap(Rectangle const&, Rectangle const&, psp::PrinterBmp const&, psp::PrinterBmp const&)
|
||||||
psp::PrinterGfx::DrawMask(Rectangle const&, Rectangle const&, psp::PrinterBmp const&, psp::PrinterColor&)
|
psp::PrinterGfx::DrawMask(Rectangle const&, Rectangle const&, psp::PrinterBmp const&, psp::PrinterColor&)
|
||||||
psp::PrinterGfx::GetGlyphBoundRect(unsigned short, Rectangle&)
|
psp::PrinterGfx::GetGlyphBoundRect(unsigned short, Rectangle&)
|
||||||
|
@@ -44,7 +44,6 @@ namespace psp
|
|||||||
// contents
|
// contents
|
||||||
|
|
||||||
VCL_DLLPUBLIC int GetCommandLineTokenCount(const rtl::OUString&);
|
VCL_DLLPUBLIC int GetCommandLineTokenCount(const rtl::OUString&);
|
||||||
VCL_DLLPUBLIC int GetCommandLineTokenCount(const rtl::OString&);
|
|
||||||
// returns number of tokens (zero if empty or whitespace only)
|
// returns number of tokens (zero if empty or whitespace only)
|
||||||
|
|
||||||
VCL_DLLPUBLIC String WhitespaceToSpace( const String&, sal_Bool bProtect = sal_True );
|
VCL_DLLPUBLIC String WhitespaceToSpace( const String&, sal_Bool bProtect = sal_True );
|
||||||
|
@@ -271,57 +271,6 @@ int GetCommandLineTokenCount(const rtl::OUString& rLine)
|
|||||||
return nTokenCount;
|
return nTokenCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
int GetCommandLineTokenCount(const rtl::OString& rLine)
|
|
||||||
{
|
|
||||||
if (rLine.isEmpty())
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
int nTokenCount = 0;
|
|
||||||
const char *pRun = rLine.getStr();
|
|
||||||
|
|
||||||
|
|
||||||
while( *pRun )
|
|
||||||
{
|
|
||||||
while( *pRun && isSpace( *pRun ) )
|
|
||||||
pRun++;
|
|
||||||
if( ! *pRun )
|
|
||||||
break;
|
|
||||||
while( *pRun && ! isSpace( *pRun ) )
|
|
||||||
{
|
|
||||||
if( *pRun == '\\' )
|
|
||||||
{
|
|
||||||
// escapement
|
|
||||||
pRun++;
|
|
||||||
if( *pRun )
|
|
||||||
pRun++;
|
|
||||||
}
|
|
||||||
else if( *pRun == '`' )
|
|
||||||
{
|
|
||||||
do pRun++; while( *pRun && *pRun != '`' );
|
|
||||||
if( *pRun )
|
|
||||||
pRun++;
|
|
||||||
}
|
|
||||||
else if( *pRun == '\'' )
|
|
||||||
{
|
|
||||||
do pRun++; while( *pRun && *pRun != '\'' );
|
|
||||||
if( *pRun )
|
|
||||||
pRun++;
|
|
||||||
}
|
|
||||||
else if( *pRun == '"' )
|
|
||||||
{
|
|
||||||
do pRun++; while( *pRun && *pRun != '"' );
|
|
||||||
if( *pRun )
|
|
||||||
pRun++;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
pRun++;
|
|
||||||
}
|
|
||||||
nTokenCount++;
|
|
||||||
}
|
|
||||||
|
|
||||||
return nTokenCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
String WhitespaceToSpace( const String& rLine, sal_Bool bProtect )
|
String WhitespaceToSpace( const String& rLine, sal_Bool bProtect )
|
||||||
{
|
{
|
||||||
int nLen = rLine.Len();
|
int nLen = rLine.Len();
|
||||||
|
Reference in New Issue
Block a user