callcatcher: regenerate list
This commit is contained in:
@@ -737,23 +737,6 @@ SbiExprNode* SbiExpression::VBA_And()
|
|||||||
return pNd;
|
return pNd;
|
||||||
}
|
}
|
||||||
|
|
||||||
SbiExprNode* SbiExpression::VBA_Or()
|
|
||||||
{
|
|
||||||
SbiExprNode* pNd = VBA_And();
|
|
||||||
if( m_eMode != EXPRMODE_EMPTY_PAREN )
|
|
||||||
{
|
|
||||||
for( ;; )
|
|
||||||
{
|
|
||||||
SbiToken eTok = pParser->Peek();
|
|
||||||
if( eTok != OR )
|
|
||||||
break;
|
|
||||||
eTok = pParser->Next();
|
|
||||||
pNd = new SbiExprNode( pParser, pNd, eTok, VBA_And() );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return pNd;
|
|
||||||
}
|
|
||||||
|
|
||||||
SbiExprNode* SbiExpression::Like()
|
SbiExprNode* SbiExpression::Like()
|
||||||
{
|
{
|
||||||
SbiExprNode* pNd = pParser->IsVBASupportOn() ? VBA_Not() : Comp();
|
SbiExprNode* pNd = pParser->IsVBASupportOn() ? VBA_Not() : Comp();
|
||||||
|
@@ -190,7 +190,6 @@ protected:
|
|||||||
SbiExprNode* Like();
|
SbiExprNode* Like();
|
||||||
SbiExprNode* VBA_Not();
|
SbiExprNode* VBA_Not();
|
||||||
SbiExprNode* VBA_And();
|
SbiExprNode* VBA_And();
|
||||||
SbiExprNode* VBA_Or();
|
|
||||||
SbiExprNode* Comp();
|
SbiExprNode* Comp();
|
||||||
SbiExprNode* Boolean();
|
SbiExprNode* Boolean();
|
||||||
public:
|
public:
|
||||||
|
@@ -511,16 +511,6 @@ namespace
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool isalnumAsciiString(const rtl::OString &rString)
|
|
||||||
{
|
|
||||||
return tmpl_is_OPER_AsciiString<isalnumAscii>(rString);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool isalnumAsciiString(const rtl::OUString &rString)
|
|
||||||
{
|
|
||||||
return tmpl_is_OPER_AsciiString<isalnumAscii>(rString);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool isdigitAsciiString(const rtl::OString &rString)
|
bool isdigitAsciiString(const rtl::OString &rString)
|
||||||
{
|
{
|
||||||
return tmpl_is_OPER_AsciiString<isdigitAscii>(rString);
|
return tmpl_is_OPER_AsciiString<isdigitAscii>(rString);
|
||||||
@@ -531,26 +521,6 @@ bool isdigitAsciiString(const rtl::OUString &rString)
|
|||||||
return tmpl_is_OPER_AsciiString<isdigitAscii>(rString);
|
return tmpl_is_OPER_AsciiString<isdigitAscii>(rString);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool islowerAsciiString(const rtl::OString &rString)
|
|
||||||
{
|
|
||||||
return tmpl_is_OPER_AsciiString<islowerAscii>(rString);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool islowerAsciiString(const rtl::OUString &rString)
|
|
||||||
{
|
|
||||||
return tmpl_is_OPER_AsciiString<islowerAscii>(rString);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool isupperAsciiString(const rtl::OString &rString)
|
|
||||||
{
|
|
||||||
return tmpl_is_OPER_AsciiString<isupperAscii>(rString);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool isupperAsciiString(const rtl::OUString &rString)
|
|
||||||
{
|
|
||||||
return tmpl_is_OPER_AsciiString<isupperAscii>(rString);
|
|
||||||
}
|
|
||||||
|
|
||||||
} }
|
} }
|
||||||
|
|
||||||
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
||||||
|
@@ -24,7 +24,6 @@ class Directory
|
|||||||
private:
|
private:
|
||||||
rtl::OUString sDirectoryName;
|
rtl::OUString sDirectoryName;
|
||||||
rtl::OUString sFullName;
|
rtl::OUString sFullName;
|
||||||
bool bSkipLinks;
|
|
||||||
|
|
||||||
std::vector<Directory> aDirVec;
|
std::vector<Directory> aDirVec;
|
||||||
std::vector<File> aFileVec;
|
std::vector<File> aFileVec;
|
||||||
@@ -33,18 +32,15 @@ class Directory
|
|||||||
std::vector<Directory> getSubDirectories() { return aDirVec; }
|
std::vector<Directory> getSubDirectories() { return aDirVec; }
|
||||||
std::vector<File> getFiles() { return aFileVec; }
|
std::vector<File> getFiles() { return aFileVec; }
|
||||||
|
|
||||||
void readDirectory();
|
|
||||||
void readDirectory( const rtl::OUString& sFullpath );
|
void readDirectory( const rtl::OUString& sFullpath );
|
||||||
void scanSubDir( int nLevels = 0 );
|
void scanSubDir( int nLevels = 0 );
|
||||||
|
|
||||||
rtl::OUString getDirectoryName() { return sDirectoryName; }
|
rtl::OUString getDirectoryName() { return sDirectoryName; }
|
||||||
rtl::OUString getFullName() { return sFullName ; }
|
rtl::OUString getFullName() { return sFullName ; }
|
||||||
void setSkipLinks( bool is_skipped );
|
|
||||||
|
|
||||||
void dump();
|
void dump();
|
||||||
Directory(){};
|
Directory(){}
|
||||||
|
|
||||||
Directory( const rtl::OUString sFullPath );
|
|
||||||
Directory( const rtl::OUString sFullPath , const rtl::OUString sEntry ) ;
|
Directory( const rtl::OUString sFullPath , const rtl::OUString sEntry ) ;
|
||||||
|
|
||||||
static bool lessDir ( const Directory& rKey1, const Directory& rKey2 ) ;
|
static bool lessDir ( const Directory& rKey1, const Directory& rKey2 ) ;
|
||||||
|
@@ -41,12 +41,7 @@
|
|||||||
namespace transex
|
namespace transex
|
||||||
{
|
{
|
||||||
|
|
||||||
Directory::Directory( const rtl::OUString sFullpath ) : bSkipLinks( false )
|
Directory::Directory( const rtl::OUString sFullPath , const rtl::OUString sEntry )
|
||||||
{
|
|
||||||
sFullName = sFullpath;
|
|
||||||
}
|
|
||||||
|
|
||||||
Directory::Directory( const rtl::OUString sFullPath , const rtl::OUString sEntry ) : bSkipLinks( false )
|
|
||||||
{
|
{
|
||||||
sFullName = sFullPath;
|
sFullName = sFullPath;
|
||||||
sDirectoryName = sEntry;
|
sDirectoryName = sEntry;
|
||||||
@@ -88,16 +83,6 @@ void Directory::scanSubDir( int nLevels )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Directory::setSkipLinks( bool is_skipped )
|
|
||||||
{
|
|
||||||
bSkipLinks = is_skipped;
|
|
||||||
}
|
|
||||||
|
|
||||||
void Directory::readDirectory()
|
|
||||||
{
|
|
||||||
readDirectory( sFullName );
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef WNT
|
#ifdef WNT
|
||||||
|
|
||||||
void Directory::readDirectory ( const rtl::OUString& sFullpath )
|
void Directory::readDirectory ( const rtl::OUString& sFullpath )
|
||||||
@@ -247,9 +232,6 @@ void Directory::readDirectory( const rtl::OUString& sFullpath )
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case S_IFLNK:
|
case S_IFLNK:
|
||||||
{
|
|
||||||
if( bSkipLinks ) break;
|
|
||||||
}
|
|
||||||
case S_IFDIR:
|
case S_IFDIR:
|
||||||
{
|
{
|
||||||
transex::Directory aDir(
|
transex::Directory aDir(
|
||||||
|
@@ -66,20 +66,6 @@ namespace toolkit
|
|||||||
using namespace ::com::sun::star::lang;
|
using namespace ::com::sun::star::lang;
|
||||||
using namespace ::com::sun::star::registry;
|
using namespace ::com::sun::star::registry;
|
||||||
|
|
||||||
//.........................................................................
|
|
||||||
Reference< XRegistryKey > registerServices( const Reference< XRegistryKey >& _rxParentKey,
|
|
||||||
const sal_Char* _pAsciiImplName, const sal_Char* _pAsciiServiceName )
|
|
||||||
{
|
|
||||||
::rtl::OUString sImplName( RTL_CONSTASCII_USTRINGPARAM( "/stardiv.Toolkit." ) );
|
|
||||||
sImplName += ::rtl::OUString::createFromAscii( _pAsciiImplName );
|
|
||||||
sImplName += ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "/UNO/SERVICES" ) );
|
|
||||||
|
|
||||||
Reference< XRegistryKey > xNewKey = _rxParentKey->createKey( sImplName );
|
|
||||||
xNewKey->createKey( ::rtl::OUString::createFromAscii( _pAsciiServiceName ) );
|
|
||||||
|
|
||||||
return xNewKey;
|
|
||||||
}
|
|
||||||
|
|
||||||
//.........................................................................
|
//.........................................................................
|
||||||
void* tryCreateFactory( const sal_Char* _pRequiredImplName, const sal_Char* _pComponentImplName,
|
void* tryCreateFactory( const sal_Char* _pRequiredImplName, const sal_Char* _pComponentImplName,
|
||||||
const sal_Char* _pAsciiServiceName1, const sal_Char* _pAsciiServiceName2,
|
const sal_Char* _pAsciiServiceName1, const sal_Char* _pAsciiServiceName2,
|
||||||
|
@@ -280,7 +280,6 @@ public:
|
|||||||
sal_uInt16 nMaxChars = STRING_MAXLEN ) const;
|
sal_uInt16 nMaxChars = STRING_MAXLEN ) const;
|
||||||
|
|
||||||
DirEntry TempName( DirEntryKind = FSYS_KIND_NONE ) const;
|
DirEntry TempName( DirEntryKind = FSYS_KIND_NONE ) const;
|
||||||
static const DirEntry& SetTempNameBase( const String &rBaseName );
|
|
||||||
sal_Bool MakeShortName( const String& rLongName,
|
sal_Bool MakeShortName( const String& rLongName,
|
||||||
DirEntryKind eCreateKind = FSYS_KIND_NONE,
|
DirEntryKind eCreateKind = FSYS_KIND_NONE,
|
||||||
sal_Bool bUseTilde = sal_True,
|
sal_Bool bUseTilde = sal_True,
|
||||||
|
@@ -380,7 +380,6 @@ public:
|
|||||||
// next Tell() <= nSize
|
// next Tell() <= nSize
|
||||||
sal_Bool SetStreamSize( sal_Size nSize );
|
sal_Bool SetStreamSize( sal_Size nSize );
|
||||||
|
|
||||||
sal_Bool ReadLine( ByteString& rStr );
|
|
||||||
sal_Bool ReadLine( rtl::OString& rStr );
|
sal_Bool ReadLine( rtl::OString& rStr );
|
||||||
sal_Bool WriteLine( const rtl::OString& rStr );
|
sal_Bool WriteLine( const rtl::OString& rStr );
|
||||||
|
|
||||||
|
@@ -246,7 +246,6 @@ public:
|
|||||||
void SearchAndReplaceAll( const ByteString& rStr, const ByteString& rRepStr );
|
void SearchAndReplaceAll( const ByteString& rStr, const ByteString& rRepStr );
|
||||||
void SearchAndReplaceAll( const sal_Char* pCharStr, const ByteString& rRepStr );
|
void SearchAndReplaceAll( const sal_Char* pCharStr, const ByteString& rRepStr );
|
||||||
|
|
||||||
xub_StrLen GetTokenCount( sal_Char cTok = ';' ) const;
|
|
||||||
void SetToken( xub_StrLen nToken, sal_Char cTok, const ByteString& rStr,
|
void SetToken( xub_StrLen nToken, sal_Char cTok, const ByteString& rStr,
|
||||||
xub_StrLen nIndex = 0 );
|
xub_StrLen nIndex = 0 );
|
||||||
ByteString GetToken( xub_StrLen nToken, sal_Char cTok, xub_StrLen& rIndex ) const;
|
ByteString GetToken( xub_StrLen nToken, sal_Char cTok, xub_StrLen& rIndex ) const;
|
||||||
@@ -354,6 +353,9 @@ private:
|
|||||||
// Append(sal_Unicode)
|
// Append(sal_Unicode)
|
||||||
void operator +=(int); // not implemented; to detect misuses
|
void operator +=(int); // not implemented; to detect misuses
|
||||||
// of operator +=(sal_Unicode)
|
// of operator +=(sal_Unicode)
|
||||||
|
UniString( const ByteString& rByteStr, xub_StrLen nPos, xub_StrLen nLen,
|
||||||
|
rtl_TextEncoding eTextEncoding,
|
||||||
|
sal_uInt32 nCvtFlags = BYTESTRING_TO_UNISTRING_CVTFLAGS ); //not implemented, removed
|
||||||
|
|
||||||
//detect and reject use of RTL_CONSTASCII_STRINGPARAM instead of RTL_CONSTASCII_USTRINGPARAM
|
//detect and reject use of RTL_CONSTASCII_STRINGPARAM instead of RTL_CONSTASCII_USTRINGPARAM
|
||||||
TOOLS_DLLPRIVATE UniString( const sal_Char*, sal_Int32 );
|
TOOLS_DLLPRIVATE UniString( const sal_Char*, sal_Int32 );
|
||||||
@@ -370,9 +372,6 @@ public:
|
|||||||
UniString( const ByteString& rByteStr,
|
UniString( const ByteString& rByteStr,
|
||||||
rtl_TextEncoding eTextEncoding,
|
rtl_TextEncoding eTextEncoding,
|
||||||
sal_uInt32 nCvtFlags = BYTESTRING_TO_UNISTRING_CVTFLAGS );
|
sal_uInt32 nCvtFlags = BYTESTRING_TO_UNISTRING_CVTFLAGS );
|
||||||
UniString( const ByteString& rByteStr, xub_StrLen nPos, xub_StrLen nLen,
|
|
||||||
rtl_TextEncoding eTextEncoding,
|
|
||||||
sal_uInt32 nCvtFlags = BYTESTRING_TO_UNISTRING_CVTFLAGS );
|
|
||||||
UniString( const sal_Char* pByteStr,
|
UniString( const sal_Char* pByteStr,
|
||||||
rtl_TextEncoding eTextEncoding,
|
rtl_TextEncoding eTextEncoding,
|
||||||
sal_uInt32 nCvtFlags = BYTESTRING_TO_UNISTRING_CVTFLAGS );
|
sal_uInt32 nCvtFlags = BYTESTRING_TO_UNISTRING_CVTFLAGS );
|
||||||
@@ -508,7 +507,6 @@ public:
|
|||||||
void SearchAndReplaceAll( const UniString& rStr, const UniString& rRepStr );
|
void SearchAndReplaceAll( const UniString& rStr, const UniString& rRepStr );
|
||||||
void SearchAndReplaceAllAscii( const sal_Char* pAsciiStr, const UniString& rRepStr );
|
void SearchAndReplaceAllAscii( const sal_Char* pAsciiStr, const UniString& rRepStr );
|
||||||
|
|
||||||
xub_StrLen GetTokenCount( sal_Unicode cTok = ';' ) const;
|
|
||||||
void SetToken( xub_StrLen nToken, sal_Unicode cTok, const UniString& rStr,
|
void SetToken( xub_StrLen nToken, sal_Unicode cTok, const UniString& rStr,
|
||||||
xub_StrLen nIndex = 0 );
|
xub_StrLen nIndex = 0 );
|
||||||
UniString GetToken( xub_StrLen nToken, sal_Unicode cTok, xub_StrLen& rIndex ) const;
|
UniString GetToken( xub_StrLen nToken, sal_Unicode cTok, xub_StrLen& rIndex ) const;
|
||||||
|
@@ -1569,34 +1569,6 @@ String DirEntry::GetSearchDelimiter( FSysPathStyle eFormatter )
|
|||||||
*************************************************************************/
|
*************************************************************************/
|
||||||
namespace { struct TempNameBase_Impl : public rtl::Static< DirEntry, TempNameBase_Impl > {}; }
|
namespace { struct TempNameBase_Impl : public rtl::Static< DirEntry, TempNameBase_Impl > {}; }
|
||||||
|
|
||||||
const DirEntry& DirEntry::SetTempNameBase( const String &rBase )
|
|
||||||
{
|
|
||||||
DirEntry aTempDir = DirEntry().TempName().GetPath();
|
|
||||||
aTempDir += DirEntry( rBase );
|
|
||||||
#ifdef UNX
|
|
||||||
rtl::OString aName(rtl::OUStringToOString(aTempDir.GetFull(), osl_getThreadTextEncoding()));
|
|
||||||
if ( access( aName.getStr(), W_OK | X_OK | R_OK ) )
|
|
||||||
{
|
|
||||||
// Create the directory and only on success give all rights to
|
|
||||||
// everyone. Use mkdir instead of DirEntry::MakeDir because
|
|
||||||
// this returns sal_True even if directory already exists.
|
|
||||||
|
|
||||||
if ( !mkdir( aName.getStr(), S_IRWXU | S_IRWXG | S_IRWXO ) )
|
|
||||||
chmod( aName.getStr(), S_IRWXU | S_IRWXG | S_IRWXO );
|
|
||||||
|
|
||||||
// This will not create a directory but perhaps FileStat called
|
|
||||||
// there modifies the DirEntry
|
|
||||||
|
|
||||||
aTempDir.MakeDir();
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
aTempDir.MakeDir();
|
|
||||||
#endif
|
|
||||||
DirEntry &rEntry = TempNameBase_Impl::get();
|
|
||||||
rEntry = aTempDir.TempName( FSYS_KIND_DIR );
|
|
||||||
return rEntry;
|
|
||||||
}
|
|
||||||
|
|
||||||
DirEntry DirEntry::TempName( DirEntryKind eKind ) const
|
DirEntry DirEntry::TempName( DirEntryKind eKind ) const
|
||||||
{
|
{
|
||||||
// ggf. Base-Temp-Dir verwenden (macht Remote keinen Sinn => vorher)
|
// ggf. Base-Temp-Dir verwenden (macht Remote keinen Sinn => vorher)
|
||||||
|
@@ -723,14 +723,6 @@ sal_Bool SvStream::ReadLine(rtl::OString& rStr)
|
|||||||
return bEnd;
|
return bEnd;
|
||||||
}
|
}
|
||||||
|
|
||||||
sal_Bool SvStream::ReadLine( ByteString& rStr )
|
|
||||||
{
|
|
||||||
rtl::OString aFoo;
|
|
||||||
sal_Bool ret = ReadLine(aFoo);
|
|
||||||
rStr = aFoo;
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
sal_Bool SvStream::ReadUniStringLine( String& rStr )
|
sal_Bool SvStream::ReadUniStringLine( String& rStr )
|
||||||
{
|
{
|
||||||
sal_Unicode buf[256+1];
|
sal_Unicode buf[256+1];
|
||||||
|
@@ -1135,32 +1135,6 @@ void STRING::SearchAndReplaceAll( const STRING& rStr, const STRING& rRepStr )
|
|||||||
|
|
||||||
// -----------------------------------------------------------------------
|
// -----------------------------------------------------------------------
|
||||||
|
|
||||||
xub_StrLen STRING::GetTokenCount( STRCODE cTok ) const
|
|
||||||
{
|
|
||||||
DBG_CHKTHIS( STRING, DBGCHECKSTRING );
|
|
||||||
|
|
||||||
// Leerer String: TokenCount per Definition 0
|
|
||||||
if ( !mpData->mnLen )
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
xub_StrLen nTokCount = 1;
|
|
||||||
sal_Int32 nLen = mpData->mnLen;
|
|
||||||
const STRCODE* pStr = mpData->maStr;
|
|
||||||
sal_Int32 nIndex = 0;
|
|
||||||
while ( nIndex < nLen )
|
|
||||||
{
|
|
||||||
// Stimmt das Tokenzeichen ueberein, dann erhoehe TokCount
|
|
||||||
if ( *pStr == cTok )
|
|
||||||
++nTokCount;
|
|
||||||
++pStr,
|
|
||||||
++nIndex;
|
|
||||||
}
|
|
||||||
|
|
||||||
return nTokCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
// -----------------------------------------------------------------------
|
|
||||||
|
|
||||||
void STRING::SetToken( xub_StrLen nToken, STRCODE cTok, const STRING& rStr,
|
void STRING::SetToken( xub_StrLen nToken, STRCODE cTok, const STRING& rStr,
|
||||||
xub_StrLen nIndex )
|
xub_StrLen nIndex )
|
||||||
{
|
{
|
||||||
|
@@ -58,31 +58,6 @@ UniString::UniString( const ByteString& rByteStr, rtl_TextEncoding eTextEncoding
|
|||||||
|
|
||||||
// -----------------------------------------------------------------------
|
// -----------------------------------------------------------------------
|
||||||
|
|
||||||
UniString::UniString( const ByteString& rByteStr, xub_StrLen nPos, xub_StrLen nLen,
|
|
||||||
rtl_TextEncoding eTextEncoding, sal_uInt32 nCvtFlags )
|
|
||||||
{
|
|
||||||
DBG_CTOR( UniString, DbgCheckUniString );
|
|
||||||
DBG_CHKOBJ( &rByteStr, ByteString, DbgCheckByteString );
|
|
||||||
|
|
||||||
// Stringlaenge ermitteln
|
|
||||||
if ( nPos > rByteStr.mpData->mnLen )
|
|
||||||
nLen = 0;
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// Laenge korrigieren, wenn noetig
|
|
||||||
sal_Int32 nMaxLen = rByteStr.mpData->mnLen-nPos;
|
|
||||||
if ( nLen > nMaxLen )
|
|
||||||
nLen = static_cast< xub_StrLen >(nMaxLen);
|
|
||||||
}
|
|
||||||
|
|
||||||
mpData = NULL;
|
|
||||||
rtl_string2UString( (rtl_uString **)(&mpData),
|
|
||||||
rByteStr.mpData->maStr+nPos, nLen,
|
|
||||||
eTextEncoding, nCvtFlags );
|
|
||||||
}
|
|
||||||
|
|
||||||
// -----------------------------------------------------------------------
|
|
||||||
|
|
||||||
UniString::UniString( const char* pByteStr,
|
UniString::UniString( const char* pByteStr,
|
||||||
rtl_TextEncoding eTextEncoding, sal_uInt32 nCvtFlags )
|
rtl_TextEncoding eTextEncoding, sal_uInt32 nCvtFlags )
|
||||||
{
|
{
|
||||||
|
@@ -1,12 +1,16 @@
|
|||||||
|
ByteString::Append(char const*, unsigned short)
|
||||||
ByteString::Append(char)
|
ByteString::Append(char)
|
||||||
ByteString::Assign(char const*, unsigned short)
|
ByteString::Assign(char const*, unsigned short)
|
||||||
ByteString::Assign(char)
|
ByteString::Assign(char)
|
||||||
ByteString::ByteString(char const*, unsigned short)
|
ByteString::ByteString(char const*, unsigned short)
|
||||||
ByteString::CompareTo(ByteString const&, unsigned short) const
|
ByteString::CompareTo(ByteString const&, unsigned short) const
|
||||||
|
ByteString::Equals(ByteString const&) const
|
||||||
ByteString::Equals(ByteString const&, unsigned short, unsigned short) const
|
ByteString::Equals(ByteString const&, unsigned short, unsigned short) const
|
||||||
ByteString::Equals(char const*, unsigned short, unsigned short) const
|
ByteString::Equals(char const*, unsigned short, unsigned short) const
|
||||||
ByteString::EqualsIgnoreCaseAscii(ByteString const&) const
|
ByteString::EqualsIgnoreCaseAscii(ByteString const&) const
|
||||||
ByteString::GetToken(unsigned short, char, unsigned short&) const
|
ByteString::GetToken(unsigned short, char, unsigned short&) const
|
||||||
|
ByteString::Insert(char const*, unsigned short)
|
||||||
|
ByteString::Insert(char, unsigned short)
|
||||||
ByteString::Match(ByteString const&) const
|
ByteString::Match(ByteString const&) const
|
||||||
ByteString::SearchAndReplaceAll(ByteString const&, ByteString const&)
|
ByteString::SearchAndReplaceAll(ByteString const&, ByteString const&)
|
||||||
ByteString::SearchAndReplaceAll(char const*, ByteString const&)
|
ByteString::SearchAndReplaceAll(char const*, ByteString const&)
|
||||||
@@ -20,9 +24,12 @@ CharPosArray::Replace(int const*, unsigned short, unsigned short)
|
|||||||
CharPosArray::_ForEach(unsigned short, unsigned short, unsigned char (*)(int const&, void*), void*)
|
CharPosArray::_ForEach(unsigned short, unsigned short, unsigned char (*)(int const&, void*), void*)
|
||||||
DffPropSet::SetPropertyValue(unsigned int, unsigned int) const
|
DffPropSet::SetPropertyValue(unsigned int, unsigned int) const
|
||||||
Dialog::Dialog(Window*, ResId const&)
|
Dialog::Dialog(Window*, ResId const&)
|
||||||
|
DirEntry::SetBase(String const&, char)
|
||||||
EditView::GetSelectionMode() const
|
EditView::GetSelectionMode() const
|
||||||
EditView::SetCursor(Cursor const&)
|
EditView::SetCursor(Cursor const&)
|
||||||
EditView::SetPointer(Pointer const&)
|
EditView::SetPointer(Pointer const&)
|
||||||
|
Export::GetNativeFile(rtl::OString const&)
|
||||||
|
Export::getCurrentDir(std::basic_string<char, std::char_traits<char>, std::allocator<char> >&)
|
||||||
FieldEntry::GetBookmarkType()
|
FieldEntry::GetBookmarkType()
|
||||||
FileControl::SetButtonText(String const&)
|
FileControl::SetButtonText(String const&)
|
||||||
FileStream::FileStream(rtl::OString const&, FileAccessMode)
|
FileStream::FileStream(rtl::OString const&, FileAccessMode)
|
||||||
@@ -68,7 +75,6 @@ MSDffImportRecords::Insert(SvxMSDffImportRec* const&, unsigned short&)
|
|||||||
MSDffImportRecords::Insert(SvxMSDffImportRec* const*, unsigned short)
|
MSDffImportRecords::Insert(SvxMSDffImportRec* const*, unsigned short)
|
||||||
MSDffImportRecords::Remove(SvxMSDffImportRec* const&, unsigned short)
|
MSDffImportRecords::Remove(SvxMSDffImportRec* const&, unsigned short)
|
||||||
MSDffImportRecords::Remove(unsigned short, unsigned short)
|
MSDffImportRecords::Remove(unsigned short, unsigned short)
|
||||||
MSFilterTracer::EndElement(rtl::OUString const&)
|
|
||||||
MSFilterTracer::SetProperty(rtl::OUString const&, com::sun::star::uno::Any const&)
|
MSFilterTracer::SetProperty(rtl::OUString const&, com::sun::star::uno::Any const&)
|
||||||
MSFilterTracer::StartElement(rtl::OUString const&, com::sun::star::uno::Reference<com::sun::star::xml::sax::XAttributeList>)
|
MSFilterTracer::StartElement(rtl::OUString const&, com::sun::star::uno::Reference<com::sun::star::xml::sax::XAttributeList>)
|
||||||
MachineSettings::CopyData()
|
MachineSettings::CopyData()
|
||||||
@@ -139,6 +145,7 @@ ScChangeActionContent::SetNewValue(rtl::OUString const&, ScDocument*)
|
|||||||
ScChartListener::ScChartListener(rtl::OUString const&, ScDocument*, ScRange const&)
|
ScChartListener::ScChartListener(rtl::OUString const&, ScDocument*, ScRange const&)
|
||||||
ScChartListener::SetName(rtl::OUString const&)
|
ScChartListener::SetName(rtl::OUString const&)
|
||||||
ScCollection::Free(ScDataObject*)
|
ScCollection::Free(ScDataObject*)
|
||||||
|
ScCollection::FreeAll()
|
||||||
ScCompressedArray<int, unsigned char>::GetEntryCount() const
|
ScCompressedArray<int, unsigned char>::GetEntryCount() const
|
||||||
ScCompressedArray<int, unsigned short>::CopyFrom(ScCompressedArray<int, unsigned short> const&, int, int, long)
|
ScCompressedArray<int, unsigned short>::CopyFrom(ScCompressedArray<int, unsigned short> const&, int, int, long)
|
||||||
ScCompressedArray<int, unsigned short>::GetEntryCount() const
|
ScCompressedArray<int, unsigned short>::GetEntryCount() const
|
||||||
@@ -183,6 +190,7 @@ ScRTFColTwips_SAR::_ForEach(unsigned short, unsigned short, unsigned char (*)(un
|
|||||||
ScRangeData::ScRangeData(unsigned short)
|
ScRangeData::ScRangeData(unsigned short)
|
||||||
ScSimpleRangeList::Range::contains(ScSimpleRangeList::Range const&) const
|
ScSimpleRangeList::Range::contains(ScSimpleRangeList::Range const&) const
|
||||||
ScStringCell::ScStringCell()
|
ScStringCell::ScStringCell()
|
||||||
|
ScTypedStrData::GetValue() const
|
||||||
ScUserList::end()
|
ScUserList::end()
|
||||||
ScUserList::end() const
|
ScUserList::end() const
|
||||||
ScValidationEntries_Impl::Insert(ScValidationData* const&, unsigned short&)
|
ScValidationEntries_Impl::Insert(ScValidationData* const&, unsigned short&)
|
||||||
@@ -271,7 +279,6 @@ SotExchange::GetExchangeAction(com::sun::star::uno::Reference<com::sun::star::da
|
|||||||
SotFactory::TestInvariant()
|
SotFactory::TestInvariant()
|
||||||
SotObject::RemoveOwnerLock()
|
SotObject::RemoveOwnerLock()
|
||||||
SotStorage::GetProperty(String const&, String const&, com::sun::star::uno::Any&)
|
SotStorage::GetProperty(String const&, String const&, com::sun::star::uno::Any&)
|
||||||
SourceTreeIterator::EndExecute()
|
|
||||||
SpanStyleManager::get(WPXString const&) const
|
SpanStyleManager::get(WPXString const&) const
|
||||||
SpinButton::SpinButton(Window*, ResId const&)
|
SpinButton::SpinButton(Window*, ResId const&)
|
||||||
SrchAttrItemList::Replace(SearchAttrItem const&, unsigned short)
|
SrchAttrItemList::Replace(SearchAttrItem const&, unsigned short)
|
||||||
@@ -299,7 +306,6 @@ SvPersistStream::InsertObj(SvPersistBase*)
|
|||||||
SvPersistStream::RemoveObj(SvPersistBase*)
|
SvPersistStream::RemoveObj(SvPersistBase*)
|
||||||
SvPersistStream::SvPersistStream(SvClassManager&, SvStream*, SvPersistStream const&)
|
SvPersistStream::SvPersistStream(SvClassManager&, SvStream*, SvPersistStream const&)
|
||||||
SvPtrarr::Replace(void* const*, unsigned short, unsigned short)
|
SvPtrarr::Replace(void* const*, unsigned short, unsigned short)
|
||||||
SvStream::ReadLine(ByteString&)
|
|
||||||
SvStringsISortDtor::Insert(String* const*, unsigned short)
|
SvStringsISortDtor::Insert(String* const*, unsigned short)
|
||||||
SvTabListBox::GetTabJustify(unsigned short) const
|
SvTabListBox::GetTabJustify(unsigned short) const
|
||||||
SvUnoAttributeContainer::getImplementation(com::sun::star::uno::Reference<com::sun::star::uno::XInterface>)
|
SvUnoAttributeContainer::getImplementation(com::sun::star::uno::Reference<com::sun::star::uno::XInterface>)
|
||||||
@@ -402,6 +408,7 @@ SvxNumRule::SetLevel(unsigned short, SvxNumberFormat const*)
|
|||||||
SvxOpenGraphicDialog::SetControlHelpIds(short const*, char const**)
|
SvxOpenGraphicDialog::SetControlHelpIds(short const*, char const**)
|
||||||
SvxPluginFileDlg::IsAvailable(unsigned short)
|
SvxPluginFileDlg::IsAvailable(unsigned short)
|
||||||
SvxPopupWindowListBox::StartSelection()
|
SvxPopupWindowListBox::StartSelection()
|
||||||
|
SvxRectCtlAccessibleContext::CommitChange(com::sun::star::accessibility::AccessibleEventObject const&)
|
||||||
SvxRelativeField::SvxRelativeField(Window*, long)
|
SvxRelativeField::SvxRelativeField(Window*, long)
|
||||||
SvxReloadControllerItem::RegisterControl(unsigned short, SfxModule*)
|
SvxReloadControllerItem::RegisterControl(unsigned short, SfxModule*)
|
||||||
SvxRubyChildWindow::GetChildWindowId()
|
SvxRubyChildWindow::GetChildWindowId()
|
||||||
@@ -738,6 +745,7 @@ avmedia::priv::MediaWindowBaseImpl::setStopTime(double)
|
|||||||
basebmp::BitmapDevice::setDamageTracker(boost::shared_ptr<basebmp::IBitmapDeviceDamageTracker> const&)
|
basebmp::BitmapDevice::setDamageTracker(boost::shared_ptr<basebmp::IBitmapDeviceDamageTracker> const&)
|
||||||
basebmp::debugDump(boost::shared_ptr<basebmp::BitmapDevice> const&, std::basic_ostream<char, std::char_traits<char> >&)
|
basebmp::debugDump(boost::shared_ptr<basebmp::BitmapDevice> const&, std::basic_ostream<char, std::char_traits<char> >&)
|
||||||
basegfx::computeSetDifference(std::__debug::vector<basegfx::B2IBox, std::allocator<basegfx::B2IBox> >&, basegfx::B2IBox const&, basegfx::B2IBox const&)
|
basegfx::computeSetDifference(std::__debug::vector<basegfx::B2IBox, std::allocator<basegfx::B2IBox> >&, basegfx::B2IBox const&, basegfx::B2IBox const&)
|
||||||
|
basegfx::fround(basegfx::B2DRange const&)
|
||||||
basegfx::tools::addPointsAtCuts(basegfx::B2DPolygon const&)
|
basegfx::tools::addPointsAtCuts(basegfx::B2DPolygon const&)
|
||||||
basegfx::tools::addPointsAtCutsAndTouches(basegfx::B2DPolyPolygon const&, basegfx::B2DPolygon const&)
|
basegfx::tools::addPointsAtCutsAndTouches(basegfx::B2DPolyPolygon const&, basegfx::B2DPolygon const&)
|
||||||
basegfx::tools::applyLineDashing(basegfx::B3DPolyPolygon const&, std::__debug::vector<double, std::allocator<double> > const&, basegfx::B3DPolyPolygon*, basegfx::B3DPolyPolygon*, double)
|
basegfx::tools::applyLineDashing(basegfx::B3DPolyPolygon const&, std::__debug::vector<double, std::allocator<double> > const&, basegfx::B3DPolyPolygon*, basegfx::B3DPolyPolygon*, double)
|
||||||
@@ -783,6 +791,28 @@ binfilter::B3dEntityBucketMemArr::Insert(binfilter::B3dEntityBucketMemArr const*
|
|||||||
binfilter::B3dEntityBucketMemArr::Replace(char const*&, unsigned short)
|
binfilter::B3dEntityBucketMemArr::Replace(char const*&, unsigned short)
|
||||||
binfilter::B3dEntityBucketMemArr::Replace(char const**, unsigned short, unsigned short)
|
binfilter::B3dEntityBucketMemArr::Replace(char const**, unsigned short, unsigned short)
|
||||||
binfilter::B3dEntityBucketMemArr::_ForEach(unsigned short, unsigned short, unsigned char (*)(char const*&, void*), void*)
|
binfilter::B3dEntityBucketMemArr::_ForEach(unsigned short, unsigned short, unsigned char (*)(char const*&, void*), void*)
|
||||||
|
binfilter::ByteString::Append(char)
|
||||||
|
binfilter::ByteString::Assign(char const*, unsigned short)
|
||||||
|
binfilter::ByteString::Assign(char)
|
||||||
|
binfilter::ByteString::ByteString(char const*, unsigned short)
|
||||||
|
binfilter::ByteString::CompareIgnoreCaseToAscii(char const*, unsigned short) const
|
||||||
|
binfilter::ByteString::CompareTo(binfilter::ByteString const&, unsigned short) const
|
||||||
|
binfilter::ByteString::CompareTo(char const*, unsigned short) const
|
||||||
|
binfilter::ByteString::Equals(binfilter::ByteString const&, unsigned short, unsigned short) const
|
||||||
|
binfilter::ByteString::Equals(char const*, unsigned short, unsigned short) const
|
||||||
|
binfilter::ByteString::EqualsIgnoreCaseAscii(binfilter::ByteString const&) const
|
||||||
|
binfilter::ByteString::EqualsIgnoreCaseAscii(char const*) const
|
||||||
|
binfilter::ByteString::GetToken(unsigned short, char, unsigned short&) const
|
||||||
|
binfilter::ByteString::Match(binfilter::ByteString const&) const
|
||||||
|
binfilter::ByteString::SearchAndReplace(binfilter::ByteString const&, binfilter::ByteString const&, unsigned short)
|
||||||
|
binfilter::ByteString::SearchAndReplace(char const*, binfilter::ByteString const&, unsigned short)
|
||||||
|
binfilter::ByteString::SearchAndReplaceAll(binfilter::ByteString const&, binfilter::ByteString const&)
|
||||||
|
binfilter::ByteString::SearchAndReplaceAll(char const*, binfilter::ByteString const&)
|
||||||
|
binfilter::ByteString::SearchAndReplaceAll(char, char)
|
||||||
|
binfilter::ByteString::SearchBackward(char, unsigned short) const
|
||||||
|
binfilter::ByteString::SetChar(unsigned short, char)
|
||||||
|
binfilter::ByteString::SetToken(unsigned short, char, binfilter::ByteString const&, unsigned short)
|
||||||
|
binfilter::ByteString::ToUpperAscii()
|
||||||
binfilter::CharPosArray::Insert(binfilter::CharPosArray const*, unsigned short, unsigned short, unsigned short)
|
binfilter::CharPosArray::Insert(binfilter::CharPosArray const*, unsigned short, unsigned short, unsigned short)
|
||||||
binfilter::CharPosArray::Replace(int const&, unsigned short)
|
binfilter::CharPosArray::Replace(int const&, unsigned short)
|
||||||
binfilter::CharPosArray::Replace(int const*, unsigned short, unsigned short)
|
binfilter::CharPosArray::Replace(int const*, unsigned short, unsigned short)
|
||||||
@@ -883,6 +913,18 @@ binfilter::SortedPositions::Remove(unsigned short, unsigned short)
|
|||||||
binfilter::SortedPositions_SAR::Replace(unsigned int const&, unsigned short)
|
binfilter::SortedPositions_SAR::Replace(unsigned int const&, unsigned short)
|
||||||
binfilter::SortedPositions_SAR::Replace(unsigned int const*, unsigned short, unsigned short)
|
binfilter::SortedPositions_SAR::Replace(unsigned int const*, unsigned short, unsigned short)
|
||||||
binfilter::SortedPositions_SAR::_ForEach(unsigned short, unsigned short, unsigned char (*)(unsigned int const&, void*), void*)
|
binfilter::SortedPositions_SAR::_ForEach(unsigned short, unsigned short, unsigned char (*)(unsigned int const&, void*), void*)
|
||||||
|
binfilter::String::EqualsIgnoreCaseAscii(binfilter::String const&, unsigned short, unsigned short) const
|
||||||
|
binfilter::String::EqualsIgnoreCaseAscii(unsigned short const*) const
|
||||||
|
binfilter::String::GetQuotedToken(unsigned short, binfilter::String const&, unsigned short, unsigned short&) const
|
||||||
|
binfilter::String::GetQuotedTokenCount(binfilter::String const&, unsigned short) const
|
||||||
|
binfilter::String::ReplaceAscii(unsigned short, unsigned short, char const*, unsigned short)
|
||||||
|
binfilter::String::Reverse()
|
||||||
|
binfilter::String::Search(unsigned short const*, unsigned short) const
|
||||||
|
binfilter::String::SearchAndReplaceAll(binfilter::String const&, binfilter::String const&)
|
||||||
|
binfilter::String::SearchAndReplaceAllAscii(char const*, binfilter::String const&)
|
||||||
|
binfilter::String::SearchChar(unsigned short const*, unsigned short) const
|
||||||
|
binfilter::String::ToFloat() const
|
||||||
|
binfilter::String::intern() const
|
||||||
binfilter::SvBools::Insert(binfilter::SvBools const*, unsigned short, unsigned short, unsigned short)
|
binfilter::SvBools::Insert(binfilter::SvBools const*, unsigned short, unsigned short, unsigned short)
|
||||||
binfilter::SvBools::Replace(unsigned char const&, unsigned short)
|
binfilter::SvBools::Replace(unsigned char const&, unsigned short)
|
||||||
binfilter::SvBools::Replace(unsigned char const*, unsigned short, unsigned short)
|
binfilter::SvBools::Replace(unsigned char const*, unsigned short, unsigned short)
|
||||||
@@ -907,28 +949,28 @@ binfilter::SvShorts::Replace(short const&, unsigned short)
|
|||||||
binfilter::SvShorts::Replace(short const*, unsigned short, unsigned short)
|
binfilter::SvShorts::Replace(short const*, unsigned short, unsigned short)
|
||||||
binfilter::SvShorts::_ForEach(unsigned short, unsigned short, unsigned char (*)(short const&, void*), void*)
|
binfilter::SvShorts::_ForEach(unsigned short, unsigned short, unsigned char (*)(short const&, void*), void*)
|
||||||
binfilter::SvStringsISort::DeleteAndDestroy(unsigned short, unsigned short)
|
binfilter::SvStringsISort::DeleteAndDestroy(unsigned short, unsigned short)
|
||||||
binfilter::SvStringsISort::Insert(String* const&)
|
binfilter::SvStringsISort::Insert(binfilter::String* const&)
|
||||||
binfilter::SvStringsISort::Insert(String* const&, unsigned short&)
|
binfilter::SvStringsISort::Insert(binfilter::String* const&, unsigned short&)
|
||||||
binfilter::SvStringsISort::Insert(String* const*, unsigned short)
|
binfilter::SvStringsISort::Insert(binfilter::String* const*, unsigned short)
|
||||||
binfilter::SvStringsISort::Insert(binfilter::SvStringsISort const*, unsigned short, unsigned short)
|
binfilter::SvStringsISort::Insert(binfilter::SvStringsISort const*, unsigned short, unsigned short)
|
||||||
binfilter::SvStringsISort::Remove(String* const&, unsigned short)
|
binfilter::SvStringsISort::Remove(binfilter::String* const&, unsigned short)
|
||||||
binfilter::SvStringsISort::Remove(unsigned short, unsigned short)
|
binfilter::SvStringsISort::Remove(unsigned short, unsigned short)
|
||||||
binfilter::SvStringsISortDtor::DeleteAndDestroy(unsigned short, unsigned short)
|
binfilter::SvStringsISortDtor::DeleteAndDestroy(unsigned short, unsigned short)
|
||||||
binfilter::SvStringsISortDtor::Insert(String* const&)
|
binfilter::SvStringsISortDtor::Insert(binfilter::String* const&)
|
||||||
binfilter::SvStringsISortDtor::Insert(String* const&, unsigned short&)
|
binfilter::SvStringsISortDtor::Insert(binfilter::String* const&, unsigned short&)
|
||||||
binfilter::SvStringsISortDtor::Insert(String* const*, unsigned short)
|
binfilter::SvStringsISortDtor::Insert(binfilter::String* const*, unsigned short)
|
||||||
binfilter::SvStringsISortDtor::Insert(binfilter::SvStringsISortDtor const*, unsigned short, unsigned short)
|
binfilter::SvStringsISortDtor::Insert(binfilter::SvStringsISortDtor const*, unsigned short, unsigned short)
|
||||||
binfilter::SvStringsISortDtor::Remove(String* const&, unsigned short)
|
binfilter::SvStringsISortDtor::Remove(binfilter::String* const&, unsigned short)
|
||||||
binfilter::SvStringsISortDtor::Remove(unsigned short, unsigned short)
|
binfilter::SvStringsISortDtor::Remove(unsigned short, unsigned short)
|
||||||
binfilter::SvStringsSort::DeleteAndDestroy(unsigned short, unsigned short)
|
binfilter::SvStringsSort::DeleteAndDestroy(unsigned short, unsigned short)
|
||||||
binfilter::SvStringsSort::Insert(String* const&, unsigned short&)
|
binfilter::SvStringsSort::Insert(binfilter::String* const&, unsigned short&)
|
||||||
binfilter::SvStringsSort::Insert(String* const*, unsigned short)
|
binfilter::SvStringsSort::Insert(binfilter::String* const*, unsigned short)
|
||||||
binfilter::SvStringsSort::Insert(binfilter::SvStringsSort const*, unsigned short, unsigned short)
|
binfilter::SvStringsSort::Insert(binfilter::SvStringsSort const*, unsigned short, unsigned short)
|
||||||
binfilter::SvStringsSort::Remove(String* const&, unsigned short)
|
binfilter::SvStringsSort::Remove(binfilter::String* const&, unsigned short)
|
||||||
binfilter::SvStringsSortDtor::Insert(String* const&, unsigned short&)
|
binfilter::SvStringsSortDtor::Insert(binfilter::String* const&, unsigned short&)
|
||||||
binfilter::SvStringsSortDtor::Insert(String* const*, unsigned short)
|
binfilter::SvStringsSortDtor::Insert(binfilter::String* const*, unsigned short)
|
||||||
binfilter::SvStringsSortDtor::Insert(binfilter::SvStringsSortDtor const*, unsigned short, unsigned short)
|
binfilter::SvStringsSortDtor::Insert(binfilter::SvStringsSortDtor const*, unsigned short, unsigned short)
|
||||||
binfilter::SvStringsSortDtor::Remove(String* const&, unsigned short)
|
binfilter::SvStringsSortDtor::Remove(binfilter::String* const&, unsigned short)
|
||||||
binfilter::SvStringsSortDtor::Remove(unsigned short, unsigned short)
|
binfilter::SvStringsSortDtor::Remove(unsigned short, unsigned short)
|
||||||
binfilter::SvULongs::Remove(unsigned short, unsigned short)
|
binfilter::SvULongs::Remove(unsigned short, unsigned short)
|
||||||
binfilter::SvULongs::Replace(unsigned long const&, unsigned short)
|
binfilter::SvULongs::Replace(unsigned long const&, unsigned short)
|
||||||
@@ -1366,6 +1408,8 @@ oox::xls::Dxf::importProtection(oox::AttributeList const&)
|
|||||||
oox::xls::ExternalLinkBuffer::importExternalName(oox::xls::BiffInputStream&)
|
oox::xls::ExternalLinkBuffer::importExternalName(oox::xls::BiffInputStream&)
|
||||||
oox::xls::FormulaParser::convertNumberToHyperlink(rtl::OUString const&, double) const
|
oox::xls::FormulaParser::convertNumberToHyperlink(rtl::OUString const&, double) const
|
||||||
oox::xls::FormulaParser::importOleTargetLink(oox::xls::BiffInputStream&, unsigned short const*) const
|
oox::xls::FormulaParser::importOleTargetLink(oox::xls::BiffInputStream&, unsigned short const*) const
|
||||||
|
oox::xls::FormulaParserImpl::removeOperand(unsigned long, unsigned long)
|
||||||
|
oox::xls::FormulaProcessorBase::generateApiRangeString(com::sun::star::table::CellRangeAddress const&) const
|
||||||
oox::xls::FunctionParamInfoIterator::getParamInfo() const
|
oox::xls::FunctionParamInfoIterator::getParamInfo() const
|
||||||
oox::xls::FunctionProvider::getFuncInfoFromOdfFuncName(rtl::OUString const&) const
|
oox::xls::FunctionProvider::getFuncInfoFromOdfFuncName(rtl::OUString const&) const
|
||||||
oox::xls::ShapeAnchor::getToCell() const
|
oox::xls::ShapeAnchor::getToCell() const
|
||||||
@@ -1377,6 +1421,7 @@ oox::xls::StylesBuffer::getDxf(int) const
|
|||||||
oox::xls::StylesBuffer::writeStyleXfToPropertyMap(oox::PropertyMap&, int) const
|
oox::xls::StylesBuffer::writeStyleXfToPropertyMap(oox::PropertyMap&, int) const
|
||||||
oox::xls::UnitConverter::calcOoxErrorCode(unsigned char) const
|
oox::xls::UnitConverter::calcOoxErrorCode(unsigned char) const
|
||||||
oox::xls::WorkbookHelper::getBiffFilter() const
|
oox::xls::WorkbookHelper::getBiffFilter() const
|
||||||
|
oox::xls::WorkbookHelper::getCellFromDoc(com::sun::star::table::CellAddress const&) const
|
||||||
oox::xls::WorkbookHelper::setTextEncoding(unsigned short)
|
oox::xls::WorkbookHelper::setTextEncoding(unsigned short)
|
||||||
oox::xls::WorksheetHelper::getCellAddress(com::sun::star::uno::Reference<com::sun::star::table::XCell> const&)
|
oox::xls::WorksheetHelper::getCellAddress(com::sun::star::uno::Reference<com::sun::star::table::XCell> const&)
|
||||||
oox::xls::WorksheetHelper::getColumn(int) const
|
oox::xls::WorksheetHelper::getColumn(int) const
|
||||||
@@ -1447,8 +1492,8 @@ sdr::overlay::OverlayRollingRectangleStriped::setShowBounds(bool)
|
|||||||
sdr::overlay::OverlayTriangle::setSecondPosition(basegfx::B2DPoint const&)
|
sdr::overlay::OverlayTriangle::setSecondPosition(basegfx::B2DPoint const&)
|
||||||
sdr::overlay::OverlayTriangle::setThirdPosition(basegfx::B2DPoint const&)
|
sdr::overlay::OverlayTriangle::setThirdPosition(basegfx::B2DPoint const&)
|
||||||
sdr::table::Cell::GetStyleSheetPool() const
|
sdr::table::Cell::GetStyleSheetPool() const
|
||||||
sdr::table::SvxTableController::DeleteTable()
|
sdr::table::SdrTableObj::getColumnCount() const
|
||||||
sdr::table::SvxTableController::getSelectionCursor()
|
sdr::table::SdrTableObj::getRowCount() const
|
||||||
sfx2::TaskPaneWrapper::GetChildWindowId()
|
sfx2::TaskPaneWrapper::GetChildWindowId()
|
||||||
slideshow::internal::DrawShapeSubsetting::reset(slideshow::internal::DocTreeNode const&, boost::shared_ptr<GDIMetaFile> const&)
|
slideshow::internal::DrawShapeSubsetting::reset(slideshow::internal::DocTreeNode const&, boost::shared_ptr<GDIMetaFile> const&)
|
||||||
std::__cxx1998::map<rtl::OUString, OutputStorageWrapper_Impl*, OUStringLess, std::allocator<std::pair<rtl::OUString const, OutputStorageWrapper_Impl*> > >::~map()
|
std::__cxx1998::map<rtl::OUString, OutputStorageWrapper_Impl*, OUStringLess, std::allocator<std::pair<rtl::OUString const, OutputStorageWrapper_Impl*> > >::~map()
|
||||||
@@ -1481,7 +1526,6 @@ ucbhelper::ContentBroker::ContentBroker(com::sun::star::uno::Reference<com::sun:
|
|||||||
ucbhelper::SimpleCertificateValidationRequest::getResponse() const
|
ucbhelper::SimpleCertificateValidationRequest::getResponse() const
|
||||||
utl::OConfigurationNode::appendNode(rtl::OUString const&, utl::OConfigurationNode const&) const
|
utl::OConfigurationNode::appendNode(rtl::OUString const&, utl::OConfigurationNode const&) const
|
||||||
utl::TransliterationWrapper::compareSubstring(String const&, int, int, String const&, int, int) const
|
utl::TransliterationWrapper::compareSubstring(String const&, int, int, String const&, int, int) const
|
||||||
vcl::I18nHelper::GetDate(Date const&) const
|
|
||||||
vcl::LazyDeletor<Menu>::is_less(Menu*, Menu*)
|
vcl::LazyDeletor<Menu>::is_less(Menu*, Menu*)
|
||||||
vcl::PDFExtOutDevData::EndGroup()
|
vcl::PDFExtOutDevData::EndGroup()
|
||||||
vcl::PDFExtOutDevData::GetFormsFormat() const
|
vcl::PDFExtOutDevData::GetFormsFormat() const
|
||||||
|
Reference in New Issue
Block a user