improve unusedfields loplugin readonly analysis
(*) better analysis of init-list-expressions (*) fix analysis of calls to members, turns out there is no parameter offset after all (*) check for passing arrays to functions, need to check if the parameter is T* or T const * (*) check for assigning field to a T& variable Change-Id: Ie6f07f970310c3854e74619fe4fd02a299bf6879
This commit is contained in:
parent
5a6d6429f4
commit
8045cef05c
@ -82,7 +82,7 @@ public:
|
|||||||
bool VisitMemberExpr( const MemberExpr* );
|
bool VisitMemberExpr( const MemberExpr* );
|
||||||
bool VisitDeclRefExpr( const DeclRefExpr* );
|
bool VisitDeclRefExpr( const DeclRefExpr* );
|
||||||
bool VisitCXXConstructorDecl( const CXXConstructorDecl* );
|
bool VisitCXXConstructorDecl( const CXXConstructorDecl* );
|
||||||
bool VisitVarDecl( const VarDecl* );
|
bool VisitInitListExpr( const InitListExpr* );
|
||||||
bool TraverseCXXConstructorDecl( CXXConstructorDecl* );
|
bool TraverseCXXConstructorDecl( CXXConstructorDecl* );
|
||||||
bool TraverseCXXMethodDecl( CXXMethodDecl* );
|
bool TraverseCXXMethodDecl( CXXMethodDecl* );
|
||||||
bool TraverseFunctionDecl( FunctionDecl* );
|
bool TraverseFunctionDecl( FunctionDecl* );
|
||||||
@ -93,7 +93,9 @@ private:
|
|||||||
void checkWriteOnly(const FieldDecl* fieldDecl, const Expr* memberExpr);
|
void checkWriteOnly(const FieldDecl* fieldDecl, const Expr* memberExpr);
|
||||||
void checkReadOnly(const FieldDecl* fieldDecl, const Expr* memberExpr);
|
void checkReadOnly(const FieldDecl* fieldDecl, const Expr* memberExpr);
|
||||||
bool isSomeKindOfZero(const Expr* arg);
|
bool isSomeKindOfZero(const Expr* arg);
|
||||||
bool IsPassedByNonConstRef(const Stmt * child, const CallExpr * callExpr, const FunctionDecl * calleeFunctionDecl, bool bParamsAndArgsOffset);
|
bool IsPassedByNonConst(const FieldDecl* fieldDecl, const Stmt * child, const CallExpr * callExpr,
|
||||||
|
const FunctionDecl * calleeFunctionDecl);
|
||||||
|
bool IsPassedByNonConst(const FieldDecl* fieldDecl, const Stmt * child, const CXXConstructExpr * cxxConstructExpr);
|
||||||
|
|
||||||
RecordDecl * insideMoveOrCopyDeclParent;
|
RecordDecl * insideMoveOrCopyDeclParent;
|
||||||
RecordDecl * insideStreamOutputOperator;
|
RecordDecl * insideStreamOutputOperator;
|
||||||
@ -600,9 +602,8 @@ void UnusedFields::checkReadOnly(const FieldDecl* fieldDecl, const Expr* memberE
|
|||||||
if (op == UO_AddrOf || op == UO_PostInc || op == UO_PostDec || op == UO_PreInc || op == UO_PreDec)
|
if (op == UO_AddrOf || op == UO_PostInc || op == UO_PostDec || op == UO_PreInc || op == UO_PreDec)
|
||||||
{
|
{
|
||||||
bPotentiallyWrittenTo = true;
|
bPotentiallyWrittenTo = true;
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
walkupUp();
|
break;
|
||||||
}
|
}
|
||||||
else if (auto arraySubscriptExpr = dyn_cast<ArraySubscriptExpr>(parent))
|
else if (auto arraySubscriptExpr = dyn_cast<ArraySubscriptExpr>(parent))
|
||||||
{
|
{
|
||||||
@ -621,10 +622,8 @@ void UnusedFields::checkReadOnly(const FieldDecl* fieldDecl, const Expr* memberE
|
|||||||
&& operatorCallExpr->getArg(0) == child && !calleeMethodDecl->isConst())
|
&& operatorCallExpr->getArg(0) == child && !calleeMethodDecl->isConst())
|
||||||
{
|
{
|
||||||
bPotentiallyWrittenTo = true;
|
bPotentiallyWrittenTo = true;
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
bool bParamsAndArgsOffset = calleeMethodDecl != nullptr;
|
else if (IsPassedByNonConst(fieldDecl, child, operatorCallExpr, calleeFunctionDecl))
|
||||||
if (IsPassedByNonConstRef(child, operatorCallExpr, calleeFunctionDecl, bParamsAndArgsOffset))
|
|
||||||
bPotentiallyWrittenTo = true;
|
bPotentiallyWrittenTo = true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -647,8 +646,7 @@ void UnusedFields::checkReadOnly(const FieldDecl* fieldDecl, const Expr* memberE
|
|||||||
bPotentiallyWrittenTo = true;
|
bPotentiallyWrittenTo = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
// check for being passed as parameter by non-const-reference
|
if (IsPassedByNonConst(fieldDecl, child, cxxMemberCallExpr, calleeMethodDecl))
|
||||||
if (IsPassedByNonConstRef(child, cxxMemberCallExpr, calleeMethodDecl, false/*bParamsAndArgsOffset*/))
|
|
||||||
bPotentiallyWrittenTo = true;
|
bPotentiallyWrittenTo = true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -657,24 +655,15 @@ void UnusedFields::checkReadOnly(const FieldDecl* fieldDecl, const Expr* memberE
|
|||||||
}
|
}
|
||||||
else if (auto cxxConstructExpr = dyn_cast<CXXConstructExpr>(parent))
|
else if (auto cxxConstructExpr = dyn_cast<CXXConstructExpr>(parent))
|
||||||
{
|
{
|
||||||
const CXXConstructorDecl * cxxConstructorDecl = cxxConstructExpr->getConstructor();
|
if (IsPassedByNonConst(fieldDecl, child, cxxConstructExpr))
|
||||||
// check for being passed as parameter by non-const-reference
|
|
||||||
unsigned len = std::min(cxxConstructExpr->getNumArgs(),
|
|
||||||
cxxConstructorDecl->getNumParams());
|
|
||||||
for (unsigned i = 0; i < len; ++i)
|
|
||||||
if (cxxConstructExpr->getArg(i) == child)
|
|
||||||
if (loplugin::TypeCheck(cxxConstructorDecl->getParamDecl(i)->getType()).NonConst().LvalueReference())
|
|
||||||
{
|
|
||||||
bPotentiallyWrittenTo = true;
|
bPotentiallyWrittenTo = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
break;
|
|
||||||
}
|
|
||||||
else if (auto callExpr = dyn_cast<CallExpr>(parent))
|
else if (auto callExpr = dyn_cast<CallExpr>(parent))
|
||||||
{
|
{
|
||||||
const FunctionDecl * calleeFunctionDecl = callExpr->getDirectCallee();
|
const FunctionDecl * calleeFunctionDecl = callExpr->getDirectCallee();
|
||||||
if (calleeFunctionDecl) {
|
if (calleeFunctionDecl) {
|
||||||
if (IsPassedByNonConstRef(child, callExpr, calleeFunctionDecl, false/*bParamsAndArgsOffset*/))
|
if (IsPassedByNonConst(fieldDecl, child, callExpr, calleeFunctionDecl))
|
||||||
bPotentiallyWrittenTo = true;
|
bPotentiallyWrittenTo = true;
|
||||||
} else
|
} else
|
||||||
bPotentiallyWrittenTo = true; // conservative, could improve
|
bPotentiallyWrittenTo = true; // conservative, could improve
|
||||||
@ -687,7 +676,12 @@ void UnusedFields::checkReadOnly(const FieldDecl* fieldDecl, const Expr* memberE
|
|||||||
|| op == BO_DivAssign || op == BO_RemAssign || op == BO_AddAssign
|
|| op == BO_DivAssign || op == BO_RemAssign || op == BO_AddAssign
|
||||||
|| op == BO_SubAssign || op == BO_ShlAssign || op == BO_ShrAssign
|
|| op == BO_SubAssign || op == BO_ShlAssign || op == BO_ShrAssign
|
||||||
|| op == BO_AndAssign || op == BO_XorAssign || op == BO_OrAssign;
|
|| op == BO_AndAssign || op == BO_XorAssign || op == BO_OrAssign;
|
||||||
if (binaryOp->getLHS() == child && assignmentOp) {
|
if (assignmentOp)
|
||||||
|
{
|
||||||
|
if (binaryOp->getLHS() == child)
|
||||||
|
bPotentiallyWrittenTo = true;
|
||||||
|
else if (loplugin::TypeCheck(binaryOp->getLHS()->getType()).LvalueReference().NonConstVolatile())
|
||||||
|
// if the LHS is a non-const reference, we could write to the field later on
|
||||||
bPotentiallyWrittenTo = true;
|
bPotentiallyWrittenTo = true;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@ -748,6 +742,7 @@ void UnusedFields::checkReadOnly(const FieldDecl* fieldDecl, const Expr* memberE
|
|||||||
parent->dump();
|
parent->dump();
|
||||||
}
|
}
|
||||||
memberExpr->dump();
|
memberExpr->dump();
|
||||||
|
fieldDecl->getType()->dump();
|
||||||
}
|
}
|
||||||
|
|
||||||
MyFieldInfo fieldInfo = niceName(fieldDecl);
|
MyFieldInfo fieldInfo = niceName(fieldDecl);
|
||||||
@ -755,16 +750,52 @@ void UnusedFields::checkReadOnly(const FieldDecl* fieldDecl, const Expr* memberE
|
|||||||
writeToSet.insert(fieldInfo);
|
writeToSet.insert(fieldInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool UnusedFields::IsPassedByNonConstRef(const Stmt * child, const CallExpr * callExpr,
|
bool UnusedFields::IsPassedByNonConst(const FieldDecl* fieldDecl, const Stmt * child, const CallExpr * callExpr,
|
||||||
const FunctionDecl * calleeFunctionDecl,
|
const FunctionDecl * calleeFunctionDecl)
|
||||||
bool bParamsAndArgsOffset)
|
|
||||||
{
|
{
|
||||||
unsigned len = std::min(callExpr->getNumArgs() + (bParamsAndArgsOffset ? 1 : 0),
|
unsigned len = std::min(callExpr->getNumArgs(),
|
||||||
calleeFunctionDecl->getNumParams());
|
calleeFunctionDecl->getNumParams());
|
||||||
|
// if it's an array, passing it by value to a method typically means the
|
||||||
|
// callee takes a pointer and can modify the array
|
||||||
|
if (fieldDecl->getType()->isConstantArrayType())
|
||||||
|
{
|
||||||
for (unsigned i = 0; i < len; ++i)
|
for (unsigned i = 0; i < len; ++i)
|
||||||
if (callExpr->getArg(i + (bParamsAndArgsOffset ? 1 : 0)) == child)
|
if (callExpr->getArg(i) == child)
|
||||||
|
if (loplugin::TypeCheck(calleeFunctionDecl->getParamDecl(i)->getType()).NonConst().Pointer())
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
for (unsigned i = 0; i < len; ++i)
|
||||||
|
if (callExpr->getArg(i) == child)
|
||||||
if (loplugin::TypeCheck(calleeFunctionDecl->getParamDecl(i)->getType()).NonConst().LvalueReference())
|
if (loplugin::TypeCheck(calleeFunctionDecl->getParamDecl(i)->getType()).NonConst().LvalueReference())
|
||||||
return true;
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool UnusedFields::IsPassedByNonConst(const FieldDecl* fieldDecl, const Stmt * child, const CXXConstructExpr * cxxConstructExpr)
|
||||||
|
{
|
||||||
|
const CXXConstructorDecl * cxxConstructorDecl = cxxConstructExpr->getConstructor();
|
||||||
|
unsigned len = std::min(cxxConstructExpr->getNumArgs(),
|
||||||
|
cxxConstructorDecl->getNumParams());
|
||||||
|
// if it's an array, passing it by value to a method typically means the
|
||||||
|
// callee takes a pointer and can modify the array
|
||||||
|
if (fieldDecl->getType()->isConstantArrayType())
|
||||||
|
{
|
||||||
|
for (unsigned i = 0; i < len; ++i)
|
||||||
|
if (cxxConstructExpr->getArg(i) == child)
|
||||||
|
if (loplugin::TypeCheck(cxxConstructorDecl->getParamDecl(i)->getType()).NonConst().Pointer())
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
for (unsigned i = 0; i < len; ++i)
|
||||||
|
if (cxxConstructExpr->getArg(i) == child)
|
||||||
|
if (loplugin::TypeCheck(cxxConstructorDecl->getParamDecl(i)->getType()).NonConst().LvalueReference())
|
||||||
|
return true;
|
||||||
|
|
||||||
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -803,28 +834,12 @@ bool UnusedFields::VisitCXXConstructorDecl( const CXXConstructorDecl* cxxConstru
|
|||||||
|
|
||||||
// Fields that are assigned via init-list-expr do not get visited in VisitDeclRef, so
|
// Fields that are assigned via init-list-expr do not get visited in VisitDeclRef, so
|
||||||
// have to do it here.
|
// have to do it here.
|
||||||
// TODO could be more precise here about which fields are actually being written to
|
bool UnusedFields::VisitInitListExpr( const InitListExpr* initListExpr)
|
||||||
bool UnusedFields::VisitVarDecl( const VarDecl* varDecl)
|
|
||||||
{
|
{
|
||||||
if (!varDecl->getLocation().isValid() || ignoreLocation( varDecl ))
|
if (ignoreLocation( initListExpr ))
|
||||||
return true;
|
|
||||||
// ignore stuff that forms part of the stable URE interface
|
|
||||||
if (isInUnoIncludeFile(compiler.getSourceManager().getSpellingLoc(varDecl->getLocation())))
|
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
if (!varDecl->hasInit())
|
QualType varType = initListExpr->getType().getDesugaredType(compiler.getASTContext());
|
||||||
return true;
|
|
||||||
auto initListExpr = dyn_cast<InitListExpr>(varDecl->getInit()->IgnoreImplicit());
|
|
||||||
if (!initListExpr)
|
|
||||||
return true;
|
|
||||||
|
|
||||||
// If this is an array, navigate down until we hit a record.
|
|
||||||
// It appears to be somewhat painful to navigate down an array type structure reliably.
|
|
||||||
QualType varType = varDecl->getType().getDesugaredType(compiler.getASTContext());
|
|
||||||
while (varType->isArrayType() || varType->isConstantArrayType()
|
|
||||||
|| varType->isIncompleteArrayType() || varType->isVariableArrayType()
|
|
||||||
|| varType->isDependentSizedArrayType())
|
|
||||||
varType = varType->getAsArrayTypeUnsafe()->getElementType().getDesugaredType(compiler.getASTContext());
|
|
||||||
auto recordType = varType->getAs<RecordType>();
|
auto recordType = varType->getAs<RecordType>();
|
||||||
if (!recordType)
|
if (!recordType)
|
||||||
return true;
|
return true;
|
||||||
|
@ -153,7 +153,23 @@ for d in definitionSet:
|
|||||||
parentClazz = d[0];
|
parentClazz = d[0];
|
||||||
if d in writeToSet:
|
if d in writeToSet:
|
||||||
continue
|
continue
|
||||||
|
fieldType = definitionToTypeMap[d]
|
||||||
srcLoc = definitionToSourceLocationMap[d];
|
srcLoc = definitionToSourceLocationMap[d];
|
||||||
|
if "ModuleClient" in fieldType:
|
||||||
|
continue
|
||||||
|
# this is all representations of on-disk data structures
|
||||||
|
if (srcLoc.startswith("sc/source/filter/inc/scflt.hxx")
|
||||||
|
or srcLoc.startswith("sw/source/filter/ww8/")
|
||||||
|
or srcLoc.startswith("vcl/source/filter/sgvmain.hxx")
|
||||||
|
or srcLoc.startswith("vcl/source/filter/sgfbram.hxx")
|
||||||
|
or srcLoc.startswith("vcl/inc/unx/XIM.h")
|
||||||
|
or srcLoc.startswith("vcl/inc/unx/gtk/gloactiongroup.h")
|
||||||
|
or srcLoc.startswith("include/svl/svdde.hxx")):
|
||||||
|
continue
|
||||||
|
# I really don't care about these ancient file formats
|
||||||
|
if (srcLoc.startswith("hwpfilter/")
|
||||||
|
or srcLoc.startswith("lotuswordpro/")):
|
||||||
|
continue
|
||||||
readonlySet.add((d[0] + " " + d[1] + " " + definitionToTypeMap[d], srcLoc))
|
readonlySet.add((d[0] + " " + d[1] + " " + definitionToTypeMap[d], srcLoc))
|
||||||
|
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,7 @@
|
|||||||
basctl/source/inc/dlged.hxx:121
|
basctl/source/inc/dlged.hxx:121
|
||||||
basctl::DlgEditor pObjFac std::unique_ptr<DlgEdFactory>
|
basctl::DlgEditor pObjFac std::unique_ptr<DlgEdFactory>
|
||||||
|
basic/qa/cppunit/basictest.hxx:27
|
||||||
|
MacroSnippet maDll class BasicDLL
|
||||||
basic/source/runtime/dllmgr.hxx:48
|
basic/source/runtime/dllmgr.hxx:48
|
||||||
SbiDllMgr impl_ std::unique_ptr<Impl>
|
SbiDllMgr impl_ std::unique_ptr<Impl>
|
||||||
canvas/source/vcl/canvasbitmap.hxx:117
|
canvas/source/vcl/canvasbitmap.hxx:117
|
||||||
@ -16,6 +18,8 @@ chart2/source/view/inc/GL3DRenderer.hxx:66
|
|||||||
chart::opengl3D::LightSource pad3 float
|
chart::opengl3D::LightSource pad3 float
|
||||||
comphelper/source/container/enumerablemap.cxx:299
|
comphelper/source/container/enumerablemap.cxx:299
|
||||||
comphelper::MapEnumeration m_xKeepMapAlive Reference<class com::sun::star::uno::XInterface>
|
comphelper::MapEnumeration m_xKeepMapAlive Reference<class com::sun::star::uno::XInterface>
|
||||||
|
connectivity/source/commontools/sqlerror.cxx:89
|
||||||
|
connectivity::SQLError_Impl m_aContext Reference<class com::sun::star::uno::XComponentContext>
|
||||||
connectivity/source/drivers/evoab2/EApi.h:122
|
connectivity/source/drivers/evoab2/EApi.h:122
|
||||||
(anonymous) address_format char *
|
(anonymous) address_format char *
|
||||||
connectivity/source/drivers/evoab2/EApi.h:126
|
connectivity/source/drivers/evoab2/EApi.h:126
|
||||||
@ -34,24 +38,18 @@ cppu/source/threadpool/threadpool.cxx:377
|
|||||||
_uno_ThreadPool dummy sal_Int32
|
_uno_ThreadPool dummy sal_Int32
|
||||||
cppu/source/typelib/typelib.cxx:61
|
cppu/source/typelib/typelib.cxx:61
|
||||||
AlignSize_Impl nInt16 sal_Int16
|
AlignSize_Impl nInt16 sal_Int16
|
||||||
dbaccess/source/sdbtools/connection/connectiondependent.hxx:116
|
dbaccess/source/sdbtools/inc/connectiondependent.hxx:116
|
||||||
sdbtools::ConnectionDependentComponent::EntryGuard m_aMutexGuard ::osl::MutexGuard
|
sdbtools::ConnectionDependentComponent::EntryGuard m_aMutexGuard ::osl::MutexGuard
|
||||||
dbaccess/source/sdbtools/connection/connectiontools.hxx:48
|
emfio/source/emfuno/xemfparser.cxx:59
|
||||||
sdbtools::ConnectionTools m_aModuleClient class sdbtools::SdbtClient
|
emfio::emfreader::XEmfParser context_ uno::Reference<uno::XComponentContext>
|
||||||
dbaccess/source/sdbtools/connection/objectnames.hxx:44
|
|
||||||
sdbtools::ObjectNames m_aModuleClient class sdbtools::SdbtClient
|
|
||||||
dbaccess/source/sdbtools/connection/tablename.cxx:56
|
|
||||||
sdbtools::TableName_Impl m_aModuleClient class sdbtools::SdbtClient
|
|
||||||
extensions/source/propctrlr/propertyhandler.hxx:80
|
extensions/source/propctrlr/propertyhandler.hxx:80
|
||||||
pcr::PropertyHandler m_aEnsureResAccess class pcr::PcrClient
|
pcr::PropertyHandler m_aEnsureResAccess class pcr::PcrClient
|
||||||
extensions/source/scanner/scanner.hxx:46
|
extensions/source/scanner/scanner.hxx:46
|
||||||
ScannerManager maProtector osl::Mutex
|
ScannerManager maProtector osl::Mutex
|
||||||
filter/source/xsltdialog/xmlfiltersettingsdialog.hxx:71
|
filter/source/xsltdialog/xmlfiltersettingsdialog.hxx:71
|
||||||
XMLFilterListBox m_aEnsureResMgr class EnsureResMgr
|
XMLFilterListBox m_aEnsureResLocale class EnsureResLocale
|
||||||
filter/source/xsltdialog/xmlfiltersettingsdialog.hxx:130
|
filter/source/xsltdialog/xmlfiltersettingsdialog.hxx:130
|
||||||
XMLFilterSettingsDialog maEnsureResMgr class EnsureResMgr
|
XMLFilterSettingsDialog maEnsureResLocale class EnsureResLocale
|
||||||
framework/inc/dispatch/oxt_handler.hxx:92
|
|
||||||
framework::Oxt_Handler m_xSelfHold css::uno::Reference<css::uno::XInterface>
|
|
||||||
include/comphelper/MasterPropertySet.hxx:38
|
include/comphelper/MasterPropertySet.hxx:38
|
||||||
comphelper::SlaveData mxSlave css::uno::Reference<css::beans::XPropertySet>
|
comphelper::SlaveData mxSlave css::uno::Reference<css::beans::XPropertySet>
|
||||||
include/drawinglayer/primitive2d/textlayoutdevice.hxx:61
|
include/drawinglayer/primitive2d/textlayoutdevice.hxx:61
|
||||||
@ -70,20 +68,112 @@ include/svtools/genericunodialog.hxx:170
|
|||||||
svt::UnoDialogEntryGuard m_aGuard ::osl::MutexGuard
|
svt::UnoDialogEntryGuard m_aGuard ::osl::MutexGuard
|
||||||
include/svtools/unoevent.hxx:161
|
include/svtools/unoevent.hxx:161
|
||||||
SvEventDescriptor xParentRef css::uno::Reference<css::uno::XInterface>
|
SvEventDescriptor xParentRef css::uno::Reference<css::uno::XInterface>
|
||||||
|
include/vcl/pdfwriter.hxx:550
|
||||||
|
vcl::PDFWriter::PDFSignContext m_pDerEncoded sal_Int8 *
|
||||||
|
include/vcl/pdfwriter.hxx:552
|
||||||
|
vcl::PDFWriter::PDFSignContext m_nDerEncoded sal_Int32
|
||||||
|
include/vcl/pdfwriter.hxx:554
|
||||||
|
vcl::PDFWriter::PDFSignContext m_pByteRange1 void *
|
||||||
|
include/vcl/pdfwriter.hxx:556
|
||||||
|
vcl::PDFWriter::PDFSignContext m_nByteRange1 sal_Int32
|
||||||
|
include/vcl/pdfwriter.hxx:558
|
||||||
|
vcl::PDFWriter::PDFSignContext m_pByteRange2 void *
|
||||||
|
include/vcl/pdfwriter.hxx:560
|
||||||
|
vcl::PDFWriter::PDFSignContext m_nByteRange2 sal_Int32
|
||||||
|
include/vcl/pdfwriter.hxx:561
|
||||||
|
vcl::PDFWriter::PDFSignContext m_aSignTSA class rtl::OUString
|
||||||
|
include/vcl/pdfwriter.hxx:562
|
||||||
|
vcl::PDFWriter::PDFSignContext m_aSignPassword class rtl::OUString
|
||||||
|
include/vcl/pdfwriter.hxx:564
|
||||||
|
vcl::PDFWriter::PDFSignContext m_rCMSHexBuffer class rtl::OStringBuffer &
|
||||||
|
include/vcl/toolbox.hxx:106
|
||||||
|
ToolBox maInDockRect tools::Rectangle
|
||||||
include/vcl/uitest/uiobject.hxx:241
|
include/vcl/uitest/uiobject.hxx:241
|
||||||
TabPageUIObject mxTabPage VclPtr<class TabPage>
|
TabPageUIObject mxTabPage VclPtr<class TabPage>
|
||||||
include/xmloff/formlayerexport.hxx:173
|
include/xmloff/formlayerexport.hxx:173
|
||||||
xmloff::OOfficeFormsExport m_pImpl std::unique_ptr<OFormsRootExport>
|
xmloff::OOfficeFormsExport m_pImpl std::unique_ptr<OFormsRootExport>
|
||||||
|
l10ntools/inc/export.hxx:75
|
||||||
|
ResData nIdLevel enum IdLevel
|
||||||
|
l10ntools/inc/export.hxx:76
|
||||||
|
ResData bChild _Bool
|
||||||
|
l10ntools/inc/export.hxx:77
|
||||||
|
ResData bChildWithText _Bool
|
||||||
|
l10ntools/inc/export.hxx:79
|
||||||
|
ResData bText _Bool
|
||||||
|
l10ntools/inc/export.hxx:80
|
||||||
|
ResData bQuickHelpText _Bool
|
||||||
|
l10ntools/inc/export.hxx:81
|
||||||
|
ResData bTitle _Bool
|
||||||
|
l10ntools/inc/export.hxx:90
|
||||||
|
ResData sQuickHelpText OStringHashMap
|
||||||
|
l10ntools/inc/export.hxx:92
|
||||||
|
ResData sTitle OStringHashMap
|
||||||
|
l10ntools/inc/export.hxx:94
|
||||||
|
ResData sTextTyp class rtl::OString
|
||||||
|
l10ntools/inc/export.hxx:96
|
||||||
|
ResData m_aList ExportList
|
||||||
|
l10ntools/inc/export.hxx:121
|
||||||
|
Export::(anonymous) mSimple std::ofstream *
|
||||||
|
l10ntools/inc/export.hxx:122
|
||||||
|
Export::(anonymous) mPo class PoOfstream *
|
||||||
|
l10ntools/inc/export.hxx:124
|
||||||
|
Export aOutput union (anonymous union at /home/noel/libo3/l10ntools/inc/export.hxx:119:5)
|
||||||
|
l10ntools/inc/export.hxx:126
|
||||||
|
Export aResStack ResStack
|
||||||
|
l10ntools/inc/export.hxx:128
|
||||||
|
Export bDefine _Bool
|
||||||
|
l10ntools/inc/export.hxx:129
|
||||||
|
Export bNextMustBeDefineEOL _Bool
|
||||||
|
l10ntools/inc/export.hxx:130
|
||||||
|
Export nLevel std::size_t
|
||||||
|
l10ntools/inc/export.hxx:131
|
||||||
|
Export nList enum ExportListType
|
||||||
|
l10ntools/inc/export.hxx:132
|
||||||
|
Export nListLevel std::size_t
|
||||||
|
l10ntools/inc/export.hxx:133
|
||||||
|
Export bMergeMode _Bool
|
||||||
|
l10ntools/inc/export.hxx:134
|
||||||
|
Export sMergeSrc class rtl::OString
|
||||||
|
l10ntools/inc/export.hxx:136
|
||||||
|
Export bReadOver _Bool
|
||||||
|
l10ntools/inc/export.hxx:137
|
||||||
|
Export sFilename class rtl::OString
|
||||||
|
l10ntools/inc/export.hxx:139
|
||||||
|
Export aLanguages std::vector<OString>
|
||||||
|
l10ntools/inc/export.hxx:280
|
||||||
|
MergeData sGID class rtl::OString
|
||||||
|
l10ntools/inc/export.hxx:281
|
||||||
|
MergeData sLID class rtl::OString
|
||||||
|
l10ntools/inc/export.hxx:334
|
||||||
|
QueueEntry nTyp int
|
||||||
|
l10ntools/inc/export.hxx:335
|
||||||
|
QueueEntry sLine class rtl::OString
|
||||||
|
l10ntools/inc/export.hxx:346
|
||||||
|
ParserQueue bCurrentIsM _Bool
|
||||||
|
l10ntools/inc/export.hxx:347
|
||||||
|
ParserQueue bNextIsM _Bool
|
||||||
|
l10ntools/inc/export.hxx:348
|
||||||
|
ParserQueue bLastWasM _Bool
|
||||||
|
l10ntools/inc/export.hxx:349
|
||||||
|
ParserQueue bMflag _Bool
|
||||||
|
l10ntools/inc/export.hxx:353
|
||||||
|
ParserQueue aQueueNext std::queue<QueueEntry> *
|
||||||
|
l10ntools/inc/export.hxx:354
|
||||||
|
ParserQueue aQueueCur std::queue<QueueEntry> *
|
||||||
|
l10ntools/inc/export.hxx:356
|
||||||
|
ParserQueue aExport class Export &
|
||||||
|
l10ntools/inc/export.hxx:357
|
||||||
|
ParserQueue bStart _Bool
|
||||||
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:50
|
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:50
|
||||||
GtvApplicationWindow parent_instance GtkApplicationWindow
|
GtvApplicationWindow parent_instance GtkApplicationWindow
|
||||||
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:54
|
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:54
|
||||||
GtvApplicationWindow doctype LibreOfficeKitDocumentType
|
GtvApplicationWindow doctype LibreOfficeKitDocumentType
|
||||||
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:73
|
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:73
|
||||||
GtvApplicationWindowClass parentClass GtkApplicationWindow
|
GtvApplicationWindowClass parentClass GtkApplicationWindowClass
|
||||||
libreofficekit/qa/gtktiledviewer/gtv-application.hxx:26
|
libreofficekit/qa/gtktiledviewer/gtv-application.hxx:26
|
||||||
GtvApplication parent GtkApplication
|
GtvApplication parent GtkApplication
|
||||||
libreofficekit/qa/gtktiledviewer/gtv-application.hxx:31
|
libreofficekit/qa/gtktiledviewer/gtv-application.hxx:31
|
||||||
GtvApplicationClass parentClass GtkApplication
|
GtvApplicationClass parentClass GtkApplicationClass
|
||||||
libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.hxx:28
|
libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.hxx:28
|
||||||
GtvCalcHeaderBar parent GtkDrawingArea
|
GtvCalcHeaderBar parent GtkDrawingArea
|
||||||
libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.hxx:37
|
libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.hxx:37
|
||||||
@ -132,7 +222,7 @@ sd/source/ui/remotecontrol/ZeroconfService.hxx:36
|
|||||||
sd::ZeroconfService port uint
|
sd::ZeroconfService port uint
|
||||||
sd/source/ui/table/TableDesignPane.hxx:113
|
sd/source/ui/table/TableDesignPane.hxx:113
|
||||||
sd::TableDesignPane aImpl class sd::TableDesignWidget
|
sd::TableDesignPane aImpl class sd::TableDesignWidget
|
||||||
sd/source/ui/view/DocumentRenderer.cxx:1323
|
sd/source/ui/view/DocumentRenderer.cxx:1318
|
||||||
sd::DocumentRenderer::Implementation mxObjectShell SfxObjectShellRef
|
sd::DocumentRenderer::Implementation mxObjectShell SfxObjectShellRef
|
||||||
sd/source/ui/view/viewshel.cxx:1258
|
sd/source/ui/view/viewshel.cxx:1258
|
||||||
sd::KeepSlideSorterInSyncWithPageChanges m_aDrawLock sd::slidesorter::view::class SlideSorterView::DrawLock
|
sd::KeepSlideSorterInSyncWithPageChanges m_aDrawLock sd::slidesorter::view::class SlideSorterView::DrawLock
|
||||||
@ -144,10 +234,20 @@ sd/source/ui/view/viewshel.cxx:1261
|
|||||||
sd::KeepSlideSorterInSyncWithPageChanges m_aContext sd::slidesorter::controller::class SelectionObserver::Context
|
sd::KeepSlideSorterInSyncWithPageChanges m_aContext sd::slidesorter::controller::class SelectionObserver::Context
|
||||||
sd/source/ui/view/ViewShellBase.cxx:195
|
sd/source/ui/view/ViewShellBase.cxx:195
|
||||||
sd::ViewShellBase::Implementation mpPageCacheManager std::shared_ptr<slidesorter::cache::PageCacheManager>
|
sd::ViewShellBase::Implementation mpPageCacheManager std::shared_ptr<slidesorter::cache::PageCacheManager>
|
||||||
sfx2/source/doc/doctempl.cxx:118
|
sfx2/source/doc/doctempl.cxx:116
|
||||||
DocTempl::DocTempl_EntryData_Impl mxObjShell class SfxObjectShellLock
|
DocTempl::DocTempl_EntryData_Impl mxObjShell class SfxObjectShellLock
|
||||||
starmath/inc/view.hxx:224
|
starmath/inc/view.hxx:224
|
||||||
SmViewShell maGraphicController class SmGraphicController
|
SmViewShell maGraphicController class SmGraphicController
|
||||||
|
svl/source/crypto/cryptosign.cxx:120
|
||||||
|
(anonymous namespace)::(anonymous) extnID SECItem
|
||||||
|
svl/source/crypto/cryptosign.cxx:121
|
||||||
|
(anonymous namespace)::(anonymous) critical SECItem
|
||||||
|
svl/source/crypto/cryptosign.cxx:122
|
||||||
|
(anonymous namespace)::(anonymous) extnValue SECItem
|
||||||
|
svl/source/crypto/cryptosign.cxx:277
|
||||||
|
(anonymous namespace)::(anonymous) statusString SECItem
|
||||||
|
svl/source/crypto/cryptosign.cxx:278
|
||||||
|
(anonymous namespace)::(anonymous) failInfo SECItem
|
||||||
svtools/source/svhtml/htmlkywd.cxx:558
|
svtools/source/svhtml/htmlkywd.cxx:558
|
||||||
HTML_OptionEntry union HTML_OptionEntry::(anonymous at /home/noel/libo3/svtools/source/svhtml/htmlkywd.cxx:558:5)
|
HTML_OptionEntry union HTML_OptionEntry::(anonymous at /home/noel/libo3/svtools/source/svhtml/htmlkywd.cxx:558:5)
|
||||||
svtools/source/svhtml/htmlkywd.cxx:560
|
svtools/source/svhtml/htmlkywd.cxx:560
|
||||||
@ -172,20 +272,16 @@ unoidl/source/unoidlprovider.cxx:673
|
|||||||
unoidl::detail::(anonymous namespace)::UnoidlCursor reference2_ rtl::Reference<UnoidlModuleEntity>
|
unoidl::detail::(anonymous namespace)::UnoidlCursor reference2_ rtl::Reference<UnoidlModuleEntity>
|
||||||
vcl/inc/opengl/zone.hxx:46
|
vcl/inc/opengl/zone.hxx:46
|
||||||
OpenGLVCLContextZone aZone class OpenGLZone
|
OpenGLVCLContextZone aZone class OpenGLZone
|
||||||
|
vcl/inc/unx/i18n_status.hxx:56
|
||||||
|
vcl::I18NStatus::ChoiceData aString class rtl::OUString
|
||||||
|
vcl/source/app/svapp.cxx:159
|
||||||
|
ImplEventHook mpUserData void *
|
||||||
|
vcl/source/app/svapp.cxx:160
|
||||||
|
ImplEventHook mpProc VCLEventHookProc
|
||||||
vcl/source/gdi/jobset.cxx:34
|
vcl/source/gdi/jobset.cxx:34
|
||||||
ImplOldJobSetupData cDeviceName char [32]
|
ImplOldJobSetupData cDeviceName char [32]
|
||||||
vcl/source/gdi/jobset.cxx:35
|
vcl/source/gdi/jobset.cxx:35
|
||||||
ImplOldJobSetupData cPortName char [32]
|
ImplOldJobSetupData cPortName char [32]
|
||||||
vcl/source/gdi/pdfwriter_impl.cxx:5423
|
|
||||||
(anonymous namespace)::(anonymous) extnID SECItem
|
|
||||||
vcl/source/gdi/pdfwriter_impl.cxx:5424
|
|
||||||
(anonymous namespace)::(anonymous) critical SECItem
|
|
||||||
vcl/source/gdi/pdfwriter_impl.cxx:5425
|
|
||||||
(anonymous namespace)::(anonymous) extnValue SECItem
|
|
||||||
vcl/source/gdi/pdfwriter_impl.cxx:5794
|
|
||||||
(anonymous namespace)::(anonymous) statusString SECItem
|
|
||||||
vcl/source/gdi/pdfwriter_impl.cxx:5795
|
|
||||||
(anonymous namespace)::(anonymous) failInfo SECItem
|
|
||||||
vcl/source/uitest/uno/uitest_uno.cxx:35
|
vcl/source/uitest/uno/uitest_uno.cxx:35
|
||||||
UITestUnoObj mpUITest std::unique_ptr<UITest>
|
UITestUnoObj mpUITest std::unique_ptr<UITest>
|
||||||
vcl/unx/gtk/a11y/atkhypertext.cxx:29
|
vcl/unx/gtk/a11y/atkhypertext.cxx:29
|
||||||
|
@ -6,6 +6,8 @@ basctl/source/inc/bastype2.hxx:180
|
|||||||
basctl::TreeListBox m_aNotifier class basctl::DocumentEventNotifier
|
basctl::TreeListBox m_aNotifier class basctl::DocumentEventNotifier
|
||||||
basctl/source/inc/dlged.hxx:121
|
basctl/source/inc/dlged.hxx:121
|
||||||
basctl::DlgEditor pObjFac std::unique_ptr<DlgEdFactory>
|
basctl::DlgEditor pObjFac std::unique_ptr<DlgEdFactory>
|
||||||
|
basic/qa/cppunit/basictest.hxx:27
|
||||||
|
MacroSnippet maDll class BasicDLL
|
||||||
basic/qa/cppunit/test_scanner.cxx:26
|
basic/qa/cppunit/test_scanner.cxx:26
|
||||||
(anonymous namespace)::Symbol line sal_uInt16
|
(anonymous namespace)::Symbol line sal_uInt16
|
||||||
basic/qa/cppunit/test_scanner.cxx:27
|
basic/qa/cppunit/test_scanner.cxx:27
|
||||||
@ -102,6 +104,8 @@ comphelper/source/container/enumerablemap.cxx:299
|
|||||||
comphelper::MapEnumeration m_xKeepMapAlive Reference<class com::sun::star::uno::XInterface>
|
comphelper::MapEnumeration m_xKeepMapAlive Reference<class com::sun::star::uno::XInterface>
|
||||||
configmgr/source/components.cxx:163
|
configmgr/source/components.cxx:163
|
||||||
configmgr::Components::WriteThread reference_ rtl::Reference<WriteThread> *
|
configmgr::Components::WriteThread reference_ rtl::Reference<WriteThread> *
|
||||||
|
connectivity/source/commontools/sqlerror.cxx:89
|
||||||
|
connectivity::SQLError_Impl m_aContext Reference<class com::sun::star::uno::XComponentContext>
|
||||||
connectivity/source/drivers/evoab2/EApi.h:122
|
connectivity/source/drivers/evoab2/EApi.h:122
|
||||||
(anonymous) address_format char *
|
(anonymous) address_format char *
|
||||||
connectivity/source/drivers/evoab2/EApi.h:126
|
connectivity/source/drivers/evoab2/EApi.h:126
|
||||||
@ -188,24 +192,40 @@ cppuhelper/source/access_control.cxx:80
|
|||||||
cppu::(anonymous namespace)::permission m_str1 rtl_uString *
|
cppu::(anonymous namespace)::permission m_str1 rtl_uString *
|
||||||
cppuhelper/source/access_control.cxx:81
|
cppuhelper/source/access_control.cxx:81
|
||||||
cppu::(anonymous namespace)::permission m_str2 rtl_uString *
|
cppu::(anonymous namespace)::permission m_str2 rtl_uString *
|
||||||
cui/source/inc/cuihyperdlg.hxx:47
|
cui/source/inc/cuihyperdlg.hxx:56
|
||||||
SvxHlinkCtrl aRdOnlyForwarder class SfxStatusForwarder
|
SvxHlinkCtrl aRdOnlyForwarder class SfxStatusForwarder
|
||||||
cui/source/inc/cuihyperdlg.hxx:67
|
cui/source/inc/cuihyperdlg.hxx:76
|
||||||
SvxHpLinkDlg maCtrl class SvxHlinkCtrl
|
SvxHpLinkDlg maCtrl class SvxHlinkCtrl
|
||||||
dbaccess/source/core/dataaccess/documentdefinition.cxx:289
|
dbaccess/source/core/dataaccess/documentdefinition.cxx:289
|
||||||
dbaccess::LifetimeCoupler m_xClient Reference<class com::sun::star::uno::XInterface>
|
dbaccess::LifetimeCoupler m_xClient Reference<class com::sun::star::uno::XInterface>
|
||||||
dbaccess/source/sdbtools/connection/connectiontools.hxx:48
|
|
||||||
sdbtools::ConnectionTools m_aModuleClient class sdbtools::SdbtClient
|
|
||||||
dbaccess/source/sdbtools/connection/objectnames.hxx:44
|
|
||||||
sdbtools::ObjectNames m_aModuleClient class sdbtools::SdbtClient
|
|
||||||
dbaccess/source/sdbtools/connection/tablename.cxx:56
|
|
||||||
sdbtools::TableName_Impl m_aModuleClient class sdbtools::SdbtClient
|
|
||||||
desktop/qa/desktop_lib/test_desktop_lib.cxx:175
|
desktop/qa/desktop_lib/test_desktop_lib.cxx:175
|
||||||
DesktopLOKTest m_bModified _Bool
|
DesktopLOKTest m_bModified _Bool
|
||||||
desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx:120
|
desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx:119
|
||||||
dp_gui::UpdateCommandEnv m_installThread ::rtl::Reference<UpdateInstallDialog::Thread>
|
dp_gui::UpdateCommandEnv m_installThread ::rtl::Reference<UpdateInstallDialog::Thread>
|
||||||
desktop/unx/source/splashx.c:369
|
desktop/unx/source/splashx.c:369
|
||||||
input_mode long
|
input_mode long
|
||||||
|
drawinglayer/source/tools/emfpbrush.hxx:104
|
||||||
|
emfplushelper::EMFPBrush wrapMode sal_Int32
|
||||||
|
drawinglayer/source/tools/emfpbrush.hxx:108
|
||||||
|
emfplushelper::EMFPBrush hasTransformation _Bool
|
||||||
|
drawinglayer/source/tools/emfpbrush.hxx:118
|
||||||
|
emfplushelper::EMFPBrush hatchStyle enum emfplushelper::EmfPlusHatchStyle
|
||||||
|
drawinglayer/source/tools/emfpcustomlinecap.hxx:33
|
||||||
|
emfplushelper::EMFPCustomLineCap mbIsFilled _Bool
|
||||||
|
drawinglayer/source/tools/emfppen.hxx:41
|
||||||
|
emfplushelper::EMFPPen pen_transformation basegfx::B2DHomMatrix
|
||||||
|
drawinglayer/source/tools/emfppen.hxx:46
|
||||||
|
emfplushelper::EMFPPen mitterLimit float
|
||||||
|
drawinglayer/source/tools/emfppen.hxx:48
|
||||||
|
emfplushelper::EMFPPen dashCap sal_Int32
|
||||||
|
drawinglayer/source/tools/emfppen.hxx:49
|
||||||
|
emfplushelper::EMFPPen dashOffset float
|
||||||
|
drawinglayer/source/tools/emfppen.hxx:51
|
||||||
|
emfplushelper::EMFPPen alignment sal_Int32
|
||||||
|
drawinglayer/source/tools/emfppen.hxx:54
|
||||||
|
emfplushelper::EMFPPen customStartCap struct emfplushelper::EMFPCustomLineCap *
|
||||||
|
drawinglayer/source/tools/emfppen.hxx:56
|
||||||
|
emfplushelper::EMFPPen customEndCap struct emfplushelper::EMFPCustomLineCap *
|
||||||
embeddedobj/source/inc/oleembobj.hxx:127
|
embeddedobj/source/inc/oleembobj.hxx:127
|
||||||
OleEmbeddedObject m_nTargetState sal_Int32
|
OleEmbeddedObject m_nTargetState sal_Int32
|
||||||
embeddedobj/source/inc/oleembobj.hxx:139
|
embeddedobj/source/inc/oleembobj.hxx:139
|
||||||
@ -224,14 +244,26 @@ embeddedobj/source/inc/oleembobj.hxx:170
|
|||||||
OleEmbeddedObject m_nStatusAspect sal_Int64
|
OleEmbeddedObject m_nStatusAspect sal_Int64
|
||||||
embeddedobj/source/inc/oleembobj.hxx:184
|
embeddedobj/source/inc/oleembobj.hxx:184
|
||||||
OleEmbeddedObject m_bFromClipboard _Bool
|
OleEmbeddedObject m_bFromClipboard _Bool
|
||||||
|
emfio/inc/mtftools.hxx:121
|
||||||
|
emfio::LOGFONTW lfOrientation sal_Int32
|
||||||
|
emfio/inc/mtftools.hxx:127
|
||||||
|
emfio::LOGFONTW lfOutPrecision sal_uInt8
|
||||||
|
emfio/inc/mtftools.hxx:128
|
||||||
|
emfio::LOGFONTW lfClipPrecision sal_uInt8
|
||||||
|
emfio/inc/mtftools.hxx:129
|
||||||
|
emfio::LOGFONTW lfQuality sal_uInt8
|
||||||
|
emfio/source/emfuno/xemfparser.cxx:59
|
||||||
|
emfio::emfreader::XEmfParser context_ uno::Reference<uno::XComponentContext>
|
||||||
|
emfio/source/reader/emfreader.cxx:323
|
||||||
|
(anonymous namespace)::BLENDFUNCTION aBlendOperation unsigned char
|
||||||
|
emfio/source/reader/emfreader.cxx:324
|
||||||
|
(anonymous namespace)::BLENDFUNCTION aBlendFlags unsigned char
|
||||||
extensions/source/propctrlr/propertyhandler.hxx:80
|
extensions/source/propctrlr/propertyhandler.hxx:80
|
||||||
pcr::PropertyHandler m_aEnsureResAccess class pcr::PcrClient
|
pcr::PropertyHandler m_aEnsureResAccess class pcr::PcrClient
|
||||||
extensions/source/scanner/scanner.hxx:46
|
extensions/source/scanner/scanner.hxx:46
|
||||||
ScannerManager maProtector osl::Mutex
|
ScannerManager maProtector osl::Mutex
|
||||||
extensions/source/scanner/scanner.hxx:47
|
extensions/source/scanner/scanner.hxx:47
|
||||||
ScannerManager mpData void *
|
ScannerManager mpData void *
|
||||||
framework/inc/dispatch/oxt_handler.hxx:92
|
|
||||||
framework::Oxt_Handler m_xSelfHold css::uno::Reference<css::uno::XInterface>
|
|
||||||
framework/inc/services/layoutmanager.hxx:262
|
framework/inc/services/layoutmanager.hxx:262
|
||||||
framework::LayoutManager m_bGlobalSettings _Bool
|
framework::LayoutManager m_bGlobalSettings _Bool
|
||||||
framework/inc/services/layoutmanager.hxx:276
|
framework/inc/services/layoutmanager.hxx:276
|
||||||
@ -278,22 +310,40 @@ include/svtools/unoevent.hxx:161
|
|||||||
SvEventDescriptor xParentRef css::uno::Reference<css::uno::XInterface>
|
SvEventDescriptor xParentRef css::uno::Reference<css::uno::XInterface>
|
||||||
include/svx/bmpmask.hxx:129
|
include/svx/bmpmask.hxx:129
|
||||||
SvxBmpMask aSelItem class SvxBmpMaskSelectItem
|
SvxBmpMask aSelItem class SvxBmpMaskSelectItem
|
||||||
include/svx/float3d.hxx:176
|
include/svx/float3d.hxx:199
|
||||||
Svx3DWin pControllerItem class Svx3DCtrlItem *
|
Svx3DWin pControllerItem class Svx3DCtrlItem *
|
||||||
include/svx/imapdlg.hxx:118
|
include/svx/imapdlg.hxx:140
|
||||||
SvxIMapDlg aIMapItem class SvxIMapDlgItem
|
SvxIMapDlg aIMapItem class SvxIMapDlgItem
|
||||||
include/svx/srchdlg.hxx:231
|
include/svx/srchdlg.hxx:231
|
||||||
SvxSearchDialog pSearchController class SvxSearchController *
|
SvxSearchDialog pSearchController class SvxSearchController *
|
||||||
include/svx/srchdlg.hxx:232
|
include/svx/srchdlg.hxx:232
|
||||||
SvxSearchDialog pOptionsController class SvxSearchController *
|
SvxSearchDialog pOptionsController class SvxSearchController *
|
||||||
include/vcl/menu.hxx:462
|
include/vcl/menu.hxx:454
|
||||||
MenuBar::MenuBarButtonCallbackArg bHighlight _Bool
|
MenuBar::MenuBarButtonCallbackArg bHighlight _Bool
|
||||||
|
include/vcl/pdfwriter.hxx:550
|
||||||
|
vcl::PDFWriter::PDFSignContext m_pDerEncoded sal_Int8 *
|
||||||
|
include/vcl/pdfwriter.hxx:552
|
||||||
|
vcl::PDFWriter::PDFSignContext m_nDerEncoded sal_Int32
|
||||||
|
include/vcl/pdfwriter.hxx:554
|
||||||
|
vcl::PDFWriter::PDFSignContext m_pByteRange1 void *
|
||||||
|
include/vcl/pdfwriter.hxx:556
|
||||||
|
vcl::PDFWriter::PDFSignContext m_nByteRange1 sal_Int32
|
||||||
|
include/vcl/pdfwriter.hxx:558
|
||||||
|
vcl::PDFWriter::PDFSignContext m_pByteRange2 void *
|
||||||
|
include/vcl/pdfwriter.hxx:560
|
||||||
|
vcl::PDFWriter::PDFSignContext m_nByteRange2 sal_Int32
|
||||||
|
include/vcl/pdfwriter.hxx:561
|
||||||
|
vcl::PDFWriter::PDFSignContext m_aSignTSA class rtl::OUString
|
||||||
|
include/vcl/pdfwriter.hxx:562
|
||||||
|
vcl::PDFWriter::PDFSignContext m_aSignPassword class rtl::OUString
|
||||||
include/vcl/salnativewidgets.hxx:415
|
include/vcl/salnativewidgets.hxx:415
|
||||||
ToolbarValue mbIsTopDockingArea _Bool
|
ToolbarValue mbIsTopDockingArea _Bool
|
||||||
include/vcl/salnativewidgets.hxx:463
|
include/vcl/salnativewidgets.hxx:463
|
||||||
PushButtonValue mbBevelButton _Bool
|
PushButtonValue mbBevelButton _Bool
|
||||||
include/vcl/salnativewidgets.hxx:464
|
include/vcl/salnativewidgets.hxx:464
|
||||||
PushButtonValue mbSingleLine _Bool
|
PushButtonValue mbSingleLine _Bool
|
||||||
|
include/vcl/toolbox.hxx:106
|
||||||
|
ToolBox maInDockRect tools::Rectangle
|
||||||
include/vcl/uitest/uiobject.hxx:241
|
include/vcl/uitest/uiobject.hxx:241
|
||||||
TabPageUIObject mxTabPage VclPtr<class TabPage>
|
TabPageUIObject mxTabPage VclPtr<class TabPage>
|
||||||
include/xmloff/formlayerexport.hxx:173
|
include/xmloff/formlayerexport.hxx:173
|
||||||
@ -304,6 +354,78 @@ include/xmloff/shapeimport.hxx:181
|
|||||||
SdXML3DSceneAttributesHelper mbVPNUsed _Bool
|
SdXML3DSceneAttributesHelper mbVPNUsed _Bool
|
||||||
include/xmloff/shapeimport.hxx:182
|
include/xmloff/shapeimport.hxx:182
|
||||||
SdXML3DSceneAttributesHelper mbVUPUsed _Bool
|
SdXML3DSceneAttributesHelper mbVUPUsed _Bool
|
||||||
|
l10ntools/inc/common.hxx:31
|
||||||
|
common::HandledArgs m_bUTF8BOM _Bool
|
||||||
|
l10ntools/inc/export.hxx:75
|
||||||
|
ResData nIdLevel enum IdLevel
|
||||||
|
l10ntools/inc/export.hxx:76
|
||||||
|
ResData bChild _Bool
|
||||||
|
l10ntools/inc/export.hxx:77
|
||||||
|
ResData bChildWithText _Bool
|
||||||
|
l10ntools/inc/export.hxx:79
|
||||||
|
ResData bText _Bool
|
||||||
|
l10ntools/inc/export.hxx:80
|
||||||
|
ResData bQuickHelpText _Bool
|
||||||
|
l10ntools/inc/export.hxx:81
|
||||||
|
ResData bTitle _Bool
|
||||||
|
l10ntools/inc/export.hxx:90
|
||||||
|
ResData sQuickHelpText OStringHashMap
|
||||||
|
l10ntools/inc/export.hxx:92
|
||||||
|
ResData sTitle OStringHashMap
|
||||||
|
l10ntools/inc/export.hxx:94
|
||||||
|
ResData sTextTyp class rtl::OString
|
||||||
|
l10ntools/inc/export.hxx:96
|
||||||
|
ResData m_aList ExportList
|
||||||
|
l10ntools/inc/export.hxx:121
|
||||||
|
Export::(anonymous) mSimple std::ofstream *
|
||||||
|
l10ntools/inc/export.hxx:122
|
||||||
|
Export::(anonymous) mPo class PoOfstream *
|
||||||
|
l10ntools/inc/export.hxx:124
|
||||||
|
Export aOutput union (anonymous union at /home/noel/libo3/l10ntools/inc/export.hxx:119:5)
|
||||||
|
l10ntools/inc/export.hxx:126
|
||||||
|
Export aResStack ResStack
|
||||||
|
l10ntools/inc/export.hxx:128
|
||||||
|
Export bDefine _Bool
|
||||||
|
l10ntools/inc/export.hxx:129
|
||||||
|
Export bNextMustBeDefineEOL _Bool
|
||||||
|
l10ntools/inc/export.hxx:130
|
||||||
|
Export nLevel std::size_t
|
||||||
|
l10ntools/inc/export.hxx:131
|
||||||
|
Export nList enum ExportListType
|
||||||
|
l10ntools/inc/export.hxx:132
|
||||||
|
Export nListLevel std::size_t
|
||||||
|
l10ntools/inc/export.hxx:133
|
||||||
|
Export bMergeMode _Bool
|
||||||
|
l10ntools/inc/export.hxx:134
|
||||||
|
Export sMergeSrc class rtl::OString
|
||||||
|
l10ntools/inc/export.hxx:136
|
||||||
|
Export bReadOver _Bool
|
||||||
|
l10ntools/inc/export.hxx:137
|
||||||
|
Export sFilename class rtl::OString
|
||||||
|
l10ntools/inc/export.hxx:139
|
||||||
|
Export aLanguages std::vector<OString>
|
||||||
|
l10ntools/inc/export.hxx:280
|
||||||
|
MergeData sGID class rtl::OString
|
||||||
|
l10ntools/inc/export.hxx:281
|
||||||
|
MergeData sLID class rtl::OString
|
||||||
|
l10ntools/inc/export.hxx:334
|
||||||
|
QueueEntry nTyp int
|
||||||
|
l10ntools/inc/export.hxx:335
|
||||||
|
QueueEntry sLine class rtl::OString
|
||||||
|
l10ntools/inc/export.hxx:346
|
||||||
|
ParserQueue bCurrentIsM _Bool
|
||||||
|
l10ntools/inc/export.hxx:347
|
||||||
|
ParserQueue bNextIsM _Bool
|
||||||
|
l10ntools/inc/export.hxx:348
|
||||||
|
ParserQueue bLastWasM _Bool
|
||||||
|
l10ntools/inc/export.hxx:349
|
||||||
|
ParserQueue bMflag _Bool
|
||||||
|
l10ntools/inc/export.hxx:353
|
||||||
|
ParserQueue aQueueNext std::queue<QueueEntry> *
|
||||||
|
l10ntools/inc/export.hxx:354
|
||||||
|
ParserQueue aQueueCur std::queue<QueueEntry> *
|
||||||
|
l10ntools/inc/export.hxx:357
|
||||||
|
ParserQueue bStart _Bool
|
||||||
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:50
|
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:50
|
||||||
GtvApplicationWindow parent_instance GtkApplicationWindow
|
GtvApplicationWindow parent_instance GtkApplicationWindow
|
||||||
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:54
|
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:54
|
||||||
@ -311,11 +433,11 @@ libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:54
|
|||||||
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:61
|
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:61
|
||||||
GtvApplicationWindow statusbar GtkWidget *
|
GtvApplicationWindow statusbar GtkWidget *
|
||||||
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:73
|
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:73
|
||||||
GtvApplicationWindowClass parentClass GtkApplicationWindow
|
GtvApplicationWindowClass parentClass GtkApplicationWindowClass
|
||||||
libreofficekit/qa/gtktiledviewer/gtv-application.hxx:26
|
libreofficekit/qa/gtktiledviewer/gtv-application.hxx:26
|
||||||
GtvApplication parent GtkApplication
|
GtvApplication parent GtkApplication
|
||||||
libreofficekit/qa/gtktiledviewer/gtv-application.hxx:31
|
libreofficekit/qa/gtktiledviewer/gtv-application.hxx:31
|
||||||
GtvApplicationClass parentClass GtkApplication
|
GtvApplicationClass parentClass GtkApplicationClass
|
||||||
libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.hxx:28
|
libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.hxx:28
|
||||||
GtvCalcHeaderBar parent GtkDrawingArea
|
GtvCalcHeaderBar parent GtkDrawingArea
|
||||||
libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.hxx:37
|
libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.hxx:37
|
||||||
@ -354,12 +476,6 @@ registry/source/reflread.cxx:867
|
|||||||
MethodList m_pCP class ConstantPool *
|
MethodList m_pCP class ConstantPool *
|
||||||
reportdesign/source/ui/inc/ReportWindow.hxx:54
|
reportdesign/source/ui/inc/ReportWindow.hxx:54
|
||||||
rptui::OReportWindow m_pObjFac ::std::unique_ptr<DlgEdFactory>
|
rptui::OReportWindow m_pObjFac ::std::unique_ptr<DlgEdFactory>
|
||||||
rsc/inc/rscdef.hxx:55
|
|
||||||
RscExpType cUnused _Bool
|
|
||||||
rsc/inc/rsctools.hxx:108
|
|
||||||
lVal64 sal_uInt64
|
|
||||||
rsc/inc/rsctools.hxx:127
|
|
||||||
lVal32 sal_uInt32
|
|
||||||
sal/osl/unx/thread.cxx:93
|
sal/osl/unx/thread.cxx:93
|
||||||
osl_thread_priority_st m_Highest int
|
osl_thread_priority_st m_Highest int
|
||||||
sal/osl/unx/thread.cxx:94
|
sal/osl/unx/thread.cxx:94
|
||||||
@ -514,7 +630,7 @@ sd/source/ui/slidesorter/view/SlsLayouter.cxx:61
|
|||||||
sd::slidesorter::view::Layouter::Implementation mpTheme std::shared_ptr<view::Theme>
|
sd::slidesorter::view::Layouter::Implementation mpTheme std::shared_ptr<view::Theme>
|
||||||
sd/source/ui/table/TableDesignPane.hxx:113
|
sd/source/ui/table/TableDesignPane.hxx:113
|
||||||
sd::TableDesignPane aImpl class sd::TableDesignWidget
|
sd::TableDesignPane aImpl class sd::TableDesignWidget
|
||||||
sd/source/ui/view/DocumentRenderer.cxx:1323
|
sd/source/ui/view/DocumentRenderer.cxx:1318
|
||||||
sd::DocumentRenderer::Implementation mxObjectShell SfxObjectShellRef
|
sd::DocumentRenderer::Implementation mxObjectShell SfxObjectShellRef
|
||||||
sd/source/ui/view/viewshel.cxx:1258
|
sd/source/ui/view/viewshel.cxx:1258
|
||||||
sd::KeepSlideSorterInSyncWithPageChanges m_aDrawLock sd::slidesorter::view::class SlideSorterView::DrawLock
|
sd::KeepSlideSorterInSyncWithPageChanges m_aDrawLock sd::slidesorter::view::class SlideSorterView::DrawLock
|
||||||
@ -526,13 +642,15 @@ sd/source/ui/view/viewshel.cxx:1261
|
|||||||
sd::KeepSlideSorterInSyncWithPageChanges m_aContext sd::slidesorter::controller::class SelectionObserver::Context
|
sd::KeepSlideSorterInSyncWithPageChanges m_aContext sd::slidesorter::controller::class SelectionObserver::Context
|
||||||
sd/source/ui/view/ViewShellBase.cxx:195
|
sd/source/ui/view/ViewShellBase.cxx:195
|
||||||
sd::ViewShellBase::Implementation mpPageCacheManager std::shared_ptr<slidesorter::cache::PageCacheManager>
|
sd::ViewShellBase::Implementation mpPageCacheManager std::shared_ptr<slidesorter::cache::PageCacheManager>
|
||||||
sfx2/source/doc/doctempl.cxx:118
|
sfx2/source/appl/shutdownicon.hxx:70
|
||||||
|
ShutdownIcon m_pResLocale std::locale *
|
||||||
|
sfx2/source/doc/doctempl.cxx:116
|
||||||
DocTempl::DocTempl_EntryData_Impl mxObjShell class SfxObjectShellLock
|
DocTempl::DocTempl_EntryData_Impl mxObjShell class SfxObjectShellLock
|
||||||
sfx2/source/inc/appdata.hxx:76
|
sfx2/source/inc/appdata.hxx:75
|
||||||
SfxAppData_Impl pDocTopics SfxDdeDocTopics_Impl *
|
SfxAppData_Impl pDocTopics SfxDdeDocTopics_Impl *
|
||||||
sfx2/source/inc/appdata.hxx:77
|
sfx2/source/inc/appdata.hxx:76
|
||||||
SfxAppData_Impl pTriggerTopic class SfxDdeTriggerTopic_Impl *
|
SfxAppData_Impl pTriggerTopic class SfxDdeTriggerTopic_Impl *
|
||||||
sfx2/source/inc/appdata.hxx:78
|
sfx2/source/inc/appdata.hxx:77
|
||||||
SfxAppData_Impl pDdeService2 class DdeService *
|
SfxAppData_Impl pDdeService2 class DdeService *
|
||||||
sfx2/source/view/classificationcontroller.cxx:59
|
sfx2/source/view/classificationcontroller.cxx:59
|
||||||
sfx2::ClassificationCategoriesController m_aPropertyListener class sfx2::ClassificationPropertyListener
|
sfx2::ClassificationCategoriesController m_aPropertyListener class sfx2::ClassificationPropertyListener
|
||||||
@ -548,6 +666,28 @@ starmath/inc/view.hxx:224
|
|||||||
SmViewShell maGraphicController class SmGraphicController
|
SmViewShell maGraphicController class SmGraphicController
|
||||||
store/source/storbase.hxx:269
|
store/source/storbase.hxx:269
|
||||||
store::PageData m_aMarked store::PageData::L
|
store::PageData m_aMarked store::PageData::L
|
||||||
|
svl/source/crypto/cryptosign.cxx:120
|
||||||
|
(anonymous namespace)::(anonymous) extnID SECItem
|
||||||
|
svl/source/crypto/cryptosign.cxx:121
|
||||||
|
(anonymous namespace)::(anonymous) critical SECItem
|
||||||
|
svl/source/crypto/cryptosign.cxx:122
|
||||||
|
(anonymous namespace)::(anonymous) extnValue SECItem
|
||||||
|
svl/source/crypto/cryptosign.cxx:144
|
||||||
|
(anonymous namespace)::(anonymous) version SECItem
|
||||||
|
svl/source/crypto/cryptosign.cxx:146
|
||||||
|
(anonymous namespace)::(anonymous) reqPolicy SECItem
|
||||||
|
svl/source/crypto/cryptosign.cxx:147
|
||||||
|
(anonymous namespace)::(anonymous) nonce SECItem
|
||||||
|
svl/source/crypto/cryptosign.cxx:148
|
||||||
|
(anonymous namespace)::(anonymous) certReq SECItem
|
||||||
|
svl/source/crypto/cryptosign.cxx:149
|
||||||
|
(anonymous namespace)::(anonymous) extensions (anonymous namespace)::Extension *
|
||||||
|
svl/source/crypto/cryptosign.cxx:193
|
||||||
|
(anonymous namespace)::SigningCertificateV2 certs struct (anonymous namespace)::ESSCertIDv2 **
|
||||||
|
svl/source/crypto/cryptosign.cxx:277
|
||||||
|
(anonymous namespace)::(anonymous) statusString SECItem
|
||||||
|
svl/source/crypto/cryptosign.cxx:278
|
||||||
|
(anonymous namespace)::(anonymous) failInfo SECItem
|
||||||
svl/source/misc/inethist.cxx:48
|
svl/source/misc/inethist.cxx:48
|
||||||
INetURLHistory_Impl::head_entry m_nMagic sal_uInt32
|
INetURLHistory_Impl::head_entry m_nMagic sal_uInt32
|
||||||
svtools/source/svhtml/htmlkywd.cxx:558
|
svtools/source/svhtml/htmlkywd.cxx:558
|
||||||
@ -666,44 +806,24 @@ vcl/inc/salwtype.hxx:250
|
|||||||
SalSwipeEvent mnVelocityY double
|
SalSwipeEvent mnVelocityY double
|
||||||
vcl/inc/sft.hxx:486
|
vcl/inc/sft.hxx:486
|
||||||
vcl::TrueTypeFont mapper sal_uInt32 (*)(const sal_uInt8 *, sal_uInt32, sal_uInt32)
|
vcl::TrueTypeFont mapper sal_uInt32 (*)(const sal_uInt8 *, sal_uInt32, sal_uInt32)
|
||||||
|
vcl/inc/unx/i18n_status.hxx:56
|
||||||
|
vcl::I18NStatus::ChoiceData aString class rtl::OUString
|
||||||
vcl/opengl/salbmp.cxx:412
|
vcl/opengl/salbmp.cxx:412
|
||||||
(anonymous namespace)::ScanlineWriter mpCurrentScanline sal_uInt8 *
|
(anonymous namespace)::ScanlineWriter mpCurrentScanline sal_uInt8 *
|
||||||
|
vcl/source/app/svapp.cxx:159
|
||||||
|
ImplEventHook mpUserData void *
|
||||||
|
vcl/source/app/svapp.cxx:160
|
||||||
|
ImplEventHook mpProc VCLEventHookProc
|
||||||
vcl/source/filter/graphicfilter.cxx:1034
|
vcl/source/filter/graphicfilter.cxx:1034
|
||||||
ImpFilterLibCache mpLast struct ImpFilterLibCacheEntry *
|
ImpFilterLibCache mpLast struct ImpFilterLibCacheEntry *
|
||||||
vcl/source/filter/jpeg/Exif.hxx:56
|
vcl/source/filter/jpeg/Exif.hxx:56
|
||||||
Exif::ExifIFD type sal_uInt16
|
Exif::ExifIFD type sal_uInt16
|
||||||
vcl/source/filter/jpeg/Exif.hxx:57
|
vcl/source/filter/jpeg/Exif.hxx:57
|
||||||
Exif::ExifIFD count sal_uInt32
|
Exif::ExifIFD count sal_uInt32
|
||||||
vcl/source/filter/wmf/enhwmf.cxx:325
|
|
||||||
(anonymous namespace)::BLENDFUNCTION aBlendOperation unsigned char
|
|
||||||
vcl/source/filter/wmf/enhwmf.cxx:326
|
|
||||||
(anonymous namespace)::BLENDFUNCTION aBlendFlags unsigned char
|
|
||||||
vcl/source/gdi/jobset.cxx:34
|
vcl/source/gdi/jobset.cxx:34
|
||||||
ImplOldJobSetupData cDeviceName char [32]
|
ImplOldJobSetupData cDeviceName char [32]
|
||||||
vcl/source/gdi/jobset.cxx:35
|
vcl/source/gdi/jobset.cxx:35
|
||||||
ImplOldJobSetupData cPortName char [32]
|
ImplOldJobSetupData cPortName char [32]
|
||||||
vcl/source/gdi/pdfwriter_impl.cxx:5423
|
|
||||||
(anonymous namespace)::(anonymous) extnID SECItem
|
|
||||||
vcl/source/gdi/pdfwriter_impl.cxx:5424
|
|
||||||
(anonymous namespace)::(anonymous) critical SECItem
|
|
||||||
vcl/source/gdi/pdfwriter_impl.cxx:5425
|
|
||||||
(anonymous namespace)::(anonymous) extnValue SECItem
|
|
||||||
vcl/source/gdi/pdfwriter_impl.cxx:5447
|
|
||||||
(anonymous namespace)::(anonymous) version SECItem
|
|
||||||
vcl/source/gdi/pdfwriter_impl.cxx:5449
|
|
||||||
(anonymous namespace)::(anonymous) reqPolicy SECItem
|
|
||||||
vcl/source/gdi/pdfwriter_impl.cxx:5450
|
|
||||||
(anonymous namespace)::(anonymous) nonce SECItem
|
|
||||||
vcl/source/gdi/pdfwriter_impl.cxx:5451
|
|
||||||
(anonymous namespace)::(anonymous) certReq SECItem
|
|
||||||
vcl/source/gdi/pdfwriter_impl.cxx:5452
|
|
||||||
(anonymous namespace)::(anonymous) extensions (anonymous namespace)::Extension *
|
|
||||||
vcl/source/gdi/pdfwriter_impl.cxx:5496
|
|
||||||
(anonymous namespace)::SigningCertificateV2 certs struct (anonymous namespace)::ESSCertIDv2 **
|
|
||||||
vcl/source/gdi/pdfwriter_impl.cxx:5794
|
|
||||||
(anonymous namespace)::(anonymous) statusString SECItem
|
|
||||||
vcl/source/gdi/pdfwriter_impl.cxx:5795
|
|
||||||
(anonymous namespace)::(anonymous) failInfo SECItem
|
|
||||||
vcl/source/uitest/uno/uitest_uno.cxx:35
|
vcl/source/uitest/uno/uitest_uno.cxx:35
|
||||||
UITestUnoObj mpUITest std::unique_ptr<UITest>
|
UITestUnoObj mpUITest std::unique_ptr<UITest>
|
||||||
vcl/unx/generic/app/wmadaptor.cxx:1270
|
vcl/unx/generic/app/wmadaptor.cxx:1270
|
||||||
|
Loading…
x
Reference in New Issue
Block a user