summaryrefslogtreecommitdiff
path: root/compilerplugins
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-07-22 15:19:19 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-07-24 08:39:55 +0200
commit8045cef05ceedeae0e59c56225b577e7c17d5f87 (patch)
treebf286a699f303013bee3009aa57f93a6698907d4 /compilerplugins
parent5a6d6429f4d5ce7a1bbddc97990628039ff6f2ed (diff)
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
Diffstat (limited to 'compilerplugins')
-rw-r--r--compilerplugins/clang/unusedfields.cxx115
-rwxr-xr-xcompilerplugins/clang/unusedfields.py16
-rw-r--r--compilerplugins/clang/unusedfields.readonly.results1360
-rw-r--r--compilerplugins/clang/unusedfields.untouched.results146
-rw-r--r--compilerplugins/clang/unusedfields.writeonly.results226
5 files changed, 592 insertions, 1271 deletions
diff --git a/compilerplugins/clang/unusedfields.cxx b/compilerplugins/clang/unusedfields.cxx
index 66c959d519a5..fb7f7df35418 100644
--- a/compilerplugins/clang/unusedfields.cxx
+++ b/compilerplugins/clang/unusedfields.cxx
@@ -82,7 +82,7 @@ public:
bool VisitMemberExpr( const MemberExpr* );
bool VisitDeclRefExpr( const DeclRefExpr* );
bool VisitCXXConstructorDecl( const CXXConstructorDecl* );
- bool VisitVarDecl( const VarDecl* );
+ bool VisitInitListExpr( const InitListExpr* );
bool TraverseCXXConstructorDecl( CXXConstructorDecl* );
bool TraverseCXXMethodDecl( CXXMethodDecl* );
bool TraverseFunctionDecl( FunctionDecl* );
@@ -93,7 +93,9 @@ private:
void checkWriteOnly(const FieldDecl* fieldDecl, const Expr* memberExpr);
void checkReadOnly(const FieldDecl* fieldDecl, const Expr* memberExpr);
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 * 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)
{
bPotentiallyWrittenTo = true;
- break;
}
- walkupUp();
+ break;
}
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())
{
bPotentiallyWrittenTo = true;
- break;
}
- bool bParamsAndArgsOffset = calleeMethodDecl != nullptr;
- if (IsPassedByNonConstRef(child, operatorCallExpr, calleeFunctionDecl, bParamsAndArgsOffset))
+ else if (IsPassedByNonConst(fieldDecl, child, operatorCallExpr, calleeFunctionDecl))
bPotentiallyWrittenTo = true;
}
else
@@ -647,8 +646,7 @@ void UnusedFields::checkReadOnly(const FieldDecl* fieldDecl, const Expr* memberE
bPotentiallyWrittenTo = true;
break;
}
- // check for being passed as parameter by non-const-reference
- if (IsPassedByNonConstRef(child, cxxMemberCallExpr, calleeMethodDecl, false/*bParamsAndArgsOffset*/))
+ if (IsPassedByNonConst(fieldDecl, child, cxxMemberCallExpr, calleeMethodDecl))
bPotentiallyWrittenTo = true;
}
else
@@ -657,24 +655,15 @@ void UnusedFields::checkReadOnly(const FieldDecl* fieldDecl, const Expr* memberE
}
else if (auto cxxConstructExpr = dyn_cast<CXXConstructExpr>(parent))
{
- const CXXConstructorDecl * cxxConstructorDecl = cxxConstructExpr->getConstructor();
- // 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;
- break;
- }
+ if (IsPassedByNonConst(fieldDecl, child, cxxConstructExpr))
+ bPotentiallyWrittenTo = true;
break;
}
else if (auto callExpr = dyn_cast<CallExpr>(parent))
{
const FunctionDecl * calleeFunctionDecl = callExpr->getDirectCallee();
if (calleeFunctionDecl) {
- if (IsPassedByNonConstRef(child, callExpr, calleeFunctionDecl, false/*bParamsAndArgsOffset*/))
+ if (IsPassedByNonConst(fieldDecl, child, callExpr, calleeFunctionDecl))
bPotentiallyWrittenTo = true;
} else
bPotentiallyWrittenTo = true; // conservative, could improve
@@ -687,8 +676,13 @@ void UnusedFields::checkReadOnly(const FieldDecl* fieldDecl, const Expr* memberE
|| op == BO_DivAssign || op == BO_RemAssign || op == BO_AddAssign
|| op == BO_SubAssign || op == BO_ShlAssign || op == BO_ShrAssign
|| op == BO_AndAssign || op == BO_XorAssign || op == BO_OrAssign;
- if (binaryOp->getLHS() == child && assignmentOp) {
- bPotentiallyWrittenTo = true;
+ 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;
}
break;
}
@@ -748,6 +742,7 @@ void UnusedFields::checkReadOnly(const FieldDecl* fieldDecl, const Expr* memberE
parent->dump();
}
memberExpr->dump();
+ fieldDecl->getType()->dump();
}
MyFieldInfo fieldInfo = niceName(fieldDecl);
@@ -755,16 +750,52 @@ void UnusedFields::checkReadOnly(const FieldDecl* fieldDecl, const Expr* memberE
writeToSet.insert(fieldInfo);
}
-bool UnusedFields::IsPassedByNonConstRef(const Stmt * child, const CallExpr * callExpr,
- const FunctionDecl * calleeFunctionDecl,
- bool bParamsAndArgsOffset)
+bool UnusedFields::IsPassedByNonConst(const FieldDecl* fieldDecl, const Stmt * child, const CallExpr * callExpr,
+ const FunctionDecl * calleeFunctionDecl)
{
- unsigned len = std::min(callExpr->getNumArgs() + (bParamsAndArgsOffset ? 1 : 0),
+ unsigned len = std::min(callExpr->getNumArgs(),
calleeFunctionDecl->getNumParams());
- for (unsigned i = 0; i < len; ++i)
- if (callExpr->getArg(i + (bParamsAndArgsOffset ? 1 : 0)) == child)
- if (loplugin::TypeCheck(calleeFunctionDecl->getParamDecl(i)->getType()).NonConst().LvalueReference())
- return true;
+ // 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 (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())
+ 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;
}
@@ -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
// have to do it here.
-// TODO could be more precise here about which fields are actually being written to
-bool UnusedFields::VisitVarDecl( const VarDecl* varDecl)
+bool UnusedFields::VisitInitListExpr( const InitListExpr* initListExpr)
{
- if (!varDecl->getLocation().isValid() || ignoreLocation( varDecl ))
- return true;
- // ignore stuff that forms part of the stable URE interface
- if (isInUnoIncludeFile(compiler.getSourceManager().getSpellingLoc(varDecl->getLocation())))
- return true;
-
- if (!varDecl->hasInit())
- return true;
- auto initListExpr = dyn_cast<InitListExpr>(varDecl->getInit()->IgnoreImplicit());
- if (!initListExpr)
+ if (ignoreLocation( 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());
+ QualType varType = initListExpr->getType().getDesugaredType(compiler.getASTContext());
auto recordType = varType->getAs<RecordType>();
if (!recordType)
return true;
diff --git a/compilerplugins/clang/unusedfields.py b/compilerplugins/clang/unusedfields.py
index f5b882969258..96cfbe879bd2 100755
--- a/compilerplugins/clang/unusedfields.py
+++ b/compilerplugins/clang/unusedfields.py
@@ -153,7 +153,23 @@ for d in definitionSet:
parentClazz = d[0];
if d in writeToSet:
continue
+ fieldType = definitionToTypeMap[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))
diff --git a/compilerplugins/clang/unusedfields.readonly.results b/compilerplugins/clang/unusedfields.readonly.results
index f13d83aece78..5652c72eeb7f 100644
--- a/compilerplugins/clang/unusedfields.readonly.results
+++ b/compilerplugins/clang/unusedfields.readonly.results
@@ -82,16 +82,10 @@ connectivity/source/drivers/evoab2/EApi.h:131
(anonymous) country char *
connectivity/source/drivers/mozab/bootstrap/MNSProfileDiscover.hxx:85
connectivity::mozab::ProfileAccess m_ProductProfileList class connectivity::mozab::ProductStruct [4]
-connectivity/source/drivers/postgresql/pq_connection.hxx:116
- pq_sdbc_driver::ConnectionSettings showSystemColumns _Bool
connectivity/source/inc/dbase/DIndexIter.hxx:36
connectivity::dbase::OIndexIterator m_pOperator file::OBoolOperator *
-connectivity/source/inc/dbase/DTable.hxx:62
- connectivity::dbase::ODbaseTable::DBFHeader dateElems sal_uInt8 [3]
-connectivity/source/inc/dbase/DTable.hxx:66
- connectivity::dbase::ODbaseTable::DBFHeader trailer sal_uInt8 [20]
-connectivity/source/inc/dbase/DTable.hxx:89
- connectivity::dbase::ODbaseTable::DBFColumn db_frei2 sal_uInt8 [14]
+connectivity/source/inc/dbase/DIndexIter.hxx:37
+ connectivity::dbase::OIndexIterator m_pOperand const file::OOperand *
connectivity/source/inc/OColumn.hxx:45
connectivity::OColumn m_AutoIncrement _Bool
connectivity/source/inc/OColumn.hxx:46
@@ -112,9 +106,13 @@ connectivity/source/inc/OTypeInfo.hxx:34
connectivity::OTypeInfo nPrecision sal_Int32
connectivity/source/inc/OTypeInfo.hxx:36
connectivity::OTypeInfo nMaximumScale sal_Int16
-cppu/source/helper/purpenv/helper_purpenv_Mapping.cxx:50
+connectivity/source/inc/writer/WTable.hxx:70
+ connectivity::writer::OWriterTable m_nStartCol sal_Int32
+connectivity/source/inc/writer/WTable.hxx:71
+ connectivity::writer::OWriterTable m_nStartRow sal_Int32
+cppu/source/helper/purpenv/helper_purpenv_Mapping.cxx:34
Mapping m_from uno::Environment
-cppu/source/helper/purpenv/helper_purpenv_Mapping.cxx:51
+cppu/source/helper/purpenv/helper_purpenv_Mapping.cxx:35
Mapping m_to uno::Environment
cppu/source/helper/purpenv/Proxy.hxx:36
Proxy m_from css::uno::Environment
@@ -124,11 +122,11 @@ cppu/source/threadpool/threadpool.cxx:377
_uno_ThreadPool dummy sal_Int32
cppu/source/typelib/typelib.cxx:61
AlignSize_Impl nInt16 sal_Int16
-cppu/source/uno/cascade_mapping.cxx:50
+cppu/source/uno/cascade_mapping.cxx:40
MediatorMapping m_from uno::Environment
-cppu/source/uno/cascade_mapping.cxx:51
+cppu/source/uno/cascade_mapping.cxx:41
MediatorMapping m_interm uno::Environment
-cppu/source/uno/cascade_mapping.cxx:52
+cppu/source/uno/cascade_mapping.cxx:42
MediatorMapping m_to uno::Environment
cppu/source/uno/check.cxx:38
(anonymous namespace)::C1 n1 sal_Int16
@@ -178,80 +176,26 @@ cui/source/inc/autocdlg.hxx:229
StringChangeList aNewEntries DoubleStringArray
cui/source/inc/autocdlg.hxx:230
StringChangeList aDeletedEntries DoubleStringArray
-cui/source/inc/numpages.hxx:166
+cui/source/inc/backgrnd.hxx:108
+ SvxBackgroundTabPage bLinkOnly _Bool
+cui/source/inc/cuicharmap.hxx:83
+ SvxCharacterMap m_pFavCharView VclPtr<class SvxCharView> [16]
+cui/source/inc/numpages.hxx:167
SvxNumPickTabPage aNumSettingsArrays SvxNumSettingsArr_Impl [16]
-cui/source/inc/swpossizetabpage.hxx:77
- SvxSwPosSizeTabPage m_aFramePosString class SvxSwFramePosString
cui/source/options/optcolor.cxx:257
ColorConfigWindow_Impl aModuleOptions class SvtModuleOptions
cui/source/options/optpath.cxx:79
OptPath_Impl m_aDefOpt class SvtDefaultOptions
-dbaccess/source/core/api/RowSetBase.hxx:76
- dbaccess::ORowSetBase m_aModuleClient class dbaccess::OModuleClient
-dbaccess/source/core/dataaccess/ModelImpl.hxx:168
- dbaccess::ODatabaseModelImpl m_aModuleClient class dbaccess::OModuleClient
-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
-dbaccess/source/ui/app/AppController.hxx:97
- dbaui::OApplicationController m_aModuleClient class dbaui::OModuleClient
-dbaccess/source/ui/control/tabletree.cxx:184
- dbaui::(anonymous namespace)::OViewSetter m_aEqualFunctor ::comphelper::UStringMixEqual
-dbaccess/source/ui/inc/advancedsettingsdlg.hxx:41
- dbaui::AdvancedSettingsDialog m_aModuleClient class dbaui::OModuleClient
-dbaccess/source/ui/inc/brwctrlr.hxx:79
- dbaui::SbaXDataBrowserController m_aModuleClient class dbaui::OModuleClient
+cui/source/options/personalization.hxx:34
+ SvxPersonalizationTabPage m_vDefaultPersonaImages VclPtr<class PushButton> [3]
+cui/source/options/personalization.hxx:85
+ SelectPersonaDialog m_vResultList VclPtr<class PushButton> [9]
+cui/source/options/personalization.hxx:86
+ SelectPersonaDialog m_vSearchSuggestions VclPtr<class PushButton> [6]
dbaccess/source/ui/inc/charsetlistbox.hxx:42
dbaui::CharSetListBox m_aCharSets class dbaui::OCharsetDisplay
-dbaccess/source/ui/inc/dbtreelistbox.hxx:54
- dbaui::DBTreeListBox m_aModuleClient class dbaui::OModuleClient
-dbaccess/source/ui/inc/dbwiz.hxx:58
- dbaui::ODbTypeWizDialog m_aModuleClient class dbaui::OModuleClient
-dbaccess/source/ui/inc/dbwizsetup.hxx:63
- dbaui::ODbTypeWizDialogSetup m_aModuleClient class dbaui::OModuleClient
-dbaccess/source/ui/inc/directsql.hxx:49
- dbaui::DirectSQLDialog m_aModuleClient class dbaui::OModuleClient
-dbaccess/source/ui/inc/FieldControls.hxx:33
- dbaui::OPropColumnEditCtrl m_aModuleClient class dbaui::OModuleClient
-dbaccess/source/ui/inc/FieldControls.hxx:47
- dbaui::OPropEditCtrl m_aModuleClient class dbaui::OModuleClient
-dbaccess/source/ui/inc/formadapter.hxx:123
- dbaui::SbaXFormAdapter m_aModuleClient class dbaui::OModuleClient
-dbaccess/source/ui/inc/GeneralUndo.hxx:32
- dbaui::OCommentUndoAction m_aModuleClient class dbaui::OModuleClient
-dbaccess/source/ui/inc/indexfieldscontrol.hxx:36
- dbaui::IndexFieldsControl m_aModuleClient class dbaui::OModuleClient
-dbaccess/source/ui/inc/JoinController.hxx:46
- dbaui::OJoinController m_aModuleClient class dbaui::OModuleClient
-dbaccess/source/ui/inc/RelationDlg.hxx:38
- dbaui::ORelationDialog m_aModuleClient class dbaui::OModuleClient
-dbaccess/source/ui/inc/TableController.hxx:41
- dbaui::OTableController m_aModuleClient class dbaui::OModuleClient
-dbaccess/source/ui/inc/TableGrantCtrl.hxx:46
- dbaui::OTableGrantControl m_aModuleClient class dbaui::OModuleClient
-dbaccess/source/ui/inc/TokenWriter.hxx:186
- dbaui::ORowSetImportExport m_aModuleClient class dbaui::OModuleClient
-dbaccess/source/ui/inc/unoadmin.hxx:40
- dbaui::ODatabaseAdministrationDialog m_aModuleClient class dbaui::OModuleClient
-dbaccess/source/ui/inc/unosqlmessage.hxx:35
- dbaui::OSQLMessageDialog m_aModuleClient class dbaui::OModuleClient
-dbaccess/source/ui/inc/UserAdminDlg.hxx:48
- dbaui::OUserAdminDlg m_aModuleClient class dbaui::OModuleClient
-dbaccess/source/ui/misc/dbsubcomponentcontroller.cxx:127
- dbaui::DBSubComponentController_Impl m_aModuleClient class dbaui::OModuleClient
-dbaccess/source/ui/uno/composerdialogs.hxx:44
- dbaui::ComposerDialog m_aModuleClient class dbaui::OModuleClient
-dbaccess/source/ui/uno/dbinteraction.hxx:65
- dbaui::BasicInteractionHandler m_aModuleClient const class dbaui::OModuleClient
-dbaccess/source/ui/uno/textconnectionsettings_uno.cxx:66
- dbaui::OTextConnectionSettingsDialog m_aModuleClient class dbaui::OModuleClient
-dbaccess/source/ui/uno/unoDirectSql.hxx:43
- dbaui::ODirectSQLDialog m_aModuleClient class dbaui::OModuleClient
-desktop/source/app/dispatchwatcher.hxx:61
- desktop::DispatchWatcher::DispatchRequest aRequestType enum desktop::DispatchWatcher::RequestType
+desktop/source/deployment/gui/dp_gui_updatedialog.cxx:227
+ dp_gui::UpdateDialog::Thread m_abort uno::Reference<task::XAbortChannel>
embeddedobj/source/inc/oleembobj.hxx:119
OleEmbeddedObject m_pOleComponent class OleComponent *
embeddedobj/source/inc/oleembobj.hxx:139
@@ -278,8 +222,12 @@ extensions/source/propctrlr/propertyhandler.hxx:80
pcr::PropertyHandler m_aEnsureResAccess class pcr::PcrClient
extensions/source/scanner/scanner.hxx:46
ScannerManager maProtector osl::Mutex
-filter/source/graphicfilter/eps/eps.cxx:112
+filter/inc/gfxtypes.hxx:191
+ svgi::State meTextDisplayAlign enum svgi::TextAlign
+filter/source/graphicfilter/eps/eps.cxx:113
PSWriter pVDev ScopedVclPtrInstance<class VirtualDevice>
+filter/source/graphicfilter/icgm/cgm.hxx:59
+ CGM mpGraphic class Graphic *
filter/source/graphicfilter/icgm/chart.hxx:44
DataNode nBoxX1 sal_Int16
filter/source/graphicfilter/icgm/chart.hxx:45
@@ -290,214 +238,20 @@ filter/source/graphicfilter/icgm/chart.hxx:47
DataNode nBoxY2 sal_Int16
filter/source/graphicfilter/idxf/dxfreprd.hxx:76
DXFRepresentation aPalette class DXFPalette
-filter/source/graphicfilter/itga/itga.cxx:61
- TGAExtension sAuthorName char [41]
-filter/source/graphicfilter/itga/itga.cxx:62
- TGAExtension sAuthorComment char [324]
-filter/source/graphicfilter/itga/itga.cxx:63
- TGAExtension sDateTimeStamp char [12]
-filter/source/graphicfilter/itga/itga.cxx:65
- TGAExtension sSoftwareID char [41]
-filter/source/msfilter/msoleexp.cxx:132
- SvxMSExportOLEObjects::ExportOLEObject(svt::EmbeddedObjectRef &, SotStorage &)::ObjExpType::GlobalNameIds n1 sal_uInt32
+filter/source/graphicfilter/itga/itga.cxx:51
+ TGAFileFooter nSignature sal_uInt32 [4]
filter/source/xsltdialog/xmlfiltersettingsdialog.hxx:71
- XMLFilterListBox m_aEnsureResMgr class EnsureResMgr
+ XMLFilterListBox m_aEnsureResLocale class EnsureResLocale
filter/source/xsltdialog/xmlfiltersettingsdialog.hxx:130
- XMLFilterSettingsDialog maEnsureResMgr class EnsureResMgr
+ XMLFilterSettingsDialog maEnsureResLocale class EnsureResLocale
filter/source/xsltdialog/xmlfiltersettingsdialog.hxx:153
XMLFilterSettingsDialog maModuleOpt class SvtModuleOptions
-formula/source/ui/dlg/funcpage.hxx:61
- formula::FuncPage m_aModuleClient class formula::OModuleClient
-formula/source/ui/dlg/parawin.hxx:47
- formula::ParaWin m_aModuleClient class formula::OModuleClient
-formula/source/ui/dlg/structpg.hxx:68
- formula::StructPage m_aModuleClient class formula::OModuleClient
framework/inc/dispatch/dispatchprovider.hxx:81
framework::DispatchProvider m_aProtocolHandlerCache class framework::HandlerCache
framework/source/uiconfiguration/moduleuiconfigurationmanager.cxx:184
(anonymous namespace)::ModuleUIConfigurationManager::UIElementType aElementsHashMap (anonymous namespace)::ModuleUIConfigurationManager::UIElementDataHashMap
framework/source/uiconfiguration/uiconfigurationmanager.cxx:164
(anonymous namespace)::UIConfigurationManager::UIElementType aElementsHashMap (anonymous namespace)::UIConfigurationManager::UIElementDataHashMap
-hwpfilter/source/drawdef.h:69
- BAREHWPDOProperty line_pstyle int
-hwpfilter/source/drawdef.h:70
- BAREHWPDOProperty line_hstyle int
-hwpfilter/source/drawdef.h:71
- BAREHWPDOProperty line_tstyle int
-hwpfilter/source/drawdef.h:72
- BAREHWPDOProperty line_color unsigned int
-hwpfilter/source/drawdef.h:73
- BAREHWPDOProperty line_width hunit
-hwpfilter/source/drawdef.h:74
- BAREHWPDOProperty fill_color unsigned int
-hwpfilter/source/drawdef.h:75
- BAREHWPDOProperty pattern_type uint
-hwpfilter/source/drawdef.h:76
- BAREHWPDOProperty pattern_color unsigned int
-hwpfilter/source/drawdef.h:77
- BAREHWPDOProperty hmargin hunit
-hwpfilter/source/drawdef.h:78
- BAREHWPDOProperty vmargin hunit
-hwpfilter/source/drawdef.h:79
- BAREHWPDOProperty flag uint
-hwpfilter/source/drawdef.h:87
- GradationProperty fromcolor int
-hwpfilter/source/drawdef.h:88
- GradationProperty tocolor int
-hwpfilter/source/drawdef.h:89
- GradationProperty gstyle int
-hwpfilter/source/drawdef.h:90
- GradationProperty angle int
-hwpfilter/source/drawdef.h:91
- GradationProperty center_x int
-hwpfilter/source/drawdef.h:92
- GradationProperty center_y int
-hwpfilter/source/drawdef.h:93
- GradationProperty nstep int
-hwpfilter/source/drawdef.h:101
- BitmapProperty offset1 ZZPoint
-hwpfilter/source/drawdef.h:102
- BitmapProperty offset2 ZZPoint
-hwpfilter/source/drawdef.h:103
- BitmapProperty szPatternFile char [261]
-hwpfilter/source/drawdef.h:104
- BitmapProperty pictype char
-hwpfilter/source/drawdef.h:112
- RotationProperty rot_originx int
-hwpfilter/source/drawdef.h:113
- RotationProperty rot_originy int
-hwpfilter/source/drawdef.h:114
- RotationProperty parall ZZParall
-hwpfilter/source/drawdef.h:160
- HWPDOProperty szPatternFile char [261]
-hwpfilter/source/hbox.h:116
- Bookmark id hchar [16]
-hwpfilter/source/hbox.h:132
- DateFormat format hchar [40]
-hwpfilter/source/hbox.h:153
- DateCode date short [6]
-hwpfilter/source/hbox.h:198
- CellLine key unsigned char
-hwpfilter/source/hbox.h:199
- CellLine top unsigned char
-hwpfilter/source/hbox.h:200
- CellLine bottom unsigned char
-hwpfilter/source/hbox.h:201
- CellLine left unsigned char
-hwpfilter/source/hbox.h:202
- CellLine right unsigned char
-hwpfilter/source/hbox.h:203
- CellLine color short
-hwpfilter/source/hbox.h:204
- CellLine shade unsigned char
-hwpfilter/source/hbox.h:227
- Cell linetype unsigned char [4]
-hwpfilter/source/hbox.h:261
- FBoxStyle margin short [3][4]
-hwpfilter/source/hbox.h:334
- TxtBox cap_len short
-hwpfilter/source/hbox.h:335
- TxtBox next_box short
-hwpfilter/source/hbox.h:536
- PicDefFile path char [256]
-hwpfilter/source/hbox.h:537
- PicDefFile img void *
-hwpfilter/source/hbox.h:538
- PicDefFile skipfind _Bool
-hwpfilter/source/hbox.h:546
- PicDefEmbed embname char [16]
-hwpfilter/source/hbox.h:554
- PicDefOle embname char [16]
-hwpfilter/source/hbox.h:555
- PicDefOle hwpole void *
-hwpfilter/source/hbox.h:574
- PicDefUnknown path char [256]
-hwpfilter/source/hbox.h:579
- (anonymous) picfile struct PicDefFile
-hwpfilter/source/hbox.h:580
- (anonymous) picembed struct PicDefEmbed
-hwpfilter/source/hbox.h:581
- (anonymous) picole struct PicDefOle
-hwpfilter/source/hbox.h:583
- (anonymous) picun struct PicDefUnknown
-hwpfilter/source/hbox.h:597
- Picture reserved hchar [2]
-hwpfilter/source/hbox.h:627
- Picture reserved3 char [9]
-hwpfilter/source/hbox.h:649
- Line reserved hchar [2]
-hwpfilter/source/hbox.h:668
- Hidden reserved hchar [2]
-hwpfilter/source/hbox.h:671
- Hidden info unsigned char [8]
-hwpfilter/source/hbox.h:685
- HeaderFooter reserved hchar [2]
-hwpfilter/source/hbox.h:688
- HeaderFooter info unsigned char [8]
-hwpfilter/source/hbox.h:715
- Footnote reserved hchar [2]
-hwpfilter/source/hbox.h:718
- Footnote info unsigned char [8]
-hwpfilter/source/hbox.h:834
- MailMerge field_name unsigned char [20]
-hwpfilter/source/hbox.h:850
- Compose compose hchar [3]
-hwpfilter/source/hbox.h:964
- Outline number unsigned short [7]
-hwpfilter/source/hbox.h:968
- Outline user_shape hchar [7]
-hwpfilter/source/hbox.h:972
- Outline deco hchar [7][2]
-hwpfilter/source/hinfo.h:72
- PaperBackInfo reserved1 char [8]
-hwpfilter/source/hinfo.h:76
- PaperBackInfo reserved2 char [8]
-hwpfilter/source/hinfo.h:77
- PaperBackInfo filename char [261]
-hwpfilter/source/hinfo.h:78
- PaperBackInfo color unsigned char [3]
-hwpfilter/source/hinfo.h:81
- PaperBackInfo reserved3 char [27]
-hwpfilter/source/hinfo.h:111
- DocChainInfo chain_filename unsigned char [40]
-hwpfilter/source/hinfo.h:126
- HWPSummary title unsigned short [56]
-hwpfilter/source/hinfo.h:127
- HWPSummary subject unsigned short [56]
-hwpfilter/source/hinfo.h:128
- HWPSummary author unsigned short [56]
-hwpfilter/source/hinfo.h:129
- HWPSummary date unsigned short [56]
-hwpfilter/source/hinfo.h:130
- HWPSummary keyword unsigned short [2][56]
-hwpfilter/source/hinfo.h:131
- HWPSummary etc unsigned short [3][56]
-hwpfilter/source/hinfo.h:170
- HWPInfo reserved1 unsigned char [4]
-hwpfilter/source/hinfo.h:175
- HWPInfo annotation unsigned char [24]
-hwpfilter/source/hinfo.h:192
- HWPInfo bordermargin hunit [4]
-hwpfilter/source/hinfo.h:228
- CharShape font unsigned char [7]
-hwpfilter/source/hinfo.h:229
- CharShape ratio unsigned char [7]
-hwpfilter/source/hinfo.h:230
- CharShape space signed char [7]
-hwpfilter/source/hinfo.h:231
- CharShape color unsigned char [2]
-hwpfilter/source/hinfo.h:234
- CharShape reserved unsigned char [4]
-hwpfilter/source/hpara.h:70
- LineInfo softbreak unsigned short
-hwpfilter/source/htags.h:33
- EmPicture type char [16]
-hwpfilter/source/htags.h:47
- HyperText bookmark hchar [16]
-hwpfilter/source/htags.h:48
- HyperText macro char [325]
-hwpfilter/source/htags.h:50
- HyperText reserve char [3]
i18npool/inc/textconversion.hxx:80
com::sun::star::i18n::(anonymous) code sal_Unicode
i18npool/inc/textconversion.hxx:81
@@ -512,32 +266,22 @@ include/basic/sbstar.hxx:56
StarBASIC aErrorHdl Link<class StarBASIC *, _Bool>
include/basic/sbstar.hxx:57
StarBASIC aBreakHdl Link<class StarBASIC *, enum BasicDebugFlags>
-include/canvas/propertysethelper.hxx:57
- canvas::PropertySetHelper::Callbacks getter canvas::PropertySetHelper::GetterType
-include/canvas/propertysethelper.hxx:58
- canvas::PropertySetHelper::Callbacks setter canvas::PropertySetHelper::SetterType
include/connectivity/DriversConfig.hxx:76
connectivity::DriversConfig m_aNode connectivity::DriversConfig::OSharedConfigNode
include/connectivity/sdbcx/VDescriptor.hxx:56
connectivity::sdbcx::ODescriptor m_aCase comphelper::UStringMixEqual
include/drawinglayer/primitive2d/textlayoutdevice.hxx:61
drawinglayer::primitive2d::TextLayouterDevice maSolarGuard class SolarMutexGuard
-include/editeng/brushitem.hxx:53
+include/editeng/brushitem.hxx:52
SvxBrushItem maSecOptions class SvtSecurityOptions
-include/editeng/numitem.hxx:318
- SvxNodeNum nLevelVal sal_uInt16 [10]
-include/filter/msfilter/svdfppt.hxx:210
- PptSlideLayoutAtom aPlaceholderId enum PptPlaceholder [8]
+include/filter/msfilter/svdfppt.hxx:691
+ PPTExtParaSheet aExtParaLevel struct PPTExtParaLevel [5]
include/filter/msfilter/svdfppt.hxx:865
ImplPPTParaPropSet nDontKnow1 sal_uInt32
include/filter/msfilter/svdfppt.hxx:866
ImplPPTParaPropSet nDontKnow2 sal_uInt32
include/filter/msfilter/svdfppt.hxx:867
ImplPPTParaPropSet nDontKnow2bit06 sal_uInt16
-include/jvmfwk/framework.hxx:241
- JavaInfo nFeatures sal_uInt64
-include/jvmfwk/framework.hxx:250
- JavaInfo nRequirements sal_uInt64
include/LibreOfficeKit/LibreOfficeKitGtk.h:33
_LOKDocView aDrawingArea GtkDrawingArea
include/LibreOfficeKit/LibreOfficeKitGtk.h:38
@@ -554,6 +298,10 @@ include/registry/refltype.hxx:68
RTUik m_Data4 sal_uInt32
include/registry/refltype.hxx:69
RTUik m_Data5 sal_uInt32
+include/sfx2/charmapcontrol.hxx:43
+ SfxCharmapCtrl m_pFavCharView VclPtr<class SvxCharView> [16]
+include/sfx2/frame.hxx:100
+ SfxFrame pChildArr class SfxFrameArr_Impl *
include/sfx2/msg.hxx:105
SfxType createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:106
@@ -570,46 +318,6 @@ include/sfx2/sidebar/ResourceManager.hxx:103
sfx2::sidebar::ResourceManager maMiscOptions class SvtMiscOptions
include/svl/ondemand.hxx:59
OnDemandLocaleDataWrapper aSysLocale class SvtSysLocale
-include/svl/svdde.hxx:60
- DdeData xImp std::unique_ptr<DdeDataImp>
-include/svl/svdde.hxx:95
- DdeTransaction pName class DdeString *
-include/svl/svdde.hxx:96
- DdeTransaction nType short
-include/svl/svdde.hxx:97
- DdeTransaction nId sal_IntPtr
-include/svl/svdde.hxx:98
- DdeTransaction nTime sal_IntPtr
-include/svl/svdde.hxx:101
- DdeTransaction bBusy _Bool
-include/svl/svdde.hxx:180
- DdeConnection aTransactions std::vector<DdeTransaction *>
-include/svl/svdde.hxx:181
- DdeConnection pService class DdeString *
-include/svl/svdde.hxx:182
- DdeConnection pTopic class DdeString *
-include/svl/svdde.hxx:183
- DdeConnection pImp struct DdeImp *
-include/svl/svdde.hxx:208
- DdeItem pName class DdeString *
-include/svl/svdde.hxx:209
- DdeItem pMyTopic class DdeTopic *
-include/svl/svdde.hxx:210
- DdeItem pImpData class DdeItemImp *
-include/svl/svdde.hxx:213
- DdeItem nType sal_uInt8
-include/svl/svdde.hxx:259
- DdeTopic pName class DdeString *
-include/svl/svdde.hxx:297
- DdeService aFormats DdeFormats
-include/svl/svdde.hxx:298
- DdeService pSysTopic class DdeTopic *
-include/svl/svdde.hxx:299
- DdeService pName class DdeString *
-include/svl/svdde.hxx:300
- DdeService pConv ConvList *
-include/svl/svdde.hxx:301
- DdeService nStatus short
include/svtools/editsyntaxhighlighter.hxx:33
MultiLineEditSyntaxHighlight m_aColorConfig svtools::ColorConfig
include/svx/svdmark.hxx:142
@@ -620,14 +328,16 @@ include/svx/svdobj.hxx:973
SdrObjUserDataCreatorParams nInventor enum SdrInventor
include/svx/svdobj.hxx:974
SdrObjUserDataCreatorParams nObjIdentifier sal_uInt16
+include/svx/svdobj.hxx:975
+ SdrObjUserDataCreatorParams pObject class SdrObject *
+include/svx/svdundo.hxx:150
+ SdrUndoAttrObj pRepeatSet class SfxItemSet *
include/test/sheet/xdatapilottable.hxx:31
apitest::XDataPilotTable xCellForChange css::uno::Reference<css::table::XCell>
include/test/sheet/xdatapilottable.hxx:32
apitest::XDataPilotTable xCellForCheck css::uno::Reference<css::table::XCell>
include/test/sheet/xnamedranges.hxx:38
apitest::XNamedRanges xSheet css::uno::Reference<css::sheet::XSpreadsheet>
-include/tools/inetmime.hxx:66
- INetContentTypeParameter m_bConverted _Bool
include/vcl/bitmap.hxx:175
BmpFilterParam::(anonymous) mnSepiaPercent sal_uInt16
include/vcl/bitmap.hxx:176
@@ -638,20 +348,100 @@ include/vcl/filter/pdfdocument.hxx:173
vcl::filter::PDFNameElement m_nLength sal_uInt64
include/vcl/opengl/OpenGLContext.hxx:57
OpenGLCapabilitySwitch mbLimitedShaderRegisters _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/toolbox.hxx:106
+ ToolBox maInDockRect tools::Rectangle
include/xmloff/nmspmap.hxx:70
SvXMLNamespaceMap sEmpty const class rtl::OUString
-jvmfwk/plugins/sunmajor/pluginlib/util.cxx:251
- jfw_plugin::FileHandleReader m_aBuffer sal_Char [1024]
+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: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:141
+ Export pParseQueue class ParserQueue *
+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
GtvApplicationWindow parent_instance GtkApplicationWindow
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:54
GtvApplicationWindow doctype LibreOfficeKitDocumentType
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:73
- GtvApplicationWindowClass parentClass GtkApplicationWindow
+ GtvApplicationWindowClass parentClass GtkApplicationWindowClass
libreofficekit/qa/gtktiledviewer/gtv-application.hxx:26
GtvApplication parent GtkApplication
libreofficekit/qa/gtktiledviewer/gtv-application.hxx:31
- GtvApplicationClass parentClass GtkApplication
+ GtvApplicationClass parentClass GtkApplicationClass
libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.hxx:28
GtvCalcHeaderBar parent GtkDrawingArea
libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.hxx:37
@@ -664,7 +454,7 @@ libreofficekit/qa/gtktiledviewer/gtv-main-toolbar.hxx:28
GtvMainToolbar parent GtkBox
libreofficekit/qa/gtktiledviewer/gtv-main-toolbar.hxx:36
GtvMainToolbarClass parentClass GtkBoxClass
-libreofficekit/source/gtk/lokdocview.cxx:85
+libreofficekit/source/gtk/lokdocview.cxx:84
LOKDocViewPrivateImpl m_bIsLoading gboolean
lingucomponent/source/languageguessing/simpleguesser.cxx:76
textcat_t fprint void **
@@ -676,82 +466,8 @@ lingucomponent/source/languageguessing/simpleguesser.cxx:81
textcat_t output char [1024]
linguistic/source/dlistimp.hxx:56
DicList aOpt class LinguOptions
-lotuswordpro/source/filter/bento.hxx:330
- OpenStormBento::CBenValueSegment::(anonymous) cImmData OpenStormBento::BenByte [4]
-lotuswordpro/source/filter/clone.hxx:23
- detail::has_clone::(anonymous) a char [2]
-lotuswordpro/source/filter/explode.hxx:110
- Decompression m_Buffer sal_uInt8 [16384]
-lotuswordpro/source/filter/lwpdrawobj.hxx:253
- LwpDrawEllipse m_aVector struct SdwPoint [13]
-lotuswordpro/source/filter/lwpdrawobj.hxx:273
- LwpDrawArc m_aVector struct SdwPoint [4]
-lotuswordpro/source/filter/lwpdrawobj.hxx:317
- LwpDrawTextArt m_aVector struct SdwPoint [4]
-lotuswordpro/source/filter/lwpobjstrm.hxx:78
- LwpObjectStream m_SmallBuffer sal_uInt8 [100]
-lotuswordpro/source/filter/lwpsdwdrawheader.hxx:189
- SdwClosedObjStyleRec pFillPattern sal_uInt8 [8]
-lotuswordpro/source/filter/lwpsdwdrawheader.hxx:322
- BmpInfoHeader nHeaderLen sal_uInt32
-lotuswordpro/source/filter/lwpsdwdrawheader.hxx:323
- BmpInfoHeader nWidth sal_uInt16
-lotuswordpro/source/filter/lwpsdwdrawheader.hxx:324
- BmpInfoHeader nHeight sal_uInt16
-lotuswordpro/source/filter/lwpsdwdrawheader.hxx:325
- BmpInfoHeader nPlanes sal_uInt16
-lotuswordpro/source/filter/lwpsdwdrawheader.hxx:326
- BmpInfoHeader nBitCount sal_uInt16
-lotuswordpro/source/filter/lwpsortopt.hxx:90
- LwpSortOption m_Keys class LwpSortKey [3]
-lotuswordpro/source/filter/xfilter/xfcellstyle.hxx:141
- XFCellStyle m_fTextIndent double
-lotuswordpro/source/filter/xfilter/xfcellstyle.hxx:146
- XFCellStyle m_pFont rtl::Reference<XFFont>
-lotuswordpro/source/filter/xfilter/xfcellstyle.hxx:149
- XFCellStyle m_bWrapText _Bool
-lotuswordpro/source/filter/xfilter/xfdrawgroup.hxx:90
- XFDrawGroup m_aChildren rtl::Reference<XFContentContainer>
-lotuswordpro/source/filter/xfilter/xfdrawstyle.hxx:124
- XFDrawStyle m_eWrap enum enumXFWrap
-lotuswordpro/source/filter/xfilter/xffont.hxx:245
- XFFont m_eRelief enum enumXFRelief
-lotuswordpro/source/filter/xfilter/xffont.hxx:247
- XFFont m_eEmphasize enum enumXFEmphasize
-lotuswordpro/source/filter/xfilter/xffont.hxx:250
- XFFont m_bOutline _Bool
-lotuswordpro/source/filter/xfilter/xffont.hxx:251
- XFFont m_bShadow _Bool
-lotuswordpro/source/filter/xfilter/xffont.hxx:252
- XFFont m_bBlink _Bool
-lotuswordpro/source/filter/xfilter/xffont.hxx:255
- XFFont m_fCharSpace double
-lotuswordpro/source/filter/xfilter/xfnumberstyle.hxx:113
- XFNumberStyle m_bCurrencySymbolPost _Bool
-lotuswordpro/source/filter/xfilter/xfparastyle.hxx:223
- XFParaStyle m_eLastLineAlign enum enumXFAlignType
-lotuswordpro/source/filter/xfilter/xfparastyle.hxx:224
- XFParaStyle m_bJustSingleWord _Bool
-lotuswordpro/source/filter/xfilter/xfparastyle.hxx:225
- XFParaStyle m_bKeepWithNext _Bool
-lotuswordpro/source/filter/xfilter/xfparastyle.hxx:239
- XFParaStyle m_nPageNumber sal_Int32
-lotuswordpro/source/filter/xfilter/xfparastyle.hxx:241
- XFParaStyle m_nLineNumberRestart sal_Int32
-lotuswordpro/source/filter/xfilter/xfrowstyle.hxx:87
- XFRowStyle m_aBackColor class XFColor
-lotuswordpro/source/filter/xfilter/xfsectionstyle.hxx:95
- XFSectionStyle m_aBackColor class XFColor
-lotuswordpro/source/filter/xfilter/xftable.hxx:112
- XFTable m_aHeaderRows rtl::Reference<XFContentContainer>
oox/qa/token/tokenmap-test.cxx:34
oox::TokenmapTest tokenMap class oox::TokenMap
-oox/source/export/shapes.cxx:226
- oox::lcl_StoreOwnAsOOXML(const uno::Reference<uno::XComponentContext> &, const uno::Reference<embed::XEmbeddedObject> &, const char *&, rtl::OUString &, rtl::OUString &, rtl::OUString &)::(anonymous struct)::(anonymous) n1 sal_uInt32
-oox/source/ole/olehelper.cxx:92
- oox::ole::(anonymous namespace)::GUIDCNamePair sGUID const char *
-oox/source/ole/olehelper.cxx:93
- oox::ole::(anonymous namespace)::GUIDCNamePair sName const char *
opencl/source/openclwrapper.cxx:302
opencl::(anonymous namespace)::OpenCLEnv mpOclCmdQueue cl_command_queue [1]
pyuno/source/module/pyuno_impl.hxx:226
@@ -766,28 +482,8 @@ registry/source/reflwrit.cxx:141
writeDouble(sal_uInt8 *, double)::(anonymous union)::(anonymous) b2 sal_uInt32
registry/source/reflwrit.cxx:181
CPInfo::(anonymous) aUik struct RTUik *
-reportdesign/source/core/inc/ReportUndoFactory.hxx:30
- rptui::OReportUndoFactory m_aModuleClient class rptui::OModuleClient
reportdesign/source/ui/inc/ColorListener.hxx:35
- rptui::OColorListener m_aModuleClient class rptui::OModuleClient
-reportdesign/source/ui/inc/ColorListener.hxx:37
rptui::OColorListener m_aColorConfig svtools::ColorConfig
-reportdesign/source/ui/inc/CondFormat.hxx:72
- rptui::ConditionalFormattingDialog m_aModuleClient class rptui::OModuleClient
-reportdesign/source/ui/inc/Navigator.hxx:31
- rptui::ONavigator m_aModuleClient class rptui::OModuleClient
-reportdesign/source/ui/inc/propbrw.hxx:47
- rptui::PropBrw m_aModuleClient class rptui::OModuleClient
-reportdesign/source/ui/inc/ReportController.hxx:86
- rptui::OReportController m_aModuleClient class rptui::OModuleClient
-rsc/inc/rsctools.hxx:109
- aVal32 sal_uInt32 [2]
-rsc/inc/rsctools.hxx:128
- aVal16 sal_uInt16 [2]
-rsc/source/rscpp/cpp.h:165
- defbuf name char []
-sal/osl/unx/process.cxx:795
- osl_procStat command char [16]
sal/osl/unx/process.cxx:825
osl_procStat signal char [24]
sal/osl/unx/process.cxx:826
@@ -796,36 +492,14 @@ sal/osl/unx/process.cxx:827
osl_procStat sigignore char [24]
sal/osl/unx/process.cxx:828
osl_procStat sigcatch char [24]
-sal/osl/unx/secimpl.hxx:27
- oslSecurityImpl m_buffer char [1]
-sal/osl/unx/thread.cxx:93
- osl_thread_priority_st m_Highest int
-sal/osl/unx/thread.cxx:94
- osl_thread_priority_st m_Above_Normal int
-sal/osl/unx/thread.cxx:95
- osl_thread_priority_st m_Normal int
-sal/osl/unx/thread.cxx:96
- osl_thread_priority_st m_Below_Normal int
-sal/osl/unx/thread.cxx:97
- osl_thread_priority_st m_Lowest int
-sal/rtl/alloc_arena.hxx:78
- rtl_arena_st m_name char [32]
sal/rtl/alloc_arena.hxx:100
rtl_arena_st m_hash_table_0 struct rtl_arena_segment_type *[64]
-sal/rtl/alloc_cache.hxx:110
- rtl_cache_st m_name char [32]
sal/rtl/alloc_cache.hxx:135
rtl_cache_st m_hash_table_0 struct rtl_cache_bufctl_type *[8]
-sal/rtl/cipher.cxx:228
- CipherContextBF::(anonymous) m_byte sal_uInt8 [8]
-sal/rtl/digest.cxx:178
- DigestContextMD2 m_pData sal_uInt8 [16]
sal/rtl/digest.cxx:179
DigestContextMD2 m_state sal_uInt32 [16]
sal/rtl/digest.cxx:180
DigestContextMD2 m_chksum sal_uInt32 [16]
-sal/rtl/rtl_process.cxx:44
- (anonymous namespace)::Id uuid_ sal_uInt8 [16]
sal/rtl/uuid.cxx:64
UUID clock_seq_low sal_uInt8
sal/rtl/uuid.cxx:65
@@ -836,18 +510,14 @@ sc/inc/chgviset.hxx:48
ScChangeViewSettings bEveryoneButMe _Bool
sc/inc/clipparam.hxx:41
ScClipParam maProtectedChartRangesVector ScRangeListVector
+sc/inc/compare.hxx:44
+ sc::Compare maCells struct sc::Compare::Cell [2]
sc/inc/compiler.hxx:127
ScRawToken::(anonymous union)::(anonymous) eItem class ScTableRefToken::Item
sc/inc/compiler.hxx:128
ScRawToken::(anonymous) table struct (anonymous struct at /home/noel/libo3/sc/inc/compiler.hxx:125:9)
sc/inc/compiler.hxx:133
ScRawToken::(anonymous) pMat class ScMatrix *
-sc/inc/consoli.hxx:44
- ScConsData::ScReferenceEntry nCol SCCOL
-sc/inc/consoli.hxx:45
- ScConsData::ScReferenceEntry nRow SCROW
-sc/inc/consoli.hxx:46
- ScConsData::ScReferenceEntry nTab SCTAB
sc/inc/dpresfilter.hxx:64
ScDPResultTree::DimensionNode maChildMembersValueNames ScDPResultTree::MembersType
sc/inc/dpresfilter.hxx:65
@@ -858,138 +528,24 @@ sc/inc/formulagroup.hxx:42
sc::FormulaGroupEntry::(anonymous) mpCells class ScFormulaCell **
sc/inc/formulalogger.hxx:42
sc::FormulaLogger maMessages std::vector<OUString>
-sc/qa/unit/ucalc.cxx:493
- Check nHeight sal_uLong
sc/source/core/inc/interpre.hxx:89
ScTokenStack pPointer const formula::FormulaToken *[512]
-sc/source/core/inc/parclass.hxx:79
- ScParameterClassification::CommonData nRepeatLast sal_uInt8
-sc/source/core/inc/parclass.hxx:80
- ScParameterClassification::CommonData eReturn formula::ParamClass
sc/source/filter/inc/autofilterbuffer.hxx:178
oox::xls::FilterColumn mxSettings std::shared_ptr<FilterSettingsBase>
sc/source/filter/inc/biffcodec.hxx:71
oox::xls::BiffDecoder_XOR mnKey sal_uInt16
sc/source/filter/inc/biffcodec.hxx:72
oox::xls::BiffDecoder_XOR mnHash sal_uInt16
-sc/source/filter/inc/formulabase.hxx:458
- oox::xls::FunctionParamInfo meValid enum oox::xls::FuncParamValidity
sc/source/filter/inc/htmlpars.hxx:534
ScHTMLTable maCumSizes ScHTMLTable::ScSizeVec [2]
-sc/source/filter/inc/scflt.hxx:168
- Sc10DateTime Year sal_uInt16
-sc/source/filter/inc/scflt.hxx:169
- Sc10DateTime Month sal_uInt16
-sc/source/filter/inc/scflt.hxx:170
- Sc10DateTime Day sal_uInt16
-sc/source/filter/inc/scflt.hxx:171
- Sc10DateTime Hour sal_uInt16
-sc/source/filter/inc/scflt.hxx:172
- Sc10DateTime Min sal_uInt16
-sc/source/filter/inc/scflt.hxx:173
- Sc10DateTime Sec sal_uInt16
-sc/source/filter/inc/scflt.hxx:409
- Sc10FileInfo Title sal_Char [64]
-sc/source/filter/inc/scflt.hxx:410
- Sc10FileInfo Thema sal_Char [64]
-sc/source/filter/inc/scflt.hxx:411
- Sc10FileInfo Keys sal_Char [64]
-sc/source/filter/inc/scflt.hxx:412
- Sc10FileInfo Note sal_Char [256]
-sc/source/filter/inc/scflt.hxx:413
- Sc10FileInfo InfoLabel0 sal_Char [16]
-sc/source/filter/inc/scflt.hxx:414
- Sc10FileInfo InfoLabel1 sal_Char [16]
-sc/source/filter/inc/scflt.hxx:415
- Sc10FileInfo InfoLabel2 sal_Char [16]
-sc/source/filter/inc/scflt.hxx:416
- Sc10FileInfo InfoLabel3 sal_Char [16]
-sc/source/filter/inc/scflt.hxx:417
- Sc10FileInfo Info0 sal_Char [32]
-sc/source/filter/inc/scflt.hxx:418
- Sc10FileInfo Info1 sal_Char [32]
-sc/source/filter/inc/scflt.hxx:419
- Sc10FileInfo Info2 sal_Char [32]
-sc/source/filter/inc/scflt.hxx:420
- Sc10FileInfo Info3 sal_Char [32]
-sc/source/filter/inc/scflt.hxx:421
- Sc10FileInfo CreateAuthor sal_Char [64]
-sc/source/filter/inc/scflt.hxx:422
- Sc10FileInfo ChangeAuthor sal_Char [64]
-sc/source/filter/inc/scflt.hxx:423
- Sc10FileInfo PrintAuthor sal_Char [64]
-sc/source/filter/inc/scflt.hxx:424
- Sc10FileInfo CreateDate struct Sc10DateTime
-sc/source/filter/inc/scflt.hxx:425
- Sc10FileInfo ChangeDate struct Sc10DateTime
-sc/source/filter/inc/scflt.hxx:426
- Sc10FileInfo PrintDate struct Sc10DateTime
-sc/source/filter/inc/scflt.hxx:427
- Sc10FileInfo PageCount sal_uInt32
-sc/source/filter/inc/scflt.hxx:428
- Sc10FileInfo ChartCount sal_uInt32
-sc/source/filter/inc/scflt.hxx:429
- Sc10FileInfo PictureCount sal_uInt32
-sc/source/filter/inc/scflt.hxx:430
- Sc10FileInfo GraphCount sal_uInt32
-sc/source/filter/inc/scflt.hxx:431
- Sc10FileInfo OleCount sal_uInt32
-sc/source/filter/inc/scflt.hxx:432
- Sc10FileInfo NoteCount sal_uInt32
-sc/source/filter/inc/scflt.hxx:433
- Sc10FileInfo TextCellCount sal_uInt32
-sc/source/filter/inc/scflt.hxx:434
- Sc10FileInfo ValueCellCount sal_uInt32
-sc/source/filter/inc/scflt.hxx:435
- Sc10FileInfo FormulaCellCount sal_uInt32
-sc/source/filter/inc/scflt.hxx:436
- Sc10FileInfo CellCount sal_uInt32
-sc/source/filter/inc/scflt.hxx:437
- Sc10FileInfo Reserved sal_Char [52]
-sc/source/filter/inc/scflt.hxx:453
- Sc10EditStateInfo Reserved sal_Char [51]
-sc/source/filter/inc/scflt.hxx:585
- Sc10FontData FaceName sal_Char [32]
-sc/source/filter/inc/scflt.hxx:619
- Sc10NameData Reserved sal_Char [12]
-sc/source/filter/inc/scflt.hxx:662
- Sc10PatternData Reserved sal_Char [8]
-sc/source/filter/inc/scflt.hxx:718
- Sc10DataBaseCollection ActName sal_Char [32]
-sc/source/filter/inc/scflt.hxx:754
- Sc10Import TextPalette struct Sc10Color [16]
-sc/source/filter/inc/scflt.hxx:755
- Sc10Import BackPalette struct Sc10Color [16]
-sc/source/filter/inc/scflt.hxx:756
- Sc10Import RasterPalette struct Sc10Color [16]
-sc/source/filter/inc/scflt.hxx:757
- Sc10Import FramePalette struct Sc10Color [16]
+sc/source/filter/inc/qproform.hxx:57
+ QProToSc mnAddToken struct TokenId
sc/source/filter/inc/sheetdatacontext.hxx:61
oox::xls::SheetDataContext aReleaser class SolarMutexReleaser
sc/source/filter/inc/stylesbuffer.hxx:675
oox::xls::Dxf mxAlignment std::shared_ptr<Alignment>
sc/source/filter/inc/stylesbuffer.hxx:677
oox::xls::Dxf mxProtection std::shared_ptr<Protection>
-sc/source/filter/inc/XclExpChangeTrack.hxx:47
- XclExpUserBView aGUID sal_uInt8 [16]
-sc/source/filter/inc/XclExpChangeTrack.hxx:85
- XclExpUsersViewBegin aGUID sal_uInt8 [16]
-sc/source/filter/inc/XclExpChangeTrack.hxx:214
- XclExpChTrHeader aGUID sal_uInt8 [16]
-sc/source/filter/inc/XclExpChangeTrack.hxx:234
- XclExpXmlChTrHeaders maGUID sal_uInt8 [16]
-sc/source/filter/inc/XclExpChangeTrack.hxx:248
- XclExpXmlChTrHeader maGUID sal_uInt8 [16]
-sc/source/filter/inc/XclExpChangeTrack.hxx:273
- XclExpChTrInfo aGUID sal_uInt8 [16]
-sc/source/filter/inc/XclExpChangeTrack.hxx:603
- XclExpChangeTrack aGUID sal_uInt8 [16]
-sc/source/filter/inc/xestream.hxx:223
- XclExpBiff8Encrypter mpnDocId sal_uInt8 [16]
-sc/source/filter/inc/xestream.hxx:224
- XclExpBiff8Encrypter mpnSalt sal_uInt8 [16]
-sc/source/filter/inc/xestream.hxx:225
- XclExpBiff8Encrypter mpnSaltDigest sal_uInt8 [16]
sc/source/filter/inc/xltracer.hxx:82
XclTracer mbEnabled _Bool
sc/source/ui/inc/csvruler.hxx:35
@@ -1000,6 +556,10 @@ sc/source/ui/inc/dataprovider.hxx:47
sc::ExternalDataMapper maDocument class ScDocument
sc/source/ui/inc/dataprovider.hxx:149
sc::CSVDataProvider mbImportUnderway _Bool
+sc/source/ui/inc/tabvwsh.hxx:159
+ ScTabViewShell aChartSource ScRangeListRef
+sc/source/ui/inc/tabvwsh.hxx:160
+ ScTabViewShell aChartPos tools::Rectangle
sc/source/ui/inc/tabvwsh.hxx:161
ScTabViewShell nChartDestTab SCTAB
sc/source/ui/inc/undobase.hxx:113
@@ -1012,10 +572,10 @@ sd/inc/sdmod.hxx:118
SdModule gImplDrawPropertySetInfoCache SdExtPropertySetInfoCache
sd/inc/sdmod.hxx:119
SdModule gImplTypesCache SdTypesCache
+sd/source/filter/eppt/epptbase.hxx:237
+ PPTExCharSheet maCharLevel struct PPTExCharLevel [5]
sd/source/filter/eppt/epptbase.hxx:279
PPTExParaSheet maParaLevel struct PPTExParaLevel [5]
-sd/source/filter/ppt/propread.hxx:142
- PropRead mApplicationCLSID sal_uInt8 [16]
sd/source/ui/sidebar/MasterPageContainer.cxx:148
sd::sidebar::MasterPageContainer::Implementation maLargePreviewBeingCreated class Image
sd/source/ui/sidebar/MasterPageContainer.cxx:149
@@ -1026,36 +586,40 @@ sd/source/ui/sidebar/MasterPageContainer.cxx:155
sd::sidebar::MasterPageContainer::Implementation maSmallPreviewNotAvailable class Image
sd/source/ui/slidesorter/inc/controller/SlsAnimator.hxx:97
sd::slidesorter::controller::Animator maElapsedTime ::canvas::tools::ElapsedTime
-sdext/source/pdfimport/pdfparse/pdfentries.cxx:1018
- pdfparse::PDFFileImplData m_aOEntry sal_uInt8 [32]
-sdext/source/pdfimport/pdfparse/pdfentries.cxx:1019
- pdfparse::PDFFileImplData m_aUEntry sal_uInt8 [32]
+sd/source/ui/table/TableDesignPane.hxx:99
+ sd::TableDesignWidget m_aCheckBoxes VclPtr<class CheckBox> [6]
+sdext/source/pdfimport/tree/style.hxx:42
+ pdfi::StyleContainer::Style Contents class rtl::OUString
sfx2/source/appl/lnkbase2.cxx:95
sfx2::ImplDdeItem pLink class sfx2::SvBaseLink *
sfx2/source/control/dispatch.cxx:132
SfxDispatcher_Impl aObjBars struct SfxObjectBars_Impl [13]
sfx2/source/control/dispatch.cxx:133
SfxDispatcher_Impl aFixedObjBars struct SfxObjectBars_Impl [13]
-sfx2/source/doc/doctempl.cxx:118
+sfx2/source/doc/doctempl.cxx:116
DocTempl::DocTempl_EntryData_Impl mxObjShell class SfxObjectShellLock
sfx2/source/doc/sfxbasemodel.cxx:189
IMPL_SfxBaseModel_DataContainer m_xStarBasicAccess Reference<script::XStarBasicAccess>
-sfx2/source/inc/appdata.hxx:104
+sfx2/source/inc/appdata.hxx:103
SfxAppData_Impl nDocModalMode sal_uInt16
-slideshow/source/engine/opengl/TransitionImpl.hxx:296
- Vertex normal glm::vec3
-slideshow/source/engine/opengl/TransitionImpl.hxx:297
- Vertex texcoord glm::vec2
slideshow/source/engine/slideshowimpl.cxx:154
(anonymous namespace)::FrameSynchronization maTimer canvas::tools::ElapsedTime
-sot/source/sdstor/stgelem.hxx:38
- StgHeader m_cSignature sal_uInt8 [8]
-sot/source/sdstor/stgelem.hxx:47
- StgHeader m_cReserved sal_uInt8 [9]
sot/source/sdstor/ucbstorage.cxx:421
UCBStorageStream_Impl m_aKey class rtl::OString
-starmath/source/view.cxx:862
+starmath/source/view.cxx:864
SmViewShell_Impl aOpts class SvtMiscOptions
+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
+svl/source/crypto/cryptosign.cxx:297
+ (anonymous namespace)::(anonymous) timeStampToken SECItem
svl/source/misc/strmadpt.cxx:55
SvDataPipe_Impl::Page m_aBuffer sal_Int8 [1]
svl/source/uno/pathservice.cxx:36
@@ -1078,31 +642,19 @@ svtools/source/dialogs/insdlg.cxx:52
OleObjectDescriptor dwSrcOfCopy sal_uInt32
svtools/source/inc/svimpbox.hxx:121
SvImpLBox m_aNodeAndEntryImages class Image [5]
-svtools/source/svhtml/htmlkywd.cxx:34
- HTML_TokenEntry::(anonymous) sToken const sal_Char *
-svtools/source/svhtml/htmlkywd.cxx:225
- HTML_CharEntry::(anonymous) sName const sal_Char *
-svtools/source/svhtml/htmlkywd.cxx:560
- HTML_OptionEntry::(anonymous) sToken const sal_Char *
-svtools/source/svhtml/htmlkywd.cxx:561
- HTML_OptionEntry::(anonymous) pUToken const class rtl::OUString *
-svtools/source/svhtml/htmlkywd.cxx:751
- HTML_ColorEntry::(anonymous) sName const sal_Char *
-svtools/source/svrtf/rtfkeywd.cxx:31
- RTF_TokenEntry::(anonymous) sToken const sal_Char *
svtools/source/table/gridtablerenderer.cxx:70
svt::table::CachedSortIndicator m_sortAscending class BitmapEx
svtools/source/table/gridtablerenderer.cxx:71
svt::table::CachedSortIndicator m_sortDescending class BitmapEx
-svx/source/form/fmundo.cxx:160
+svx/source/form/fmundo.cxx:159
PropertySetInfo aProps PropertySetInfo::AllProperties
-svx/source/inc/datanavi.hxx:239
+svx/source/inc/datanavi.hxx:238
svxform::XFormsPage m_aMethodString class svxform::MethodString
-svx/source/inc/datanavi.hxx:240
+svx/source/inc/datanavi.hxx:239
svxform::XFormsPage m_aReplaceString class svxform::ReplaceString
-svx/source/inc/datanavi.hxx:552
+svx/source/inc/datanavi.hxx:551
svxform::AddSubmissionDialog m_aMethodString class svxform::MethodString
-svx/source/inc/datanavi.hxx:553
+svx/source/inc/datanavi.hxx:552
svxform::AddSubmissionDialog m_aReplaceString class svxform::ReplaceString
svx/source/inc/gridcell.hxx:528
DbPatternField m_pValueFormatter ::std::unique_ptr< ::dbtools::FormattedColumnValue>
@@ -1118,403 +670,25 @@ sw/inc/doc.hxx:365
SwDoc mbXMLExport _Bool
sw/inc/hints.hxx:195
SwAttrSetChg m_bDelSet _Bool
+sw/inc/shellio.hxx:142
+ SwReader pStg tools::SvRef<SotStorage>
sw/inc/shellio.hxx:489
SwWriter pStg tools::SvRef<SotStorage>
sw/inc/swevent.hxx:81
SwCallMouseEvent::(anonymous union)::(anonymous) pFormat const class SwFrameFormat *
-sw/source/core/bastyp/calc.cxx:92
- CalcOp::(anonymous) pName const sal_Char *
-sw/source/core/doc/doctxm.cxx:1346
- lcl_IsSOObject(const SvGlobalName &)::SoObjType::GlobalNameIds n1 sal_uInt32
sw/source/core/doc/swstylemanager.cxx:59
SwStyleManager aAutoCharPool class StylePool
sw/source/core/doc/swstylemanager.cxx:60
SwStyleManager aAutoParaPool class StylePool
sw/source/core/doc/tblrwcl.cxx:83
CpyTabFrame::(anonymous) nSize SwTwips
-sw/source/core/text/atrhndl.hxx:48
- SwAttrHandler::SwAttrStack pInitialArray class SwTextAttr *[3]
-sw/source/filter/html/svxcss1.cxx:3095
- CSS1PropEntry::(anonymous) sName const sal_Char *
sw/source/filter/inc/rtf.hxx:32
RTFSurround::(anonymous) nVal sal_uInt8
-sw/source/filter/ww8/wrtww8.cxx:3797
- FFDataHeader hps sal_uInt16
-sw/source/filter/ww8/WW8FFData.hxx:41
- sw::WW8FFData mbProtected _Bool
-sw/source/filter/ww8/WW8FFData.hxx:42
- sw::WW8FFData mbSize _Bool
-sw/source/filter/ww8/WW8FFData.hxx:43
- sw::WW8FFData mnTextType sal_uInt8
-sw/source/filter/ww8/WW8FFData.hxx:44
- sw::WW8FFData mbRecalc _Bool
-sw/source/filter/ww8/WW8FFData.hxx:48
- sw::WW8FFData mnMaxLen sal_uInt16
-sw/source/filter/ww8/ww8par3.cxx:315
- WW8LST aIdSty WW8aIdSty
-sw/source/filter/ww8/ww8par3.cxx:350
- WW8LVL bLegal sal_uInt8
-sw/source/filter/ww8/ww8par3.cxx:351
- WW8LVL bNoRest sal_uInt8
-sw/source/filter/ww8/ww8par3.cxx:355
- WW8LVL bDummy sal_uInt8
-sw/source/filter/ww8/ww8par3.cxx:379
- WW8LSTInfo aIdSty WW8aIdSty
-sw/source/filter/ww8/ww8par4.cxx:63
- OLE_MFP mm sal_Int16
-sw/source/filter/ww8/ww8par4.cxx:64
- OLE_MFP xExt sal_Int16
-sw/source/filter/ww8/ww8par4.cxx:65
- OLE_MFP yExt sal_Int16
-sw/source/filter/ww8/ww8par4.cxx:66
- OLE_MFP hMF sal_Int16
-sw/source/filter/ww8/ww8par.hxx:199
- WW8FlyPara brc WW8_BRCVer9_5
-sw/source/filter/ww8/ww8par.hxx:650
- WW8FormulaControl mfUnknown sal_uInt8
-sw/source/filter/ww8/ww8par.hxx:773
- wwSection brc struct WW8_BRCVer9 [4]
-sw/source/filter/ww8/ww8par.hxx:1016
- WW8TabBandDesc bCantSplit90 _Bool
-sw/source/filter/ww8/ww8scan.cxx:6719
- WW8_FFN_Ver6 base struct WW8_FFN_BASE
-sw/source/filter/ww8/ww8scan.cxx:6721
- WW8_FFN_Ver6 szFfn sal_Char [65]
-sw/source/filter/ww8/ww8scan.cxx:6733
- WW8_FFN_Ver8 panose sal_Char [10]
-sw/source/filter/ww8/ww8scan.cxx:6734
- WW8_FFN_Ver8 fs sal_Char [24]
-sw/source/filter/ww8/ww8scan.cxx:6737
- WW8_FFN_Ver8 szFfn sal_uInt16 [65]
-sw/source/filter/ww8/ww8scan.hxx:527
- WW8PLCFx_Fc_FKP::WW8Fkp maRawData sal_uInt8 [512]
-sw/source/filter/ww8/ww8scan.hxx:1174
- WW8Fib sal_uInt8
-sw/source/filter/ww8/ww8scan.hxx:1505
- WW8Fib m_fcPlcffactoid WW8_FC
-sw/source/filter/ww8/ww8scan.hxx:1507
- WW8Fib m_lcbPlcffactoid sal_uInt32
-sw/source/filter/ww8/ww8scan.hxx:1548
- WW8Style sal_uInt16
-sw/source/filter/ww8/ww8scan.hxx:1618
- WW8Dop sal_uInt16
-sw/source/filter/ww8/ww8scan.hxx:1810
- WW8Dop fUnknown3 sal_uInt16
-sw/source/filter/ww8/ww8struc.hxx:184
- WW8_STD sal_uInt16
-sw/source/filter/ww8/ww8struc.hxx:204
- WW8_FFN_BASE _reserved1 sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:206
- WW8_FFN_BASE _reserved2 sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:231
- WW8_BRCVer6 aBits1 SVBT16
-sw/source/filter/ww8/ww8struc.hxx:313
- WW8_BRCVer9 aBits1 SVBT32
-sw/source/filter/ww8/ww8struc.hxx:417
- WW8_DOGRID xaGrid short
-sw/source/filter/ww8/ww8struc.hxx:418
- WW8_DOGRID yaGrid short
-sw/source/filter/ww8/ww8struc.hxx:419
- WW8_DOGRID dxaGrid short
-sw/source/filter/ww8/ww8struc.hxx:420
- WW8_DOGRID dyaGrid short
-sw/source/filter/ww8/ww8struc.hxx:427
- WW8_DOGRID dyGridDisplay short
-sw/source/filter/ww8/ww8struc.hxx:430
- WW8_DOGRID fTurnItOff short
-sw/source/filter/ww8/ww8struc.hxx:431
- WW8_DOGRID dxGridDisplay short
-sw/source/filter/ww8/ww8struc.hxx:434
- WW8_DOGRID fFollowMargins short
-sw/source/filter/ww8/ww8struc.hxx:479
- WW8_PIC_SHADOW lcb SVBT32
-sw/source/filter/ww8/ww8struc.hxx:480
- WW8_PIC_SHADOW cbHeader SVBT16
-sw/source/filter/ww8/ww8struc.hxx:482
- WW8_PIC_SHADOW::(anonymous) mm SVBT16
-sw/source/filter/ww8/ww8struc.hxx:483
- WW8_PIC_SHADOW::(anonymous) xExt SVBT16
-sw/source/filter/ww8/ww8struc.hxx:484
- WW8_PIC_SHADOW::(anonymous) yExt SVBT16
-sw/source/filter/ww8/ww8struc.hxx:485
- WW8_PIC_SHADOW::(anonymous) hMF SVBT16
-sw/source/filter/ww8/ww8struc.hxx:486
- WW8_PIC_SHADOW MFP struct (anonymous struct at /home/noel/libo3/sw/source/filter/ww8/ww8struc.hxx:481:5)
-sw/source/filter/ww8/ww8struc.hxx:488
- WW8_PIC_SHADOW rcWinMF sal_uInt8 [14]
-sw/source/filter/ww8/ww8struc.hxx:490
- WW8_PIC_SHADOW dxaGoal SVBT16
-sw/source/filter/ww8/ww8struc.hxx:491
- WW8_PIC_SHADOW dyaGoal SVBT16
-sw/source/filter/ww8/ww8struc.hxx:492
- WW8_PIC_SHADOW mx SVBT16
-sw/source/filter/ww8/ww8struc.hxx:493
- WW8_PIC_SHADOW my SVBT16
-sw/source/filter/ww8/ww8struc.hxx:494
- WW8_PIC_SHADOW dxaCropLeft SVBT16
-sw/source/filter/ww8/ww8struc.hxx:495
- WW8_PIC_SHADOW dyaCropTop SVBT16
-sw/source/filter/ww8/ww8struc.hxx:496
- WW8_PIC_SHADOW dxaCropRight SVBT16
-sw/source/filter/ww8/ww8struc.hxx:497
- WW8_PIC_SHADOW dyaCropBottom SVBT16
-sw/source/filter/ww8/ww8struc.hxx:498
- WW8_PIC_SHADOW aBits1 sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:499
- WW8_PIC_SHADOW aBits2 sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:515
- WW8_TBD aBits1 sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:538
- WW8_TCell fUnused sal_uInt16
-sw/source/filter/ww8/ww8struc.hxx:551
- WW8_TCellVer6 aBits1Ver6 sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:552
- WW8_TCellVer6 aBits2Ver6 sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:567
- WW8_TCellVer8 aBits1Ver8 SVBT16
-sw/source/filter/ww8/ww8struc.hxx:568
- WW8_TCellVer8 aUnused SVBT16
-sw/source/filter/ww8/ww8struc.hxx:613
- WW8_ANLV nfc sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:615
- WW8_ANLV cbTextBefore sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:616
- WW8_ANLV cbTextAfter sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:617
- WW8_ANLV aBits1 sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:625
- WW8_ANLV aBits2 sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:634
- WW8_ANLV aBits3 sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:637
- WW8_ANLV ftc SVBT16
-sw/source/filter/ww8/ww8struc.hxx:638
- WW8_ANLV hps SVBT16
-sw/source/filter/ww8/ww8struc.hxx:639
- WW8_ANLV iStartAt SVBT16
-sw/source/filter/ww8/ww8struc.hxx:640
- WW8_ANLV dxaIndent SVBT16
-sw/source/filter/ww8/ww8struc.hxx:641
- WW8_ANLV dxaSpace SVBT16
-sw/source/filter/ww8/ww8struc.hxx:647
- WW8_ANLD eAnlv struct WW8_ANLV
-sw/source/filter/ww8/ww8struc.hxx:648
- WW8_ANLD fNumber1 sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:649
- WW8_ANLD fNumberAcross sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:650
- WW8_ANLD fRestartHdn sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:651
- WW8_ANLD fSpareX sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:657
- WW8_OLST rganlv struct WW8_ANLV [9]
-sw/source/filter/ww8/ww8struc.hxx:658
- WW8_OLST fRestartHdr sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:659
- WW8_OLST fSpareOlst2 sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:660
- WW8_OLST fSpareOlst3 sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:661
- WW8_OLST fSpareOlst4 sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:668
- WW8_FDOA fc SVBT32
-sw/source/filter/ww8/ww8struc.hxx:669
- WW8_FDOA ctxbx SVBT16
-sw/source/filter/ww8/ww8struc.hxx:674
- WW8_DO dok SVBT16
-sw/source/filter/ww8/ww8struc.hxx:675
- WW8_DO cb SVBT16
-sw/source/filter/ww8/ww8struc.hxx:676
- WW8_DO bx sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:677
- WW8_DO by sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:692
- WW8_DO dhgt SVBT16
-sw/source/filter/ww8/ww8struc.hxx:693
- WW8_DO aBits1 SVBT16
-sw/source/filter/ww8/ww8struc.hxx:700
- WW8_DPHEAD dpk SVBT16
-sw/source/filter/ww8/ww8struc.hxx:704
- WW8_DPHEAD cb SVBT16
-sw/source/filter/ww8/ww8struc.hxx:705
- WW8_DPHEAD xa SVBT16
-sw/source/filter/ww8/ww8struc.hxx:706
- WW8_DPHEAD ya SVBT16
-sw/source/filter/ww8/ww8struc.hxx:707
- WW8_DPHEAD dxa SVBT16
-sw/source/filter/ww8/ww8struc.hxx:708
- WW8_DPHEAD dya SVBT16
-sw/source/filter/ww8/ww8struc.hxx:713
- WW8_DP_LINETYPE lnpc SVBT32
-sw/source/filter/ww8/ww8struc.hxx:714
- WW8_DP_LINETYPE lnpw SVBT16
-sw/source/filter/ww8/ww8struc.hxx:715
- WW8_DP_LINETYPE lnps SVBT16
-sw/source/filter/ww8/ww8struc.hxx:721
- WW8_DP_SHADOW shdwpi SVBT16
-sw/source/filter/ww8/ww8struc.hxx:722
- WW8_DP_SHADOW xaOffset SVBT16
-sw/source/filter/ww8/ww8struc.hxx:723
- WW8_DP_SHADOW yaOffset SVBT16
-sw/source/filter/ww8/ww8struc.hxx:728
- WW8_DP_FILL dlpcFg SVBT32
-sw/source/filter/ww8/ww8struc.hxx:729
- WW8_DP_FILL dlpcBg SVBT32
-sw/source/filter/ww8/ww8struc.hxx:730
- WW8_DP_FILL flpp SVBT16
-sw/source/filter/ww8/ww8struc.hxx:735
- WW8_DP_LINEEND aStartBits SVBT16
-sw/source/filter/ww8/ww8struc.hxx:741
- WW8_DP_LINEEND aEndBits SVBT16
-sw/source/filter/ww8/ww8struc.hxx:751
- WW8_DP_LINE xaStart SVBT16
-sw/source/filter/ww8/ww8struc.hxx:752
- WW8_DP_LINE yaStart SVBT16
-sw/source/filter/ww8/ww8struc.hxx:753
- WW8_DP_LINE xaEnd SVBT16
-sw/source/filter/ww8/ww8struc.hxx:754
- WW8_DP_LINE yaEnd SVBT16
-sw/source/filter/ww8/ww8struc.hxx:765
- WW8_DP_TXTBOX aBits1 SVBT16
-sw/source/filter/ww8/ww8struc.hxx:768
- WW8_DP_TXTBOX dzaInternalMargin SVBT16
-sw/source/filter/ww8/ww8struc.hxx:776
- WW8_DP_RECT aBits1 SVBT16
-sw/source/filter/ww8/ww8struc.hxx:786
- WW8_DP_ARC fLeft sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:787
- WW8_DP_ARC fUp sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:803
- WW8_DP_POLYLINE aEpp struct WW8_DP_LINEEND
-sw/source/filter/ww8/ww8struc.hxx:805
- WW8_DP_POLYLINE aBits1 SVBT16
-sw/source/filter/ww8/ww8struc.hxx:817
- WW8_DP_CALLOUT_TXTBOX flags SVBT16
-sw/source/filter/ww8/ww8struc.hxx:818
- WW8_DP_CALLOUT_TXTBOX dzaOffset SVBT16
-sw/source/filter/ww8/ww8struc.hxx:819
- WW8_DP_CALLOUT_TXTBOX dzaDescent SVBT16
-sw/source/filter/ww8/ww8struc.hxx:820
- WW8_DP_CALLOUT_TXTBOX dzaLength SVBT16
-sw/source/filter/ww8/ww8struc.hxx:821
- WW8_DP_CALLOUT_TXTBOX dpheadTxbx struct WW8_DPHEAD
-sw/source/filter/ww8/ww8struc.hxx:823
- WW8_DP_CALLOUT_TXTBOX dpheadPolyLine struct WW8_DPHEAD
-sw/source/filter/ww8/ww8struc.hxx:829
- WW8_PCD aBits1 sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:834
- WW8_PCD aBits2 sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:835
- WW8_PCD fc SVBT32
-sw/source/filter/ww8/ww8struc.hxx:838
- WW8_PCD prm SVBT16
-sw/source/filter/ww8/ww8struc.hxx:848
- WW8_ATRD ibst SVBT16
-sw/source/filter/ww8/ww8struc.hxx:849
- WW8_ATRD ak SVBT16
-sw/source/filter/ww8/ww8struc.hxx:850
- WW8_ATRD grfbmc SVBT16
-sw/source/filter/ww8/ww8struc.hxx:851
- WW8_ATRD ITagBkmk SVBT32
-sw/source/filter/ww8/ww8struc.hxx:861
- WW8_ATRDEXTRA dttm SVBT32
-sw/source/filter/ww8/ww8struc.hxx:862
- WW8_ATRDEXTRA bf SVBT16
-sw/source/filter/ww8/ww8struc.hxx:863
- WW8_ATRDEXTRA cDepth SVBT32
-sw/source/filter/ww8/ww8struc.hxx:864
- WW8_ATRDEXTRA diatrdParent SVBT32
-sw/source/filter/ww8/ww8struc.hxx:865
- WW8_ATRDEXTRA Discussitem SVBT32
-sw/source/filter/ww8/ww8struc.hxx:872
- WW67_ATRD ibst SVBT16
-sw/source/filter/ww8/ww8struc.hxx:873
- WW67_ATRD ak SVBT16
-sw/source/filter/ww8/ww8struc.hxx:874
- WW67_ATRD grfbmc SVBT16
-sw/source/filter/ww8/ww8struc.hxx:875
- WW67_ATRD ITagBkmk SVBT32
-sw/source/filter/ww8/ww8struc.hxx:946
- WW8_FSPA_SHADOW nSpId SVBT32
-sw/source/filter/ww8/ww8struc.hxx:947
- WW8_FSPA_SHADOW nXaLeft SVBT32
-sw/source/filter/ww8/ww8struc.hxx:948
- WW8_FSPA_SHADOW nYaTop SVBT32
-sw/source/filter/ww8/ww8struc.hxx:949
- WW8_FSPA_SHADOW nXaRight SVBT32
-sw/source/filter/ww8/ww8struc.hxx:950
- WW8_FSPA_SHADOW nYaBottom SVBT32
-sw/source/filter/ww8/ww8struc.hxx:951
- WW8_FSPA_SHADOW aBits1 SVBT16
-sw/source/filter/ww8/ww8struc.hxx:952
- WW8_FSPA_SHADOW nTxbx SVBT32
-sw/source/filter/ww8/ww8struc.hxx:960
- WW8_TXBXS cTxbx_iNextReuse SVBT32
-sw/source/filter/ww8/ww8struc.hxx:961
- WW8_TXBXS cReusable SVBT32
-sw/source/filter/ww8/ww8struc.hxx:962
- WW8_TXBXS fReusable SVBT16
-sw/source/filter/ww8/ww8struc.hxx:963
- WW8_TXBXS reserved SVBT32
-sw/source/filter/ww8/ww8struc.hxx:964
- WW8_TXBXS ShapeId SVBT32
-sw/source/filter/ww8/ww8struc.hxx:965
- WW8_TXBXS txidUndo SVBT32
-sw/source/filter/ww8/ww8struc.hxx:972
- WW8_STRINGID nStringId SVBT16
-sw/source/filter/ww8/ww8struc.hxx:973
- WW8_STRINGID reserved1 SVBT16
-sw/source/filter/ww8/ww8struc.hxx:974
- WW8_STRINGID reserved2 SVBT16
-sw/source/filter/ww8/ww8struc.hxx:975
- WW8_STRINGID reserved3 SVBT16
-sw/source/filter/ww8/ww8struc.hxx:982
- WW8_WKB reserved1 SVBT16
-sw/source/filter/ww8/ww8struc.hxx:983
- WW8_WKB reserved2 SVBT16
-sw/source/filter/ww8/ww8struc.hxx:984
- WW8_WKB reserved3 SVBT16
-sw/source/filter/ww8/ww8struc.hxx:985
- WW8_WKB nLinkId SVBT16
-sw/source/filter/ww8/ww8struc.hxx:986
- WW8_WKB reserved4 SVBT16
-sw/source/filter/ww8/ww8struc.hxx:987
- WW8_WKB reserved5 SVBT16
-sw/source/filter/ww8/ww8struc.hxx:1002
- SEPr fAutoPgn sal_Int8
-sw/source/filter/ww8/ww8struc.hxx:1015
- SEPr vjc sal_Int8
-sw/source/filter/ww8/ww8struc.hxx:1018
- SEPr dmPaperReq sal_uInt16
-sw/source/filter/ww8/ww8struc.hxx:1028
- SEPr fPropRMark sal_Int16
-sw/source/filter/ww8/ww8struc.hxx:1029
- SEPr ibstPropRMark sal_Int16
-sw/source/filter/ww8/ww8struc.hxx:1030
- SEPr dttmPropRMark sal_Int32
-sw/source/filter/ww8/ww8struc.hxx:1034
- SEPr reserved1 sal_Int16
-sw/source/filter/ww8/ww8struc.hxx:1040
- SEPr reserved2 sal_Int16
-sw/source/filter/ww8/ww8struc.hxx:1044
- SEPr sal_Int16
-sw/source/filter/ww8/ww8struc.hxx:1058
- SEPr reserved3 sal_Int8
-sw/source/filter/ww8/ww8struc.hxx:1060
- SEPr fFacingCol sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:1062
- SEPr fRTLAlignment sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:1071
- SEPr dxaColumnWidth sal_Int32
-sw/source/filter/ww8/ww8struc.hxx:1072
- SEPr dmOrientFirst sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:1073
- SEPr fLayout sal_uInt8
-sw/source/filter/ww8/ww8struc.hxx:1074
- SEPr reserved4 sal_Int16
-sw/source/ui/dbui/dbinsdlg.cxx:120
+sw/source/ui/dbui/dbinsdlg.cxx:117
+ DB_Column::(anonymous) pText class rtl::OUString *
+sw/source/ui/dbui/dbinsdlg.cxx:119
DB_Column::(anonymous) nFormat sal_uLong
-sw/source/ui/dbui/mmoutputtypepage.cxx:100
+sw/source/ui/dbui/mmoutputtypepage.cxx:101
SwSendMailDialog_Impl xConnectedMailService uno::Reference<mail::XMailService>
sw/source/uibase/dbui/mmconfigitem.cxx:103
SwMailMergeConfigItem_Impl m_aFemaleGreetingLines std::vector<OUString>
@@ -1526,8 +700,6 @@ sw/source/uibase/inc/dbtree.hxx:33
SwDBTreeList sDefDBName class rtl::OUString
sw/source/uibase/inc/fldmgr.hxx:99
SwFieldMgr pMacroItem const class SvxMacroItem *
-sw/source/uibase/inc/frmpage.hxx:93
- SwFramePage m_aFramePosString class SvxSwFramePosString
sw/source/uibase/inc/numfmtlb.hxx:34
NumFormatListBox pVw class SwView *
sw/source/uibase/inc/numfmtlb.hxx:35
@@ -1542,38 +714,6 @@ sw/source/uibase/sidebar/ThemePanel.cxx:55
(anonymous namespace)::ColorVariable maColor class Color
toolkit/source/awt/stylesettings.cxx:90
toolkit::StyleMethodGuard m_aGuard class SolarMutexGuard
-tools/source/fsys/urlobj.cxx:290
- INetURLObject::SchemeInfo m_pScheme const sal_Char *
-tools/source/fsys/urlobj.cxx:291
- INetURLObject::SchemeInfo m_pPrefix const sal_Char *
-tools/source/fsys/urlobj.cxx:292
- INetURLObject::SchemeInfo m_bAuthority _Bool
-tools/source/fsys/urlobj.cxx:293
- INetURLObject::SchemeInfo m_bUser _Bool
-tools/source/fsys/urlobj.cxx:294
- INetURLObject::SchemeInfo m_bAuth _Bool
-tools/source/fsys/urlobj.cxx:295
- INetURLObject::SchemeInfo m_bPassword _Bool
-tools/source/fsys/urlobj.cxx:296
- INetURLObject::SchemeInfo m_bHost _Bool
-tools/source/fsys/urlobj.cxx:297
- INetURLObject::SchemeInfo m_bPort _Bool
-tools/source/fsys/urlobj.cxx:298
- INetURLObject::SchemeInfo m_bHierarchical _Bool
-tools/source/fsys/urlobj.cxx:299
- INetURLObject::SchemeInfo m_bQuery _Bool
-tools/source/inet/inetmime.cxx:314
- (anonymous namespace)::Parameter m_aCharset class rtl::OString
-tools/source/inet/inetmime.cxx:315
- (anonymous namespace)::Parameter m_aLanguage class rtl::OString
-tools/source/inet/inetmime.cxx:316
- (anonymous namespace)::Parameter m_aValue class rtl::OString
-tools/source/inet/inetmime.cxx:317
- (anonymous namespace)::Parameter m_nSection sal_uInt32
-tools/source/inet/inetmime.cxx:318
- (anonymous namespace)::Parameter m_bExtended _Bool
-tools/source/inet/inetmime.cxx:329
- (anonymous namespace)::Parameter::IsSameSection nSection const sal_uInt32
ucb/source/ucp/gio/gio_mount.hxx:46
OOoMountOperationClass parent_class GMountOperationClass
ucb/source/ucp/gio/gio_mount.hxx:49
@@ -1604,16 +744,14 @@ unoidl/source/unoidlprovider.cxx:456
unoidl::detail::MapEntry data struct unoidl::detail::(anonymous namespace)::Memory32
unotools/source/config/saveopt.cxx:82
SvtSaveOptions_Impl bROUserAutoSave _Bool
-vcl/inc/opengl/RenderList.hxx:29
- Vertex color glm::vec4
-vcl/inc/opengl/RenderList.hxx:30
- Vertex lineData glm::vec4
vcl/inc/opengl/RenderList.hxx:54
RenderEntry maTriangleParameters struct RenderParameters
vcl/inc/opengl/RenderList.hxx:55
RenderEntry maLineParameters struct RenderParameters
vcl/inc/opengl/zone.hxx:46
OpenGLVCLContextZone aZone class OpenGLZone
+vcl/inc/printerinfomanager.hxx:71
+ psp::PrinterInfoManager::SystemPrintQueue m_aComment class rtl::OUString
vcl/inc/salwtype.hxx:153
SalWheelMouseEvent mbDeltaIsPixel _Bool
vcl/inc/salwtype.hxx:201
@@ -1622,82 +760,24 @@ vcl/inc/salwtype.hxx:202
SalSurroundingTextSelectionChangeEvent mnEnd sal_uLong
vcl/inc/salwtype.hxx:208
SalQueryCharPositionEvent mnCharPos sal_uLong
-vcl/inc/sft.hxx:184
- vcl::(anonymous) panose sal_uInt8 [10]
-vcl/inc/svdata.hxx:266
+vcl/inc/svdata.hxx:263
ImplSVNWFData mnStatusBarLowerRightOffset int
-vcl/inc/svdata.hxx:272
+vcl/inc/svdata.hxx:269
ImplSVNWFData mbMenuBarDockingAreaCommonBG _Bool
-vcl/inc/svdata.hxx:282
+vcl/inc/svdata.hxx:279
ImplSVNWFData mbCenteredTabs _Bool
-vcl/inc/svdata.hxx:283
+vcl/inc/svdata.hxx:280
ImplSVNWFData mbNoActiveTabTextRaise _Bool
-vcl/inc/svdata.hxx:285
+vcl/inc/svdata.hxx:282
ImplSVNWFData mbProgressNeedsErase _Bool
-vcl/inc/svdata.hxx:294
+vcl/inc/svdata.hxx:291
ImplSVNWFData mbRolloverMenubar _Bool
-vcl/inc/unx/gtk/gloactiongroup.h:29
- GLOActionGroup parent_instance GObject
-vcl/inc/unx/gtk/gloactiongroup.h:37
- GLOActionGroupClass parent_class GObjectClass
-vcl/inc/unx/gtk/gloactiongroup.h:40
- GLOActionGroupClass padding gpointer [12]
-vcl/inc/unx/XIM.h:28
- (anonymous) client_data XPointer
-vcl/inc/unx/XIM.h:34
- (anonymous) start_position int
-vcl/inc/unx/XIM.h:35
- (anonymous) end_position int
-vcl/inc/unx/XIM.h:43
- (anonymous) length unsigned short
-vcl/inc/unx/XIM.h:44
- (anonymous) feedback XIMFeedback *
-vcl/inc/unx/XIM.h:45
- (anonymous) encoding_is_wchar int
-vcl/inc/unx/XIM.h:47
- (anonymous struct)::(anonymous) multi_byte char *
-vcl/inc/unx/XIM.h:48
- (anonymous struct)::(anonymous) wide_char wchar_t *
-vcl/inc/unx/XIM.h:49
- (anonymous struct)::(anonymous) utf16_char unsigned short *
-vcl/inc/unx/XIM.h:50
- (anonymous) string union (anonymous union at /home/noel/libo3/vcl/inc/unx/XIM.h:46:3)
-vcl/inc/unx/XIM.h:51
- (anonymous) count_annotations unsigned int
-vcl/inc/unx/XIM.h:52
- (anonymous) annotations XIMAnnotation *
-vcl/inc/unx/XIM.h:62
- (anonymous) choice_per_window int
-vcl/inc/unx/XIM.h:65
- (anonymous) nrows int
-vcl/inc/unx/XIM.h:66
- (anonymous) ncolumns int
-vcl/inc/unx/XIM.h:67
- (anonymous) draw_up_direction XIMDrawUpDirection
-vcl/inc/unx/XIM.h:71
- (anonymous) label XIMUnicodeText *
-vcl/inc/unx/XIM.h:76
- (anonymous) choices XIMUnicodeChoiceObject *
-vcl/inc/unx/XIM.h:77
- (anonymous) n_choices int
-vcl/inc/unx/XIM.h:78
- (anonymous) first_index int
-vcl/inc/unx/XIM.h:79
- (anonymous) last_index int
-vcl/inc/unx/XIM.h:80
- (anonymous) current_index int
-vcl/inc/unx/XIM.h:81
- (anonymous) title XIMUnicodeText *
-vcl/inc/unx/XIM.h:90
- (anonymous) index XIMUnicodeCharacterSubsetID
-vcl/inc/unx/XIM.h:91
- (anonymous) subset_id XIMUnicodeCharacterSubsetID
-vcl/inc/unx/XIM.h:93
- (anonymous) is_active int
-vcl/inc/unx/XIM.h:97
- (anonymous) count_subsets unsigned short
-vcl/inc/unx/XIM.h:98
- (anonymous) supported_subsets XIMUnicodeCharacterSubset *
+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/filter/jpeg/Exif.hxx:62
Exif::TiffHeader byteOrder sal_uInt16
vcl/source/filter/jpeg/transupp.h:132
@@ -1710,54 +790,52 @@ vcl/source/filter/jpeg/transupp.h:148
(anonymous) crop_xoffset_set JCROP_CODE
vcl/source/filter/jpeg/transupp.h:150
(anonymous) crop_yoffset_set JCROP_CODE
-vcl/source/filter/sgvmain.hxx:44
- DtHdType Reserved sal_uInt8 [256]
vcl/source/fontsubset/sft.cxx:1055
vcl::_subHeader2 firstCode sal_uInt16
vcl/source/fontsubset/sft.cxx:1056
vcl::_subHeader2 entryCount sal_uInt16
vcl/source/fontsubset/sft.cxx:1057
vcl::_subHeader2 idDelta sal_uInt16
-vcl/source/gdi/CommonSalLayout.cxx:272
- SubRun mnMin int32_t
-vcl/source/gdi/CommonSalLayout.cxx:274
- SubRun maScript hb_script_t
-vcl/source/gdi/CommonSalLayout.cxx:275
- SubRun maDirection hb_direction_t
+vcl/source/gdi/dibtools.cxx:48
+ (anonymous namespace)::CIEXYZ aXyzX FXPT2DOT30
+vcl/source/gdi/dibtools.cxx:49
+ (anonymous namespace)::CIEXYZ aXyzY FXPT2DOT30
+vcl/source/gdi/dibtools.cxx:50
+ (anonymous namespace)::CIEXYZ aXyzZ FXPT2DOT30
+vcl/source/gdi/dibtools.cxx:61
+ (anonymous namespace)::CIEXYZTriple aXyzRed struct (anonymous namespace)::CIEXYZ
+vcl/source/gdi/dibtools.cxx:62
+ (anonymous namespace)::CIEXYZTriple aXyzGreen struct (anonymous namespace)::CIEXYZ
+vcl/source/gdi/dibtools.cxx:63
+ (anonymous namespace)::CIEXYZTriple aXyzBlue struct (anonymous namespace)::CIEXYZ
+vcl/source/gdi/dibtools.cxx:103
+ (anonymous namespace)::DIBV5Header nV5RedMask sal_uInt32
+vcl/source/gdi/dibtools.cxx:104
+ (anonymous namespace)::DIBV5Header nV5GreenMask sal_uInt32
+vcl/source/gdi/dibtools.cxx:105
+ (anonymous namespace)::DIBV5Header nV5BlueMask sal_uInt32
+vcl/source/gdi/dibtools.cxx:106
+ (anonymous namespace)::DIBV5Header nV5AlphaMask sal_uInt32
+vcl/source/gdi/dibtools.cxx:108
+ (anonymous namespace)::DIBV5Header aV5Endpoints struct (anonymous namespace)::CIEXYZTriple
+vcl/source/gdi/dibtools.cxx:109
+ (anonymous namespace)::DIBV5Header nV5GammaRed sal_uInt32
+vcl/source/gdi/dibtools.cxx:110
+ (anonymous namespace)::DIBV5Header nV5GammaGreen sal_uInt32
+vcl/source/gdi/dibtools.cxx:111
+ (anonymous namespace)::DIBV5Header nV5GammaBlue sal_uInt32
+vcl/source/gdi/dibtools.cxx:113
+ (anonymous namespace)::DIBV5Header nV5ProfileData sal_uInt32
+vcl/source/gdi/dibtools.cxx:114
+ (anonymous namespace)::DIBV5Header nV5ProfileSize sal_uInt32
+vcl/source/gdi/dibtools.cxx:115
+ (anonymous namespace)::DIBV5Header nV5Reserved sal_uInt32
vcl/source/gdi/jobset.cxx:34
ImplOldJobSetupData cDeviceName char [32]
vcl/source/gdi/jobset.cxx:35
ImplOldJobSetupData cPortName char [32]
-vcl/source/gdi/jobset.cxx:41
- Impl364JobSetupData nSize SVBT16
-vcl/source/gdi/jobset.cxx:42
- Impl364JobSetupData nSystem SVBT16
-vcl/source/gdi/jobset.cxx:43
- Impl364JobSetupData nDriverDataLen SVBT32
-vcl/source/gdi/jobset.cxx:44
- Impl364JobSetupData nOrientation SVBT16
-vcl/source/gdi/jobset.cxx:45
- Impl364JobSetupData nPaperBin SVBT16
-vcl/source/gdi/jobset.cxx:46
- Impl364JobSetupData nPaperFormat SVBT16
-vcl/source/gdi/jobset.cxx:47
- Impl364JobSetupData nPaperWidth SVBT32
-vcl/source/gdi/jobset.cxx:48
- Impl364JobSetupData nPaperHeight SVBT32
-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/unx/generic/fontmanager/fontsubst.cxx:35
FcPreMatchSubstitution maCachedFontMap FcPreMatchSubstitution::CachedFontMapType
-vcl/unx/generic/print/bitmap_gfx.cxx:67
- psp::HexEncoder mpFileBuffer sal_Char [16400]
vcl/unx/gtk/a11y/atkhypertext.cxx:29
(anonymous) atk_hyper_link AtkHyperlink
vcl/unx/gtk/a11y/atkwrapper.hxx:45
@@ -1768,10 +846,6 @@ vcl/unx/gtk/gloactiongroup.cxx:28
GLOAction parent_instance GObject
vcl/unx/gtk/glomenu.cxx:20
GLOMenu parent_instance GMenuModel
-writerfilter/source/dmapper/DomainMapper_Impl.cxx:165
- writerfilter::dmapper::FieldConversion cFieldServiceName const sal_Char *
-writerfilter/source/dmapper/DomainMapper_Impl.cxx:166
- writerfilter::dmapper::FieldConversion eFieldId enum writerfilter::dmapper::FieldId
writerfilter/source/ooxml/OOXMLFactory.hxx:60
writerfilter::ooxml::AttributeInfo m_nToken writerfilter::Token_t
writerfilter/source/ooxml/OOXMLFactory.hxx:61
diff --git a/compilerplugins/clang/unusedfields.untouched.results b/compilerplugins/clang/unusedfields.untouched.results
index 5aac25898711..77efd3aeb27d 100644
--- a/compilerplugins/clang/unusedfields.untouched.results
+++ b/compilerplugins/clang/unusedfields.untouched.results
@@ -1,5 +1,7 @@
basctl/source/inc/dlged.hxx:121
basctl::DlgEditor pObjFac std::unique_ptr<DlgEdFactory>
+basic/qa/cppunit/basictest.hxx:27
+ MacroSnippet maDll class BasicDLL
basic/source/runtime/dllmgr.hxx:48
SbiDllMgr impl_ std::unique_ptr<Impl>
canvas/source/vcl/canvasbitmap.hxx:117
@@ -16,6 +18,8 @@ chart2/source/view/inc/GL3DRenderer.hxx:66
chart::opengl3D::LightSource pad3 float
comphelper/source/container/enumerablemap.cxx:299
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
(anonymous) address_format char *
connectivity/source/drivers/evoab2/EApi.h:126
@@ -34,24 +38,18 @@ cppu/source/threadpool/threadpool.cxx:377
_uno_ThreadPool dummy sal_Int32
cppu/source/typelib/typelib.cxx:61
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
-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
+emfio/source/emfuno/xemfparser.cxx:59
+ emfio::emfreader::XEmfParser context_ uno::Reference<uno::XComponentContext>
extensions/source/propctrlr/propertyhandler.hxx:80
pcr::PropertyHandler m_aEnsureResAccess class pcr::PcrClient
extensions/source/scanner/scanner.hxx:46
ScannerManager maProtector osl::Mutex
filter/source/xsltdialog/xmlfiltersettingsdialog.hxx:71
- XMLFilterListBox m_aEnsureResMgr class EnsureResMgr
+ XMLFilterListBox m_aEnsureResLocale class EnsureResLocale
filter/source/xsltdialog/xmlfiltersettingsdialog.hxx:130
- XMLFilterSettingsDialog maEnsureResMgr class EnsureResMgr
-framework/inc/dispatch/oxt_handler.hxx:92
- framework::Oxt_Handler m_xSelfHold css::uno::Reference<css::uno::XInterface>
+ XMLFilterSettingsDialog maEnsureResLocale class EnsureResLocale
include/comphelper/MasterPropertySet.hxx:38
comphelper::SlaveData mxSlave css::uno::Reference<css::beans::XPropertySet>
include/drawinglayer/primitive2d/textlayoutdevice.hxx:61
@@ -70,20 +68,112 @@ include/svtools/genericunodialog.hxx:170
svt::UnoDialogEntryGuard m_aGuard ::osl::MutexGuard
include/svtools/unoevent.hxx:161
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
TabPageUIObject mxTabPage VclPtr<class TabPage>
include/xmloff/formlayerexport.hxx:173
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
GtvApplicationWindow parent_instance GtkApplicationWindow
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:54
GtvApplicationWindow doctype LibreOfficeKitDocumentType
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:73
- GtvApplicationWindowClass parentClass GtkApplicationWindow
+ GtvApplicationWindowClass parentClass GtkApplicationWindowClass
libreofficekit/qa/gtktiledviewer/gtv-application.hxx:26
GtvApplication parent GtkApplication
libreofficekit/qa/gtktiledviewer/gtv-application.hxx:31
- GtvApplicationClass parentClass GtkApplication
+ GtvApplicationClass parentClass GtkApplicationClass
libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.hxx:28
GtvCalcHeaderBar parent GtkDrawingArea
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/source/ui/table/TableDesignPane.hxx:113
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/source/ui/view/viewshel.cxx:1258
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/source/ui/view/ViewShellBase.cxx:195
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
starmath/inc/view.hxx:224
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
HTML_OptionEntry union HTML_OptionEntry::(anonymous at /home/noel/libo3/svtools/source/svhtml/htmlkywd.cxx:558:5)
svtools/source/svhtml/htmlkywd.cxx:560
@@ -172,20 +272,16 @@ unoidl/source/unoidlprovider.cxx:673
unoidl::detail::(anonymous namespace)::UnoidlCursor reference2_ rtl::Reference<UnoidlModuleEntity>
vcl/inc/opengl/zone.hxx:46
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
ImplOldJobSetupData cDeviceName char [32]
vcl/source/gdi/jobset.cxx:35
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
UITestUnoObj mpUITest std::unique_ptr<UITest>
vcl/unx/gtk/a11y/atkhypertext.cxx:29
diff --git a/compilerplugins/clang/unusedfields.writeonly.results b/compilerplugins/clang/unusedfields.writeonly.results
index 2742bb9ac184..7ad5130afe0b 100644
--- a/compilerplugins/clang/unusedfields.writeonly.results
+++ b/compilerplugins/clang/unusedfields.writeonly.results
@@ -6,6 +6,8 @@ basctl/source/inc/bastype2.hxx:180
basctl::TreeListBox m_aNotifier class basctl::DocumentEventNotifier
basctl/source/inc/dlged.hxx:121
basctl::DlgEditor pObjFac std::unique_ptr<DlgEdFactory>
+basic/qa/cppunit/basictest.hxx:27
+ MacroSnippet maDll class BasicDLL
basic/qa/cppunit/test_scanner.cxx:26
(anonymous namespace)::Symbol line sal_uInt16
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>
configmgr/source/components.cxx:163
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
(anonymous) address_format char *
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 *
cppuhelper/source/access_control.cxx:81
cppu::(anonymous namespace)::permission m_str2 rtl_uString *
-cui/source/inc/cuihyperdlg.hxx:47
+cui/source/inc/cuihyperdlg.hxx:56
SvxHlinkCtrl aRdOnlyForwarder class SfxStatusForwarder
-cui/source/inc/cuihyperdlg.hxx:67
+cui/source/inc/cuihyperdlg.hxx:76
SvxHpLinkDlg maCtrl class SvxHlinkCtrl
dbaccess/source/core/dataaccess/documentdefinition.cxx:289
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
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>
desktop/unx/source/splashx.c:369
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
OleEmbeddedObject m_nTargetState sal_Int32
embeddedobj/source/inc/oleembobj.hxx:139
@@ -224,14 +244,26 @@ embeddedobj/source/inc/oleembobj.hxx:170
OleEmbeddedObject m_nStatusAspect sal_Int64
embeddedobj/source/inc/oleembobj.hxx:184
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
pcr::PropertyHandler m_aEnsureResAccess class pcr::PcrClient
extensions/source/scanner/scanner.hxx:46
ScannerManager maProtector osl::Mutex
extensions/source/scanner/scanner.hxx:47
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::LayoutManager m_bGlobalSettings _Bool
framework/inc/services/layoutmanager.hxx:276
@@ -278,22 +310,40 @@ include/svtools/unoevent.hxx:161
SvEventDescriptor xParentRef css::uno::Reference<css::uno::XInterface>
include/svx/bmpmask.hxx:129
SvxBmpMask aSelItem class SvxBmpMaskSelectItem
-include/svx/float3d.hxx:176
+include/svx/float3d.hxx:199
Svx3DWin pControllerItem class Svx3DCtrlItem *
-include/svx/imapdlg.hxx:118
+include/svx/imapdlg.hxx:140
SvxIMapDlg aIMapItem class SvxIMapDlgItem
include/svx/srchdlg.hxx:231
SvxSearchDialog pSearchController class SvxSearchController *
include/svx/srchdlg.hxx:232
SvxSearchDialog pOptionsController class SvxSearchController *
-include/vcl/menu.hxx:462
+include/vcl/menu.hxx:454
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
ToolbarValue mbIsTopDockingArea _Bool
include/vcl/salnativewidgets.hxx:463
PushButtonValue mbBevelButton _Bool
include/vcl/salnativewidgets.hxx:464
PushButtonValue mbSingleLine _Bool
+include/vcl/toolbox.hxx:106
+ ToolBox maInDockRect tools::Rectangle
include/vcl/uitest/uiobject.hxx:241
TabPageUIObject mxTabPage VclPtr<class TabPage>
include/xmloff/formlayerexport.hxx:173
@@ -304,6 +354,78 @@ include/xmloff/shapeimport.hxx:181
SdXML3DSceneAttributesHelper mbVPNUsed _Bool
include/xmloff/shapeimport.hxx:182
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
GtvApplicationWindow parent_instance GtkApplicationWindow
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
GtvApplicationWindow statusbar GtkWidget *
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:73
- GtvApplicationWindowClass parentClass GtkApplicationWindow
+ GtvApplicationWindowClass parentClass GtkApplicationWindowClass
libreofficekit/qa/gtktiledviewer/gtv-application.hxx:26
GtvApplication parent GtkApplication
libreofficekit/qa/gtktiledviewer/gtv-application.hxx:31
- GtvApplicationClass parentClass GtkApplication
+ GtvApplicationClass parentClass GtkApplicationClass
libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.hxx:28
GtvCalcHeaderBar parent GtkDrawingArea
libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.hxx:37
@@ -354,12 +476,6 @@ registry/source/reflread.cxx:867
MethodList m_pCP class ConstantPool *
reportdesign/source/ui/inc/ReportWindow.hxx:54
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
osl_thread_priority_st m_Highest int
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/source/ui/table/TableDesignPane.hxx:113
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/source/ui/view/viewshel.cxx:1258
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/source/ui/view/ViewShellBase.cxx:195
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
-sfx2/source/inc/appdata.hxx:76
+sfx2/source/inc/appdata.hxx:75
SfxAppData_Impl pDocTopics SfxDdeDocTopics_Impl *
-sfx2/source/inc/appdata.hxx:77
+sfx2/source/inc/appdata.hxx:76
SfxAppData_Impl pTriggerTopic class SfxDdeTriggerTopic_Impl *
-sfx2/source/inc/appdata.hxx:78
+sfx2/source/inc/appdata.hxx:77
SfxAppData_Impl pDdeService2 class DdeService *
sfx2/source/view/classificationcontroller.cxx:59
sfx2::ClassificationCategoriesController m_aPropertyListener class sfx2::ClassificationPropertyListener
@@ -548,6 +666,28 @@ starmath/inc/view.hxx:224
SmViewShell maGraphicController class SmGraphicController
store/source/storbase.hxx:269
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
INetURLHistory_Impl::head_entry m_nMagic sal_uInt32
svtools/source/svhtml/htmlkywd.cxx:558
@@ -666,44 +806,24 @@ vcl/inc/salwtype.hxx:250
SalSwipeEvent mnVelocityY double
vcl/inc/sft.hxx:486
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
(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
ImpFilterLibCache mpLast struct ImpFilterLibCacheEntry *
vcl/source/filter/jpeg/Exif.hxx:56
Exif::ExifIFD type sal_uInt16
vcl/source/filter/jpeg/Exif.hxx:57
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
ImplOldJobSetupData cDeviceName char [32]
vcl/source/gdi/jobset.cxx:35
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
UITestUnoObj mpUITest std::unique_ptr<UITest>
vcl/unx/generic/app/wmadaptor.cxx:1270