loplugin:unusedfields improve write-only when dealing with operators
Change-Id: I3a060d94de7c3d77a54e7f7f87bef88458ab5161 Reviewed-on: https://gerrit.libreoffice.org/68132 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
This commit is contained in:
@@ -199,6 +199,30 @@ struct ReadOnlyAnalysis4
|
||||
}
|
||||
};
|
||||
|
||||
template<class T>
|
||||
struct VclPtr
|
||||
{
|
||||
VclPtr(T*);
|
||||
void clear();
|
||||
};
|
||||
|
||||
// Check calls to operators
|
||||
struct WriteOnlyAnalysis2
|
||||
// expected-error@-1 {{write m_vclwriteonly [loplugin:unusedfields]}}
|
||||
{
|
||||
VclPtr<int> m_vclwriteonly;
|
||||
|
||||
WriteOnlyAnalysis2() : m_vclwriteonly(nullptr)
|
||||
{
|
||||
m_vclwriteonly = nullptr;
|
||||
}
|
||||
|
||||
~WriteOnlyAnalysis2()
|
||||
{
|
||||
m_vclwriteonly.clear();
|
||||
}
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
|
||||
|
@@ -496,7 +496,7 @@ void UnusedFields::checkIfReadFrom(const FieldDecl* fieldDecl, const Expr* membe
|
||||
// walk up the tree until we find something interesting
|
||||
bool bPotentiallyReadFrom = false;
|
||||
bool bDump = false;
|
||||
auto walkupUp = [&]() {
|
||||
auto walkUp = [&]() {
|
||||
child = parent;
|
||||
auto parentsRange = compiler.getASTContext().getParents(*parent);
|
||||
parent = parentsRange.begin() == parentsRange.end() ? nullptr : parentsRange.begin()->get<Stmt>();
|
||||
@@ -526,7 +526,7 @@ void UnusedFields::checkIfReadFrom(const FieldDecl* fieldDecl, const Expr* membe
|
||||
else if (isa<CastExpr>(parent) || isa<MemberExpr>(parent) || isa<ParenExpr>(parent) || isa<ParenListExpr>(parent)
|
||||
|| isa<ArrayInitLoopExpr>(parent) || isa<ExprWithCleanups>(parent))
|
||||
{
|
||||
walkupUp();
|
||||
walkUp();
|
||||
}
|
||||
else if (auto unaryOperator = dyn_cast<UnaryOperator>(parent))
|
||||
{
|
||||
@@ -547,7 +547,7 @@ void UnusedFields::checkIfReadFrom(const FieldDecl* fieldDecl, const Expr* membe
|
||||
UO_PreInc / UO_PostInc / UO_PreDec / UO_PostDec
|
||||
But we still walk up in case the result of the expression is used in a read sense.
|
||||
*/
|
||||
walkupUp();
|
||||
walkUp();
|
||||
}
|
||||
else if (auto caseStmt = dyn_cast<CaseStmt>(parent))
|
||||
{
|
||||
@@ -571,7 +571,41 @@ void UnusedFields::checkIfReadFrom(const FieldDecl* fieldDecl, const Expr* membe
|
||||
bPotentiallyReadFrom = true;
|
||||
break;
|
||||
}
|
||||
walkupUp();
|
||||
walkUp();
|
||||
}
|
||||
else if (auto binaryOp = dyn_cast<BinaryOperator>(parent))
|
||||
{
|
||||
BinaryOperator::Opcode op = binaryOp->getOpcode();
|
||||
const bool assignmentOp = op == BO_Assign || op == BO_MulAssign
|
||||
|| 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)
|
||||
break;
|
||||
else
|
||||
{
|
||||
bPotentiallyReadFrom = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
else if (auto operatorCallExpr = dyn_cast<CXXOperatorCallExpr>(parent))
|
||||
{
|
||||
auto op = operatorCallExpr->getOperator();
|
||||
const bool assignmentOp = op == OO_Equal || op == OO_StarEqual ||
|
||||
op == OO_SlashEqual || op == OO_PercentEqual ||
|
||||
op == OO_PlusEqual || op == OO_MinusEqual ||
|
||||
op == OO_LessLessEqual || op == OO_GreaterGreaterEqual ||
|
||||
op == OO_AmpEqual || op == OO_CaretEqual ||
|
||||
op == OO_PipeEqual;
|
||||
if (operatorCallExpr->getArg(0) == child && assignmentOp)
|
||||
break;
|
||||
else if (op == OO_GreaterGreaterEqual && operatorCallExpr->getArg(1) == child)
|
||||
break; // this is a write-only call
|
||||
else
|
||||
{
|
||||
bPotentiallyReadFrom = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
else if (auto callExpr = dyn_cast<CallExpr>(parent))
|
||||
{
|
||||
@@ -594,9 +628,6 @@ void UnusedFields::checkIfReadFrom(const FieldDecl* fieldDecl, const Expr* membe
|
||||
|| name == "clear" || name == "fill")
|
||||
// write-only modifications to collections
|
||||
;
|
||||
else if (name.find(">>=") != std::string::npos && callExpr->getArg(1) == child)
|
||||
// this is a write-only call
|
||||
;
|
||||
else if (name == "dispose" || name == "disposeAndClear" || name == "swap")
|
||||
// we're abusing the write-only analysis here to look for fields which don't have anything useful
|
||||
// being done to them, so we're ignoring things like std::vector::clear, std::vector::swap,
|
||||
@@ -609,19 +640,6 @@ void UnusedFields::checkIfReadFrom(const FieldDecl* fieldDecl, const Expr* membe
|
||||
bPotentiallyReadFrom = true;
|
||||
break;
|
||||
}
|
||||
else if (auto binaryOp = dyn_cast<BinaryOperator>(parent))
|
||||
{
|
||||
BinaryOperator::Opcode op = binaryOp->getOpcode();
|
||||
// If the child is on the LHS and it is an assignment op, we are obviously not reading from it
|
||||
const bool assignmentOp = op == BO_Assign || op == BO_MulAssign
|
||||
|| 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)) {
|
||||
bPotentiallyReadFrom = true;
|
||||
}
|
||||
break;
|
||||
}
|
||||
else if (isa<ReturnStmt>(parent)
|
||||
|| isa<CXXConstructExpr>(parent)
|
||||
|| isa<ConditionalOperator>(parent)
|
||||
@@ -705,7 +723,7 @@ void UnusedFields::checkIfWrittenTo(const FieldDecl* fieldDecl, const Expr* memb
|
||||
// walk up the tree until we find something interesting
|
||||
bool bPotentiallyWrittenTo = false;
|
||||
bool bDump = false;
|
||||
auto walkupUp = [&]() {
|
||||
auto walkUp = [&]() {
|
||||
child = parent;
|
||||
auto parentsRange = compiler.getASTContext().getParents(*parent);
|
||||
parent = parentsRange.begin() == parentsRange.end() ? nullptr : parentsRange.begin()->get<Stmt>();
|
||||
@@ -738,7 +756,7 @@ void UnusedFields::checkIfWrittenTo(const FieldDecl* fieldDecl, const Expr* memb
|
||||
else if (isa<CastExpr>(parent) || isa<MemberExpr>(parent) || isa<ParenExpr>(parent) || isa<ParenListExpr>(parent)
|
||||
|| isa<ArrayInitLoopExpr>(parent) || isa<ExprWithCleanups>(parent))
|
||||
{
|
||||
walkupUp();
|
||||
walkUp();
|
||||
}
|
||||
else if (auto unaryOperator = dyn_cast<UnaryOperator>(parent))
|
||||
{
|
||||
@@ -753,7 +771,7 @@ void UnusedFields::checkIfWrittenTo(const FieldDecl* fieldDecl, const Expr* memb
|
||||
{
|
||||
if (arraySubscriptExpr->getIdx() == child)
|
||||
break;
|
||||
walkupUp();
|
||||
walkUp();
|
||||
}
|
||||
else if (auto operatorCallExpr = dyn_cast<CXXOperatorCallExpr>(parent))
|
||||
{
|
||||
|
@@ -9,21 +9,23 @@ avmedia/source/vlc/wrapper/Types.hxx:44
|
||||
avmedia/source/vlc/wrapper/Types.hxx:45
|
||||
libvlc_event_t::(anonymous union)::(anonymous) dummy2 const char *
|
||||
avmedia/source/vlc/wrapper/Types.hxx:46
|
||||
libvlc_event_t::(anonymous) padding struct (anonymous struct at /media/noel/disk2/libo6/avmedia/source/vlc/wrapper/Types.hxx:43:7)
|
||||
libvlc_event_t::(anonymous) padding struct (anonymous struct at /media/noel/disk2/libo4/avmedia/source/vlc/wrapper/Types.hxx:43:7)
|
||||
avmedia/source/vlc/wrapper/Types.hxx:47
|
||||
libvlc_event_t u union (anonymous union at /media/noel/disk2/libo6/avmedia/source/vlc/wrapper/Types.hxx:41:5)
|
||||
libvlc_event_t u union (anonymous union at /media/noel/disk2/libo4/avmedia/source/vlc/wrapper/Types.hxx:41:5)
|
||||
avmedia/source/vlc/wrapper/Types.hxx:53
|
||||
libvlc_track_description_t psz_name char *
|
||||
basegfx/source/polygon/b2dtrapezoid.cxx:202
|
||||
basegfx::trapezoidhelper::PointBlockAllocator maFirstStackBlock class basegfx::B2DPoint [32]
|
||||
basic/qa/cppunit/basictest.hxx:27
|
||||
MacroSnippet maDll class BasicDLL
|
||||
binaryurp/source/unmarshal.hxx:89
|
||||
binaryurp/source/unmarshal.hxx:87
|
||||
binaryurp::Unmarshal buffer_ com::sun::star::uno::Sequence<sal_Int8>
|
||||
binaryurp/source/writer.hxx:148
|
||||
binaryurp::Writer state_ struct binaryurp::WriterState
|
||||
canvas/source/vcl/impltools.hxx:117
|
||||
vclcanvas::tools::LocalGuard aSolarGuard class SolarMutexGuard
|
||||
canvas/workben/canvasdemo.cxx:82
|
||||
DemoRenderer maColorWhite uno::Sequence<double>
|
||||
chart2/source/controller/accessibility/AccessibleChartShape.hxx:79
|
||||
chart::AccessibleChartShape m_aShapeTreeInfo ::accessibility::AccessibleShapeTreeInfo
|
||||
chart2/source/controller/inc/dlg_View3D.hxx:53
|
||||
@@ -78,9 +80,9 @@ cppcanvas/source/mtfrenderer/textaction.cxx:809
|
||||
cppcanvas::internal::(anonymous namespace)::EffectTextAction maTextLineInfo const tools::TextLineInfo
|
||||
cppcanvas/source/mtfrenderer/textaction.cxx:1638
|
||||
cppcanvas::internal::(anonymous namespace)::OutlineAction maTextLineInfo const tools::TextLineInfo
|
||||
cppu/source/threadpool/threadpool.cxx:355
|
||||
cppu/source/threadpool/threadpool.cxx:354
|
||||
_uno_ThreadPool dummy sal_Int32
|
||||
cppu/source/typelib/typelib.cxx:59
|
||||
cppu/source/typelib/typelib.cxx:56
|
||||
AlignSize_Impl nInt16 sal_Int16
|
||||
cppu/source/uno/check.cxx:38
|
||||
(anonymous namespace)::C1 n1 sal_Int16
|
||||
@@ -126,9 +128,9 @@ cppu/source/uno/check.cxx:134
|
||||
(anonymous namespace)::Char3 c3 char
|
||||
cppu/source/uno/check.cxx:138
|
||||
(anonymous namespace)::Char4 chars struct (anonymous namespace)::Char3
|
||||
cui/source/dialogs/colorpicker.cxx:712
|
||||
cui/source/dialogs/colorpicker.cxx:713
|
||||
cui::ColorPickerDialog m_aColorPrevious class cui::ColorPreviewControl
|
||||
cui/source/factory/dlgfact.cxx:1378
|
||||
cui/source/factory/dlgfact.cxx:1386
|
||||
SvxMacroAssignDialog m_aItems class SfxItemSet
|
||||
cui/source/inc/cfgutil.hxx:274
|
||||
SvxScriptSelectorDialog m_aStylesInfo struct SfxStylesInfo_Impl
|
||||
@@ -164,13 +166,11 @@ dbaccess/source/core/api/RowSet.hxx:462
|
||||
dbaccess::ORowSetClone m_bIsBookmarkable _Bool
|
||||
dbaccess/source/core/dataaccess/connection.hxx:101
|
||||
dbaccess::OConnection m_nInAppend std::atomic<std::size_t>
|
||||
dbaccess/source/ui/dlg/admincontrols.hxx:52
|
||||
dbaui::MySQLNativeSettings m_aControlDependencies ::svt::ControlDependencyManager
|
||||
drawinglayer/source/tools/emfphelperdata.hxx:155
|
||||
drawinglayer/source/tools/emfphelperdata.hxx:153
|
||||
emfplushelper::EmfPlusHelperData mnFrameRight sal_Int32
|
||||
drawinglayer/source/tools/emfphelperdata.hxx:156
|
||||
drawinglayer/source/tools/emfphelperdata.hxx:154
|
||||
emfplushelper::EmfPlusHelperData mnFrameBottom sal_Int32
|
||||
editeng/source/editeng/impedit.hxx:460
|
||||
editeng/source/editeng/impedit.hxx:462
|
||||
ImpEditEngine aSelFuncSet class EditSelFunctionSet
|
||||
filter/source/flash/swfwriter.hxx:391
|
||||
swf::Writer maMovieTempFile utl::TempFile
|
||||
@@ -184,8 +184,6 @@ filter/source/graphicfilter/icgm/chart.hxx:46
|
||||
DataNode nBoxX2 sal_Int16
|
||||
filter/source/graphicfilter/icgm/chart.hxx:47
|
||||
DataNode nBoxY2 sal_Int16
|
||||
filter/source/svg/svgfilter.hxx:224
|
||||
SVGFilter mpSdrModel class SdrModel *
|
||||
helpcompiler/inc/HelpCompiler.hxx:230
|
||||
HelpCompiler lang const std::string
|
||||
include/basic/basmgr.hxx:52
|
||||
@@ -206,6 +204,8 @@ include/LibreOfficeKit/LibreOfficeKitGtk.h:33
|
||||
_LOKDocView aDrawingArea GtkDrawingArea
|
||||
include/LibreOfficeKit/LibreOfficeKitGtk.h:38
|
||||
_LOKDocViewClass parent_class GtkDrawingAreaClass
|
||||
include/oox/drawingml/shapegroupcontext.hxx:43
|
||||
oox::drawingml::ShapeGroupContext mpMasterShapePtr oox::drawingml::ShapePtr
|
||||
include/oox/export/shapes.hxx:123
|
||||
oox::drawingml::ShapeExport maShapeMap oox::drawingml::ShapeExport::ShapeHashMap
|
||||
include/registry/registry.hxx:35
|
||||
@@ -232,14 +232,14 @@ include/sfx2/msg.hxx:133
|
||||
SfxType2 aAttrib struct SfxTypeAttrib [2]
|
||||
include/sfx2/msg.hxx:133
|
||||
SfxType2 nAttribs sal_uInt16
|
||||
include/sfx2/msg.hxx:134
|
||||
SfxType3 nAttribs sal_uInt16
|
||||
include/sfx2/msg.hxx:134
|
||||
SfxType3 aAttrib struct SfxTypeAttrib [3]
|
||||
include/sfx2/msg.hxx:134
|
||||
SfxType3 pType const std::type_info *
|
||||
include/sfx2/msg.hxx:134
|
||||
SfxType3 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
|
||||
include/sfx2/msg.hxx:134
|
||||
SfxType3 nAttribs sal_uInt16
|
||||
include/sfx2/msg.hxx:135
|
||||
SfxType4 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
|
||||
include/sfx2/msg.hxx:135
|
||||
@@ -292,10 +292,10 @@ include/sfx2/msg.hxx:141
|
||||
SfxType11 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
|
||||
include/sfx2/msg.hxx:141
|
||||
SfxType11 pType const std::type_info *
|
||||
include/sfx2/msg.hxx:141
|
||||
SfxType11 nAttribs sal_uInt16
|
||||
include/sfx2/msg.hxx:141
|
||||
SfxType11 aAttrib struct SfxTypeAttrib [11]
|
||||
include/sfx2/msg.hxx:141
|
||||
SfxType11 nAttribs sal_uInt16
|
||||
include/sfx2/msg.hxx:143
|
||||
SfxType13 pType const std::type_info *
|
||||
include/sfx2/msg.hxx:143
|
||||
@@ -382,37 +382,37 @@ lingucomponent/source/languageguessing/simpleguesser.cxx:79
|
||||
textcat_t maxsize uint4
|
||||
lingucomponent/source/languageguessing/simpleguesser.cxx:81
|
||||
textcat_t output char [1024]
|
||||
lotuswordpro/source/filter/bento.hxx:352
|
||||
lotuswordpro/source/filter/bento.hxx:353
|
||||
OpenStormBento::CBenNamedObject cNameListElmt class OpenStormBento::CBenNamedObjectListElmt
|
||||
lotuswordpro/source/filter/clone.hxx:23
|
||||
detail::has_clone::(anonymous) a char [2]
|
||||
oox/source/drawingml/diagram/diagramlayoutatoms.hxx:208
|
||||
oox/source/drawingml/diagram/diagramlayoutatoms.hxx:212
|
||||
oox::drawingml::ConditionAtom maIter struct oox::drawingml::IteratorAttr
|
||||
oox/source/drawingml/diagram/layoutnodecontext.cxx:84
|
||||
oox/source/drawingml/diagram/layoutnodecontext.cxx:92
|
||||
oox::drawingml::AlgorithmContext mnRevision sal_Int32
|
||||
oox/source/drawingml/diagram/layoutnodecontext.cxx:126
|
||||
oox/source/drawingml/diagram/layoutnodecontext.cxx:134
|
||||
oox::drawingml::ChooseContext msName class rtl::OUString
|
||||
oox/source/drawingml/hyperlinkcontext.hxx:43
|
||||
oox::drawingml::HyperLinkContext maProperties class oox::PropertyMap &
|
||||
oox/source/ppt/timenodelistcontext.cxx:196
|
||||
oox/source/ppt/timenodelistcontext.cxx:199
|
||||
oox::ppt::MediaNodeContext mbIsNarration _Bool
|
||||
oox/source/ppt/timenodelistcontext.cxx:197
|
||||
oox/source/ppt/timenodelistcontext.cxx:200
|
||||
oox::ppt::MediaNodeContext mbFullScrn _Bool
|
||||
oox/source/ppt/timenodelistcontext.cxx:391
|
||||
oox/source/ppt/timenodelistcontext.cxx:394
|
||||
oox::ppt::SequenceTimeNodeContext mbConcurrent _Bool
|
||||
oox/source/ppt/timenodelistcontext.cxx:392
|
||||
oox::ppt::SequenceTimeNodeContext mnNextAc sal_Int32
|
||||
oox/source/ppt/timenodelistcontext.cxx:392
|
||||
oox/source/ppt/timenodelistcontext.cxx:395
|
||||
oox::ppt::SequenceTimeNodeContext mnPrevAc sal_Int32
|
||||
oox/source/ppt/timenodelistcontext.cxx:628
|
||||
oox/source/ppt/timenodelistcontext.cxx:395
|
||||
oox::ppt::SequenceTimeNodeContext mnNextAc sal_Int32
|
||||
oox/source/ppt/timenodelistcontext.cxx:631
|
||||
oox::ppt::AnimContext mnValueType sal_Int32
|
||||
oox/source/ppt/timenodelistcontext.cxx:710
|
||||
oox/source/ppt/timenodelistcontext.cxx:713
|
||||
oox::ppt::AnimScaleContext mbZoomContents _Bool
|
||||
oox/source/ppt/timenodelistcontext.cxx:850
|
||||
oox/source/ppt/timenodelistcontext.cxx:853
|
||||
oox::ppt::AnimMotionContext msPtsTypes class rtl::OUString
|
||||
oox/source/ppt/timenodelistcontext.cxx:851
|
||||
oox/source/ppt/timenodelistcontext.cxx:854
|
||||
oox::ppt::AnimMotionContext mnPathEditMode sal_Int32
|
||||
oox/source/ppt/timenodelistcontext.cxx:852
|
||||
oox/source/ppt/timenodelistcontext.cxx:855
|
||||
oox::ppt::AnimMotionContext mnAngle sal_Int32
|
||||
opencl/source/openclwrapper.cxx:304
|
||||
openclwrapper::(anonymous namespace)::OpenCLEnv mpOclCmdQueue cl_command_queue [1]
|
||||
@@ -500,18 +500,16 @@ sc/inc/token.hxx:400
|
||||
SingleDoubleRefModifier aDub struct ScComplexRefData
|
||||
sc/qa/unit/ucalc_column.cxx:104
|
||||
aInputs aName const char *
|
||||
sc/source/core/data/document.cxx:1237
|
||||
sc/source/core/data/document.cxx:1239
|
||||
(anonymous namespace)::BroadcastRecalcOnRefMoveHandler aSwitch const sc::AutoCalcSwitch
|
||||
sc/source/core/data/document.cxx:1238
|
||||
sc/source/core/data/document.cxx:1240
|
||||
(anonymous namespace)::BroadcastRecalcOnRefMoveHandler aBulk const class ScBulkBroadcast
|
||||
sc/source/filter/html/htmlpars.cxx:3030
|
||||
sc/source/filter/html/htmlpars.cxx:3002
|
||||
(anonymous namespace)::CSSHandler::MemStr mp const char *
|
||||
sc/source/filter/html/htmlpars.cxx:3031
|
||||
sc/source/filter/html/htmlpars.cxx:3003
|
||||
(anonymous namespace)::CSSHandler::MemStr mn size_t
|
||||
sc/source/filter/inc/htmlpars.hxx:614
|
||||
ScHTMLQueryParser mnUnusedId ScHTMLTableId
|
||||
sc/source/filter/inc/namebuff.hxx:79
|
||||
RangeNameBufferWK3::Entry aScAbsName const class rtl::OUString
|
||||
sc/source/filter/inc/sheetdatacontext.hxx:62
|
||||
oox::xls::SheetDataContext aReleaser const class SolarMutexReleaser
|
||||
sc/source/filter/inc/xetable.hxx:1002
|
||||
@@ -562,71 +560,71 @@ sccomp/source/solver/DifferentialEvolution.hxx:35
|
||||
DifferentialEvolutionAlgorithm maRandomDevice std::random_device
|
||||
sccomp/source/solver/ParticelSwarmOptimization.hxx:56
|
||||
ParticleSwarmOptimizationAlgorithm maRandomDevice std::random_device
|
||||
scripting/source/stringresource/stringresource.cxx:1299
|
||||
scripting/source/stringresource/stringresource.cxx:1298
|
||||
stringresource::BinaryInput m_aData const Sequence<sal_Int8>
|
||||
sd/inc/anminfo.hxx:52
|
||||
SdAnimationInfo maSecondSoundFile const class rtl::OUString
|
||||
sd/source/filter/eppt/epptbase.hxx:347
|
||||
sd/source/filter/eppt/epptbase.hxx:349
|
||||
PPTWriterBase maFraction const class Fraction
|
||||
sd/source/filter/ppt/pptin.hxx:82
|
||||
SdPPTImport maParam struct PowerPointImportParam
|
||||
sd/source/ui/inc/AccessibleDocumentViewBase.hxx:262
|
||||
accessibility::AccessibleDocumentViewBase maViewForwarder class accessibility::AccessibleViewForwarder
|
||||
sd/source/ui/remotecontrol/Receiver.hxx:36
|
||||
sd/source/ui/remotecontrol/Receiver.hxx:35
|
||||
sd::Receiver pTransmitter class sd::Transmitter *
|
||||
sd/source/ui/remotecontrol/ZeroconfService.hxx:36
|
||||
sd::ZeroconfService port const uint
|
||||
sd/source/ui/table/TableDesignPane.hxx:104
|
||||
sd/source/ui/table/TableDesignPane.hxx:100
|
||||
sd::TableDesignPane aImpl const class sd::TableDesignWidget
|
||||
sd/source/ui/view/DocumentRenderer.cxx:1297
|
||||
sd::DocumentRenderer::Implementation mxObjectShell const SfxObjectShellRef
|
||||
sd/source/ui/view/viewshel.cxx:1208
|
||||
sd/source/ui/view/viewshel.cxx:1201
|
||||
sd::KeepSlideSorterInSyncWithPageChanges m_aDrawLock const sd::slidesorter::view::class SlideSorterView::DrawLock
|
||||
sd/source/ui/view/viewshel.cxx:1209
|
||||
sd/source/ui/view/viewshel.cxx:1202
|
||||
sd::KeepSlideSorterInSyncWithPageChanges m_aModelLock const sd::slidesorter::controller::class SlideSorterController::ModelChangeLock
|
||||
sd/source/ui/view/viewshel.cxx:1210
|
||||
sd/source/ui/view/viewshel.cxx:1203
|
||||
sd::KeepSlideSorterInSyncWithPageChanges m_aUpdateLock const sd::slidesorter::controller::class PageSelector::UpdateLock
|
||||
sd/source/ui/view/viewshel.cxx:1211
|
||||
sd/source/ui/view/viewshel.cxx:1204
|
||||
sd::KeepSlideSorterInSyncWithPageChanges m_aContext const sd::slidesorter::controller::class SelectionObserver::Context
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:263
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:262
|
||||
PDFGrammar::definition comment rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:262
|
||||
PDFGrammar::definition simple_type rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:262
|
||||
PDFGrammar::definition null_object rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:262
|
||||
PDFGrammar::definition stringtype rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:262
|
||||
PDFGrammar::definition boolean rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:262
|
||||
PDFGrammar::definition name rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:262
|
||||
PDFGrammar::definition stream rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:263
|
||||
PDFGrammar::definition boolean rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:263
|
||||
PDFGrammar::definition name rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:263
|
||||
PDFGrammar::definition null_object rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:263
|
||||
PDFGrammar::definition stringtype rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:263
|
||||
PDFGrammar::definition comment rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:263
|
||||
PDFGrammar::definition simple_type rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:264
|
||||
PDFGrammar::definition objectref rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:264
|
||||
PDFGrammar::definition dict_element rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:264
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:263
|
||||
PDFGrammar::definition objectref rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:263
|
||||
PDFGrammar::definition array rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:263
|
||||
PDFGrammar::definition dict_begin rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:263
|
||||
PDFGrammar::definition dict_end rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:263
|
||||
PDFGrammar::definition value rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:264
|
||||
PDFGrammar::definition dict_end rule<ScannerT>
|
||||
PDFGrammar::definition array_end rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:264
|
||||
PDFGrammar::definition array rule<ScannerT>
|
||||
PDFGrammar::definition array_begin rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:264
|
||||
PDFGrammar::definition object rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:264
|
||||
PDFGrammar::definition object_end rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:264
|
||||
PDFGrammar::definition dict_begin rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:265
|
||||
PDFGrammar::definition object_begin rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:265
|
||||
PDFGrammar::definition array_end rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:265
|
||||
PDFGrammar::definition array_begin rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:265
|
||||
PDFGrammar::definition object rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:265
|
||||
PDFGrammar::definition object_end rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:266
|
||||
PDFGrammar::definition trailer rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:266
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:265
|
||||
PDFGrammar::definition xref rule<ScannerT>
|
||||
sfx2/source/doc/doctempl.cxx:116
|
||||
DocTempl::DocTempl_EntryData_Impl mxObjShell const class SfxObjectShellLock
|
||||
@@ -654,9 +652,9 @@ slideshow/source/engine/smilfunctionparser.cxx:503
|
||||
slideshow::internal::(anonymous namespace)::ExpressionGrammar::definition binaryFunction ::boost::spirit::rule<ScannerT>
|
||||
slideshow/source/engine/smilfunctionparser.cxx:504
|
||||
slideshow::internal::(anonymous namespace)::ExpressionGrammar::definition identifier ::boost::spirit::rule<ScannerT>
|
||||
starmath/inc/view.hxx:218
|
||||
starmath/inc/view.hxx:217
|
||||
SmViewShell maGraphicController const class SmGraphicController
|
||||
starmath/source/accessibility.hxx:271
|
||||
starmath/source/accessibility.hxx:268
|
||||
SmEditSource rEditAcc class SmEditAccessible &
|
||||
svgio/inc/svgcharacternode.hxx:89
|
||||
svgio::svgreader::SvgTextPosition maY ::std::vector<double>
|
||||
@@ -694,19 +692,19 @@ svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1091
|
||||
(anonymous namespace)::ExpressionGrammar::definition modifierReference ::boost::spirit::rule<ScannerT>
|
||||
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1092
|
||||
(anonymous namespace)::ExpressionGrammar::definition identifier ::boost::spirit::rule<ScannerT>
|
||||
svx/source/dialog/framelinkarray.cxx:379
|
||||
svx/source/dialog/framelinkarray.cxx:380
|
||||
svx::frame::MergedCellIterator mnFirstRow size_t
|
||||
svx/source/dialog/imapwnd.hxx:78
|
||||
IMapWindow maItemInfos struct SfxItemInfo [1]
|
||||
svx/source/gallery2/galbrws2.cxx:115
|
||||
(anonymous namespace)::GalleryThemePopup maBuilder class VclBuilder
|
||||
svx/source/stbctrls/pszctrl.cxx:94
|
||||
svx/source/stbctrls/pszctrl.cxx:95
|
||||
FunctionPopup_Impl m_aBuilder class VclBuilder
|
||||
svx/source/stbctrls/selctrl.cxx:37
|
||||
SelectionTypePopup m_aBuilder class VclBuilder
|
||||
svx/source/stbctrls/zoomctrl.cxx:56
|
||||
ZoomPopup_Impl m_aBuilder class VclBuilder
|
||||
svx/source/svdraw/svdcrtv.cxx:49
|
||||
svx/source/svdraw/svdcrtv.cxx:50
|
||||
ImplConnectMarkerOverlay maObjects sdr::overlay::OverlayObjectList
|
||||
svx/source/xml/xmleohlp.cxx:72
|
||||
OutputStorageWrapper_Impl aTempFile class utl::TempFile
|
||||
@@ -714,17 +712,17 @@ sw/inc/unosett.hxx:145
|
||||
SwXNumberingRules m_pImpl ::sw::UnoImplPtr<Impl>
|
||||
sw/qa/core/test_ToxTextGenerator.cxx:134
|
||||
ToxTextGeneratorWithMockedChapterField mChapterFieldType class SwChapterFieldType
|
||||
sw/qa/extras/uiwriter/uiwriter.cxx:4019
|
||||
sw/qa/extras/uiwriter/uiwriter.cxx:4017
|
||||
IdleTask maIdle class Idle
|
||||
sw/source/core/crsr/crbm.cxx:66
|
||||
(anonymous namespace)::CursorStateHelper m_aSaveState const class SwCursorSaveState
|
||||
sw/source/core/inc/swfont.hxx:975
|
||||
sw/source/core/inc/swfont.hxx:986
|
||||
SvStatistics nGetStretchTextSize sal_uInt16
|
||||
sw/source/core/layout/dbg_lay.cxx:170
|
||||
SwImplEnterLeave nAction const enum DbgAction
|
||||
sw/source/core/text/inftxt.hxx:686
|
||||
SwTextSlot aText class rtl::OUString
|
||||
sw/source/core/text/porfld.cxx:141
|
||||
sw/source/core/text/porfld.cxx:140
|
||||
SwFieldSlot aText class rtl::OUString
|
||||
sw/source/ui/dbui/mmaddressblockpage.hxx:208
|
||||
SwCustomizeAddressBlockDialog m_aTextFilter class TextFilter
|
||||
@@ -740,13 +738,11 @@ sw/source/uibase/inc/regionsw.hxx:254
|
||||
SwInsertSectionTabDialog m_nNotePageId sal_uInt16
|
||||
sw/source/uibase/inc/regionsw.hxx:274
|
||||
SwSectionPropertyTabDialog m_nNotePageId sal_uInt16
|
||||
sw/source/uibase/inc/swuicnttab.hxx:327
|
||||
SwTOXEntryTabPage sNoCharSortKey const class rtl::OUString
|
||||
sw/source/uibase/inc/uivwimp.hxx:95
|
||||
SwView_Impl xTmpSelDocSh const class SfxObjectShellLock
|
||||
sw/source/uibase/inc/unodispatch.hxx:46
|
||||
SwXDispatchProviderInterceptor::DispatchMutexLock_Impl aGuard const class SolarMutexGuard
|
||||
toolkit/source/awt/stylesettings.cxx:90
|
||||
toolkit/source/awt/stylesettings.cxx:92
|
||||
toolkit::StyleMethodGuard m_aGuard const class SolarMutexGuard
|
||||
ucb/source/ucp/gio/gio_mount.hxx:46
|
||||
OOoMountOperationClass parent_class GMountOperationClass
|
||||
@@ -760,7 +756,7 @@ ucb/source/ucp/gio/gio_mount.hxx:52
|
||||
OOoMountOperationClass _gtk_reserved4 void (*)(void)
|
||||
unotools/source/config/defaultoptions.cxx:94
|
||||
SvtDefaultOptions_Impl m_aUserDictionaryPath class rtl::OUString
|
||||
vcl/headless/svpgdi.cxx:314
|
||||
vcl/headless/svpgdi.cxx:310
|
||||
(anonymous namespace)::SourceHelper aTmpBmp class SvpSalBitmap
|
||||
vcl/inc/canvasbitmap.hxx:44
|
||||
vcl::unotools::VclCanvasBitmap m_aAlpha ::Bitmap
|
||||
@@ -802,18 +798,16 @@ vcl/inc/WidgetThemeLibrary.hxx:90
|
||||
vcl::ControlDrawParameters eState enum ControlState
|
||||
vcl/inc/WidgetThemeLibrary.hxx:106
|
||||
vcl::WidgetThemeLibrary_t nSize uint32_t
|
||||
vcl/source/app/salvtables.cxx:1737
|
||||
vcl/source/app/salvtables.cxx:1926
|
||||
SalInstanceEntry m_aTextFilter class (anonymous namespace)::WeldTextFilter
|
||||
vcl/source/app/salvtables.cxx:3269
|
||||
vcl/source/app/salvtables.cxx:3708
|
||||
SalInstanceComboBoxWithEdit m_aTextFilter class (anonymous namespace)::WeldTextFilter
|
||||
vcl/source/gdi/jobset.cxx:35
|
||||
ImplOldJobSetupData cDeviceName char [32]
|
||||
vcl/source/gdi/jobset.cxx:36
|
||||
ImplOldJobSetupData cDeviceName char [32]
|
||||
vcl/source/gdi/jobset.cxx:37
|
||||
ImplOldJobSetupData cPortName char [32]
|
||||
vcl/unx/gtk3/gtk3gtkinst.cxx:2713
|
||||
vcl/unx/gtk3/gtk3gtkinst.cxx:2668
|
||||
CrippledViewport viewport GtkViewport
|
||||
vcl/unx/gtk3/gtk3gtkinst.cxx:2961
|
||||
GtkInstanceScrolledWindow m_nHAdjustChangedSignalId gulong
|
||||
vcl/unx/gtk/a11y/atkhypertext.cxx:29
|
||||
(anonymous) atk_hyper_link const AtkHyperlink
|
||||
vcl/unx/gtk/a11y/atkwrapper.hxx:49
|
||||
|
@@ -100,9 +100,9 @@ cppcanvas/source/mtfrenderer/textaction.cxx:816
|
||||
cppcanvas::internal::(anonymous namespace)::EffectTextAction maTextFillColor const ::Color
|
||||
cppcanvas/source/mtfrenderer/textaction.cxx:1646
|
||||
cppcanvas::internal::(anonymous namespace)::OutlineAction maTextFillColor const ::Color
|
||||
cppu/source/helper/purpenv/helper_purpenv_Mapping.cxx:35
|
||||
cppu/source/helper/purpenv/helper_purpenv_Mapping.cxx:34
|
||||
Mapping m_from uno::Environment
|
||||
cppu/source/helper/purpenv/helper_purpenv_Mapping.cxx:36
|
||||
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
|
||||
@@ -162,10 +162,8 @@ cui/source/options/optcolor.cxx:255
|
||||
ColorConfigWindow_Impl aModuleOptions class SvtModuleOptions
|
||||
cui/source/options/optpath.cxx:80
|
||||
OptPath_Impl m_aDefOpt class SvtDefaultOptions
|
||||
cui/source/options/personalization.hxx:38
|
||||
cui/source/options/personalization.hxx:39
|
||||
SvxPersonalizationTabPage m_vDefaultPersonaImages VclPtr<class PushButton> [6]
|
||||
cui/source/options/personalization.hxx:102
|
||||
SelectPersonaDialog m_vResultList VclPtr<class PushButton> [9]
|
||||
dbaccess/source/core/api/RowSetBase.hxx:85
|
||||
dbaccess::ORowSetBase m_aEmptyValue connectivity::ORowSetValue
|
||||
dbaccess/source/core/api/RowSetBase.hxx:96
|
||||
@@ -176,47 +174,47 @@ dbaccess/source/core/inc/ContentHelper.hxx:108
|
||||
dbaccess::OContentHelper m_aErrorHelper const ::connectivity::SQLError
|
||||
dbaccess/source/filter/hsqldb/parseschema.hxx:36
|
||||
dbahsql::SchemaParser m_PrimaryKeys std::map<OUString, std::vector<OUString> >
|
||||
dbaccess/source/ui/control/tabletree.cxx:182
|
||||
dbaccess/source/ui/control/tabletree.cxx:181
|
||||
dbaui::(anonymous namespace)::OViewSetter m_aEqualFunctor ::comphelper::UStringMixEqual
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:41
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:39
|
||||
dbaui::SpecialSettingsPage m_xIsSQL92Check std::unique_ptr<weld::CheckButton>
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:42
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:40
|
||||
dbaui::SpecialSettingsPage m_xAppendTableAlias std::unique_ptr<weld::CheckButton>
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:43
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:41
|
||||
dbaui::SpecialSettingsPage m_xAsBeforeCorrelationName std::unique_ptr<weld::CheckButton>
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:44
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:42
|
||||
dbaui::SpecialSettingsPage m_xEnableOuterJoin std::unique_ptr<weld::CheckButton>
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:45
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:43
|
||||
dbaui::SpecialSettingsPage m_xIgnoreDriverPrivileges std::unique_ptr<weld::CheckButton>
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:46
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:44
|
||||
dbaui::SpecialSettingsPage m_xParameterSubstitution std::unique_ptr<weld::CheckButton>
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:47
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:45
|
||||
dbaui::SpecialSettingsPage m_xSuppressVersionColumn std::unique_ptr<weld::CheckButton>
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:48
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:46
|
||||
dbaui::SpecialSettingsPage m_xCatalog std::unique_ptr<weld::CheckButton>
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:49
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:47
|
||||
dbaui::SpecialSettingsPage m_xSchema std::unique_ptr<weld::CheckButton>
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:50
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:48
|
||||
dbaui::SpecialSettingsPage m_xIndexAppendix std::unique_ptr<weld::CheckButton>
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:51
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:49
|
||||
dbaui::SpecialSettingsPage m_xDosLineEnds std::unique_ptr<weld::CheckButton>
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:52
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:50
|
||||
dbaui::SpecialSettingsPage m_xCheckRequiredFields std::unique_ptr<weld::CheckButton>
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:53
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:51
|
||||
dbaui::SpecialSettingsPage m_xIgnoreCurrency std::unique_ptr<weld::CheckButton>
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:54
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:52
|
||||
dbaui::SpecialSettingsPage m_xEscapeDateTime std::unique_ptr<weld::CheckButton>
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:55
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:53
|
||||
dbaui::SpecialSettingsPage m_xPrimaryKeySupport std::unique_ptr<weld::CheckButton>
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:56
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:54
|
||||
dbaui::SpecialSettingsPage m_xRespectDriverResultSetType std::unique_ptr<weld::CheckButton>
|
||||
dbaccess/source/ui/inc/charsetlistbox.hxx:44
|
||||
dbaui::CharSetListBox m_aCharSets class dbaui::OCharsetDisplay
|
||||
dbaccess/source/ui/inc/WCopyTable.hxx:269
|
||||
dbaui::OCopyTableWizard m_aLocale css::lang::Locale
|
||||
drawinglayer/source/processor2d/vclprocessor2d.hxx:83
|
||||
drawinglayer/source/processor2d/vclprocessor2d.hxx:84
|
||||
drawinglayer::processor2d::VclProcessor2D maDrawinglayerOpt const class SvtOptionsDrawinglayer
|
||||
editeng/source/editeng/impedit.hxx:449
|
||||
editeng/source/editeng/impedit.hxx:451
|
||||
ImpEditEngine maColorConfig svtools::ColorConfig
|
||||
embeddedobj/source/inc/commonembobj.hxx:108
|
||||
OCommonEmbeddedObject m_aClassName class rtl::OUString
|
||||
@@ -266,7 +264,7 @@ filter/source/graphicfilter/iras/iras.cxx:53
|
||||
RASReader mnRepCount sal_uInt8
|
||||
filter/source/graphicfilter/itga/itga.cxx:52
|
||||
TGAFileFooter nSignature sal_uInt32 [4]
|
||||
filter/source/xsltdialog/xmlfiltersettingsdialog.hxx:139
|
||||
filter/source/xsltdialog/xmlfiltersettingsdialog.hxx:144
|
||||
XMLFilterSettingsDialog maModuleOpt class SvtModuleOptions
|
||||
framework/inc/dispatch/dispatchprovider.hxx:81
|
||||
framework::DispatchProvider m_aProtocolHandlerCache class framework::HandlerCache
|
||||
@@ -278,7 +276,7 @@ framework/inc/xml/menudocumenthandler.hxx:160
|
||||
framework::OReadMenuHandler m_bMenuPopupMode _Bool
|
||||
framework/inc/xml/menudocumenthandler.hxx:190
|
||||
framework::OReadMenuPopupHandler m_bMenuMode _Bool
|
||||
framework/source/fwe/classes/addonsoptions.cxx:302
|
||||
framework/source/fwe/classes/addonsoptions.cxx:304
|
||||
framework::AddonsOptions_Impl m_aEmptyAddonToolBar Sequence<Sequence<struct com::sun::star::beans::PropertyValue> >
|
||||
i18npool/inc/textconversion.hxx:80
|
||||
i18npool::(anonymous) code sal_Unicode
|
||||
@@ -354,7 +352,7 @@ include/svl/ondemand.hxx:55
|
||||
OnDemandLocaleDataWrapper aSysLocale class SvtSysLocale
|
||||
include/svtools/editsyntaxhighlighter.hxx:32
|
||||
MultiLineEditSyntaxHighlight m_aColorConfig const svtools::ColorConfig
|
||||
include/svx/dialcontrol.hxx:111
|
||||
include/svx/dialcontrol.hxx:113
|
||||
svx::DialControl::DialControl_Impl mnLinkedFieldValueMultiplyer sal_Int32
|
||||
include/svx/sdr/overlay/overlayanimatedbitmapex.hxx:51
|
||||
sdr::overlay::OverlayAnimatedBitmapEx mbOverlayState _Bool
|
||||
@@ -372,12 +370,12 @@ 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
|
||||
include/test/sheet/xnamedranges.hxx:49
|
||||
apitest::XNamedRanges xSheet css::uno::Reference<css::sheet::XSpreadsheet>
|
||||
include/test/sheet/xspreadsheets2.hxx:46
|
||||
apitest::XSpreadsheets2 xDocument css::uno::Reference<css::sheet::XSpreadsheetDocument>
|
||||
include/unoidl/unoidl.hxx:443
|
||||
unoidl::ConstantValue union unoidl::ConstantValue::(anonymous at /media/noel/disk2/libo6/include/unoidl/unoidl.hxx:443:5)
|
||||
unoidl::ConstantValue union unoidl::ConstantValue::(anonymous at /media/noel/disk2/libo4/include/unoidl/unoidl.hxx:443:5)
|
||||
include/unoidl/unoidl.hxx:444
|
||||
unoidl::ConstantValue::(anonymous) booleanValue _Bool
|
||||
include/unoidl/unoidl.hxx:445
|
||||
@@ -432,13 +430,13 @@ oox/qa/unit/vba_compression.cxx:71
|
||||
TestVbaCompression m_directories const test::Directories
|
||||
oox/source/drawingml/chart/objectformatter.cxx:711
|
||||
oox::drawingml::chart::ObjectFormatterData maFromLocale const struct com::sun::star::lang::Locale
|
||||
oox/source/drawingml/diagram/diagramlayoutatoms.hxx:228
|
||||
oox/source/drawingml/diagram/diagramlayoutatoms.hxx:232
|
||||
oox::drawingml::ChooseAtom maEmptyChildren const std::vector<LayoutAtomPtr>
|
||||
registry/source/reflwrit.cxx:141
|
||||
registry/source/reflwrit.cxx:140
|
||||
writeDouble(sal_uInt8 *, double)::(anonymous union)::(anonymous) b1 sal_uInt32
|
||||
registry/source/reflwrit.cxx:142
|
||||
registry/source/reflwrit.cxx:141
|
||||
writeDouble(sal_uInt8 *, double)::(anonymous union)::(anonymous) b2 sal_uInt32
|
||||
registry/source/reflwrit.cxx:182
|
||||
registry/source/reflwrit.cxx:181
|
||||
CPInfo::(anonymous) aUik struct RTUik *
|
||||
reportdesign/source/ui/inc/ColorListener.hxx:35
|
||||
rptui::OColorListener m_aColorConfig const svtools::ColorConfig
|
||||
@@ -463,7 +461,7 @@ sal/rtl/uuid.cxx:65
|
||||
sc/inc/compiler.hxx:126
|
||||
ScRawToken::(anonymous union)::(anonymous) eItem const class ScTableRefToken::Item
|
||||
sc/inc/compiler.hxx:127
|
||||
ScRawToken::(anonymous) table const struct (anonymous struct at /media/noel/disk2/libo6/sc/inc/compiler.hxx:124:9)
|
||||
ScRawToken::(anonymous) table const struct (anonymous struct at /media/noel/disk2/libo4/sc/inc/compiler.hxx:124:9)
|
||||
sc/inc/compiler.hxx:132
|
||||
ScRawToken::(anonymous) pMat class ScMatrix *const
|
||||
sc/inc/formulagroup.hxx:39
|
||||
@@ -484,7 +482,7 @@ sc/source/filter/inc/commentsbuffer.hxx:42
|
||||
oox::xls::CommentModel maAnchor const css::awt::Rectangle
|
||||
sc/source/filter/inc/htmlpars.hxx:56
|
||||
ScHTMLStyles maEmpty const class rtl::OUString
|
||||
sc/source/filter/inc/namebuff.hxx:80
|
||||
sc/source/filter/inc/namebuff.hxx:79
|
||||
RangeNameBufferWK3::Entry nAbsInd sal_uInt16
|
||||
sc/source/filter/inc/qproform.hxx:55
|
||||
QProToSc mnAddToken const struct TokenId
|
||||
@@ -524,29 +522,33 @@ sc/source/ui/vba/vbaworksheet.hxx:50
|
||||
ScVbaWorksheet mxButtons ::rtl::Reference<ScVbaSheetObjectsBase> [2]
|
||||
sd/inc/Outliner.hxx:273
|
||||
SdOutliner mpFirstObj class SdrObject *
|
||||
sd/inc/sdmod.hxx:116
|
||||
SdModule gImplImpressPropertySetInfoCache SdExtPropertySetInfoCache
|
||||
sd/inc/sdmod.hxx:117
|
||||
SdModule gImplImpressPropertySetInfoCache SdExtPropertySetInfoCache
|
||||
sd/inc/sdmod.hxx:118
|
||||
SdModule gImplDrawPropertySetInfoCache SdExtPropertySetInfoCache
|
||||
sd/source/core/CustomAnimationCloner.cxx:70
|
||||
sd::CustomAnimationClonerImpl maSourceNodeVector std::vector<Reference<XAnimationNode> >
|
||||
sd/source/core/CustomAnimationCloner.cxx:71
|
||||
sd::CustomAnimationClonerImpl maSourceNodeVector std::vector<Reference<XAnimationNode> >
|
||||
sd/source/core/CustomAnimationCloner.cxx:72
|
||||
sd::CustomAnimationClonerImpl maCloneNodeVector std::vector<Reference<XAnimationNode> >
|
||||
sd/source/ui/sidebar/MasterPageContainer.cxx:148
|
||||
sd/source/ui/inc/sdtreelb.hxx:309
|
||||
SdPageObjsTLV m_bLinkableSelected _Bool
|
||||
sd/source/ui/inc/sdtreelb.hxx:310
|
||||
SdPageObjsTLV m_bShowAllShapes _Bool
|
||||
sd/source/ui/sidebar/MasterPageContainer.cxx:152
|
||||
sd::sidebar::MasterPageContainer::Implementation maLargePreviewBeingCreated class Image
|
||||
sd/source/ui/sidebar/MasterPageContainer.cxx:149
|
||||
sd/source/ui/sidebar/MasterPageContainer.cxx:153
|
||||
sd::sidebar::MasterPageContainer::Implementation maSmallPreviewBeingCreated class Image
|
||||
sd/source/ui/sidebar/MasterPageContainer.cxx:154
|
||||
sd/source/ui/sidebar/MasterPageContainer.cxx:158
|
||||
sd::sidebar::MasterPageContainer::Implementation maLargePreviewNotAvailable class Image
|
||||
sd/source/ui/sidebar/MasterPageContainer.cxx:155
|
||||
sd/source/ui/sidebar/MasterPageContainer.cxx:159
|
||||
sd::sidebar::MasterPageContainer::Implementation maSmallPreviewNotAvailable class Image
|
||||
sd/source/ui/slideshow/showwindow.hxx:103
|
||||
sd/source/ui/slideshow/showwindow.hxx:101
|
||||
sd::ShowWindow mbMouseCursorHidden _Bool
|
||||
sd/source/ui/slidesorter/cache/SlsPageCacheManager.cxx:143
|
||||
sd::slidesorter::cache::PageCacheManager::RecentlyUsedPageCaches maMap std::map<key_type, mapped_type>
|
||||
sd/source/ui/slidesorter/inc/controller/SlsAnimator.hxx:97
|
||||
sd::slidesorter::controller::Animator maElapsedTime const ::canvas::tools::ElapsedTime
|
||||
sd/source/ui/table/TableDesignPane.hxx:94
|
||||
sd/source/ui/table/TableDesignPane.hxx:90
|
||||
sd::TableDesignWidget m_aCheckBoxes VclPtr<class CheckBox> [6]
|
||||
sdext/source/pdfimport/inc/pdfihelper.hxx:101
|
||||
pdfi::GraphicsContext BlendMode sal_Int8
|
||||
@@ -556,13 +558,13 @@ sfx2/source/appl/lnkbase2.cxx:96
|
||||
sfx2::ImplDdeItem pLink class sfx2::SvBaseLink *
|
||||
sfx2/source/inc/versdlg.hxx:85
|
||||
SfxCmisVersionsDialog m_xVersionBox std::unique_ptr<weld::TreeView>
|
||||
slideshow/source/engine/slideshowimpl.cxx:153
|
||||
slideshow/source/engine/slideshowimpl.cxx:156
|
||||
(anonymous namespace)::FrameSynchronization maTimer const canvas::tools::ElapsedTime
|
||||
sot/source/sdstor/ucbstorage.cxx:403
|
||||
UCBStorageStream_Impl m_aKey const class rtl::OString
|
||||
starmath/source/view.cxx:861
|
||||
starmath/source/view.cxx:865
|
||||
SmViewShell_Impl aOpts const class SvtMiscOptions
|
||||
store/source/storbios.cxx:59
|
||||
store/source/storbios.cxx:57
|
||||
OStoreSuperBlock m_aMarked OStoreSuperBlock::L
|
||||
svl/source/crypto/cryptosign.cxx:282
|
||||
(anonymous namespace)::(anonymous) status SECItem
|
||||
@@ -572,7 +574,7 @@ svl/source/misc/strmadpt.cxx:55
|
||||
SvDataPipe_Impl::Page m_aBuffer sal_Int8 [1]
|
||||
svl/source/uno/pathservice.cxx:36
|
||||
PathService m_aOptions const class SvtPathOptions
|
||||
svtools/source/control/tabbar.cxx:210
|
||||
svtools/source/control/tabbar.cxx:212
|
||||
ImplTabBarItem maHelpId const class rtl::OString
|
||||
svtools/source/dialogs/insdlg.cxx:46
|
||||
OleObjectDescriptor cbSize const sal_uInt32
|
||||
@@ -590,9 +592,9 @@ svtools/source/dialogs/insdlg.cxx:52
|
||||
OleObjectDescriptor dwFullUserTypeName sal_uInt32
|
||||
svtools/source/dialogs/insdlg.cxx:53
|
||||
OleObjectDescriptor dwSrcOfCopy sal_uInt32
|
||||
svtools/source/table/gridtablerenderer.cxx:69
|
||||
svt::table::CachedSortIndicator m_sortAscending class BitmapEx
|
||||
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/inc/sdr/overlay/overlayrectangle.hxx:44
|
||||
sdr::overlay::OverlayRectangle mbOverlayState _Bool
|
||||
@@ -600,9 +602,9 @@ svx/source/inc/datanavi.hxx:218
|
||||
svxform::XFormsPage m_aMethodString const class svxform::MethodString
|
||||
svx/source/inc/datanavi.hxx:219
|
||||
svxform::XFormsPage m_aReplaceString const class svxform::ReplaceString
|
||||
svx/source/inc/datanavi.hxx:540
|
||||
svx/source/inc/datanavi.hxx:529
|
||||
svxform::AddSubmissionDialog m_aMethodString const class svxform::MethodString
|
||||
svx/source/inc/datanavi.hxx:541
|
||||
svx/source/inc/datanavi.hxx:530
|
||||
svxform::AddSubmissionDialog m_aReplaceString const class svxform::ReplaceString
|
||||
svx/source/inc/gridcell.hxx:526
|
||||
DbPatternField m_pValueFormatter ::std::unique_ptr< ::dbtools::FormattedColumnValue>
|
||||
@@ -610,11 +612,13 @@ svx/source/inc/gridcell.hxx:527
|
||||
DbPatternField m_pPaintFormatter ::std::unique_ptr< ::dbtools::FormattedColumnValue>
|
||||
svx/source/svdraw/svdpdf.hxx:174
|
||||
ImpSdrPdfImport maDash const class XDash
|
||||
svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx:104
|
||||
textconversiondlgs::DictionaryList m_nSortColumnIndex sal_uInt16
|
||||
sw/inc/acmplwrd.hxx:42
|
||||
SwAutoCompleteWord m_LookupTree const editeng::Trie
|
||||
sw/inc/calc.hxx:197
|
||||
SwCalc m_aSysLocale const class SvtSysLocale
|
||||
sw/inc/hints.hxx:223
|
||||
sw/inc/hints.hxx:230
|
||||
SwAttrSetChg m_bDelSet const _Bool
|
||||
sw/inc/shellio.hxx:147
|
||||
SwReader pStg const tools::SvRef<SotStorage>
|
||||
@@ -632,9 +636,9 @@ sw/source/core/access/accmap.cxx:586
|
||||
SwAccessibleEventMap_Impl maMap std::map<key_type, mapped_type, key_compare>
|
||||
sw/source/core/access/accmap.cxx:626
|
||||
SwAccessibleSelectedParas_Impl maMap std::map<key_type, mapped_type, key_compare>
|
||||
sw/source/core/doc/swstylemanager.cxx:59
|
||||
sw/source/core/doc/swstylemanager.cxx:58
|
||||
SwStyleManager aAutoCharPool class StylePool
|
||||
sw/source/core/doc/swstylemanager.cxx:60
|
||||
sw/source/core/doc/swstylemanager.cxx:59
|
||||
SwStyleManager aAutoParaPool class StylePool
|
||||
sw/source/core/doc/tblrwcl.cxx:83
|
||||
CpyTabFrame::(anonymous) nSize SwTwips
|
||||
@@ -644,9 +648,9 @@ sw/source/core/text/atrhndl.hxx:48
|
||||
SwAttrHandler::SwAttrStack m_pInitialArray class SwTextAttr *[3]
|
||||
sw/source/filter/inc/rtf.hxx:32
|
||||
RTFSurround::(anonymous) nVal sal_uInt8
|
||||
sw/source/ui/dbui/dbinsdlg.cxx:117
|
||||
sw/source/ui/dbui/dbinsdlg.cxx:116
|
||||
DB_Column::(anonymous) pText class rtl::OUString *const
|
||||
sw/source/ui/dbui/dbinsdlg.cxx:119
|
||||
sw/source/ui/dbui/dbinsdlg.cxx:118
|
||||
DB_Column::(anonymous) nFormat const sal_uInt32
|
||||
sw/source/uibase/dbui/mmconfigitem.cxx:107
|
||||
SwMailMergeConfigItem_Impl m_aFemaleGreetingLines std::vector<OUString>
|
||||
@@ -656,7 +660,7 @@ sw/source/uibase/dbui/mmconfigitem.cxx:111
|
||||
SwMailMergeConfigItem_Impl m_aNeutralGreetingLines std::vector<OUString>
|
||||
sw/source/uibase/inc/fldmgr.hxx:78
|
||||
SwInsertField_Data m_aDBDataSource const css::uno::Any
|
||||
toolkit/source/awt/vclxtoolkit.cxx:434
|
||||
toolkit/source/awt/vclxtoolkit.cxx:435
|
||||
(anonymous namespace)::VCLXToolkit mxSelection css::uno::Reference<css::datatransfer::clipboard::XClipboard>
|
||||
ucb/source/ucp/gio/gio_mount.hxx:46
|
||||
OOoMountOperationClass parent_class GMountOperationClass
|
||||
@@ -684,9 +688,9 @@ unoidl/source/sourceprovider-scanner.hxx:249
|
||||
unoidl::detail::SourceProviderAccumulationBasedServiceEntityPad directMandatoryBaseInterfaces std::vector<unoidl::AnnotatedReference>
|
||||
unoidl/source/sourceprovider-scanner.hxx:250
|
||||
unoidl::detail::SourceProviderAccumulationBasedServiceEntityPad directOptionalBaseInterfaces std::vector<unoidl::AnnotatedReference>
|
||||
unoidl/source/unoidl-read.cxx:148
|
||||
unoidl/source/unoidl-read.cxx:146
|
||||
(anonymous namespace)::Entity dependencies std::set<OUString>
|
||||
unoidl/source/unoidl-read.cxx:149
|
||||
unoidl/source/unoidl-read.cxx:147
|
||||
(anonymous namespace)::Entity interfaceDependencies std::set<OUString>
|
||||
unoidl/source/unoidlprovider.cxx:86
|
||||
unoidl::detail::(anonymous namespace)::Memory16 byte const unsigned char [2]
|
||||
@@ -714,17 +718,17 @@ vcl/inc/salwtype.hxx:202
|
||||
SalSurroundingTextSelectionChangeEvent mnEnd const sal_uLong
|
||||
vcl/inc/salwtype.hxx:208
|
||||
SalQueryCharPositionEvent mnCharPos sal_uLong
|
||||
vcl/inc/svdata.hxx:275
|
||||
vcl/inc/svdata.hxx:277
|
||||
ImplSVNWFData mnStatusBarLowerRightOffset int
|
||||
vcl/inc/svdata.hxx:281
|
||||
vcl/inc/svdata.hxx:283
|
||||
ImplSVNWFData mbMenuBarDockingAreaCommonBG _Bool
|
||||
vcl/inc/svdata.hxx:291
|
||||
vcl/inc/svdata.hxx:293
|
||||
ImplSVNWFData mbCenteredTabs _Bool
|
||||
vcl/inc/svdata.hxx:292
|
||||
ImplSVNWFData mbNoActiveTabTextRaise _Bool
|
||||
vcl/inc/svdata.hxx:294
|
||||
ImplSVNWFData mbNoActiveTabTextRaise _Bool
|
||||
vcl/inc/svdata.hxx:296
|
||||
ImplSVNWFData mbProgressNeedsErase _Bool
|
||||
vcl/inc/svdata.hxx:303
|
||||
vcl/inc/svdata.hxx:305
|
||||
ImplSVNWFData mbRolloverMenubar _Bool
|
||||
vcl/inc/toolbox.h:108
|
||||
vcl::ToolBoxLayoutData m_aLineItemIds std::vector<sal_uInt16>
|
||||
@@ -902,51 +906,49 @@ vcl/source/fontsubset/sft.cxx:1049
|
||||
vcl::_subHeader2 entryCount const sal_uInt16
|
||||
vcl/source/fontsubset/sft.cxx:1050
|
||||
vcl::_subHeader2 idDelta const sal_uInt16
|
||||
vcl/source/gdi/dibtools.cxx:52
|
||||
(anonymous namespace)::CIEXYZ aXyzX FXPT2DOT30
|
||||
vcl/source/gdi/dibtools.cxx:53
|
||||
(anonymous namespace)::CIEXYZ aXyzY FXPT2DOT30
|
||||
(anonymous namespace)::CIEXYZ aXyzX FXPT2DOT30
|
||||
vcl/source/gdi/dibtools.cxx:54
|
||||
(anonymous namespace)::CIEXYZ aXyzY FXPT2DOT30
|
||||
vcl/source/gdi/dibtools.cxx:55
|
||||
(anonymous namespace)::CIEXYZ aXyzZ FXPT2DOT30
|
||||
vcl/source/gdi/dibtools.cxx:65
|
||||
(anonymous namespace)::CIEXYZTriple aXyzRed struct (anonymous namespace)::CIEXYZ
|
||||
vcl/source/gdi/dibtools.cxx:66
|
||||
(anonymous namespace)::CIEXYZTriple aXyzGreen struct (anonymous namespace)::CIEXYZ
|
||||
(anonymous namespace)::CIEXYZTriple aXyzRed struct (anonymous namespace)::CIEXYZ
|
||||
vcl/source/gdi/dibtools.cxx:67
|
||||
(anonymous namespace)::CIEXYZTriple aXyzGreen struct (anonymous namespace)::CIEXYZ
|
||||
vcl/source/gdi/dibtools.cxx:68
|
||||
(anonymous namespace)::CIEXYZTriple aXyzBlue struct (anonymous namespace)::CIEXYZ
|
||||
vcl/source/gdi/dibtools.cxx:107
|
||||
(anonymous namespace)::DIBV5Header nV5RedMask sal_uInt32
|
||||
vcl/source/gdi/dibtools.cxx:108
|
||||
(anonymous namespace)::DIBV5Header nV5GreenMask sal_uInt32
|
||||
(anonymous namespace)::DIBV5Header nV5RedMask sal_uInt32
|
||||
vcl/source/gdi/dibtools.cxx:109
|
||||
(anonymous namespace)::DIBV5Header nV5BlueMask sal_uInt32
|
||||
(anonymous namespace)::DIBV5Header nV5GreenMask sal_uInt32
|
||||
vcl/source/gdi/dibtools.cxx:110
|
||||
(anonymous namespace)::DIBV5Header nV5BlueMask sal_uInt32
|
||||
vcl/source/gdi/dibtools.cxx:111
|
||||
(anonymous namespace)::DIBV5Header nV5AlphaMask sal_uInt32
|
||||
vcl/source/gdi/dibtools.cxx:112
|
||||
(anonymous namespace)::DIBV5Header aV5Endpoints struct (anonymous namespace)::CIEXYZTriple
|
||||
vcl/source/gdi/dibtools.cxx:113
|
||||
(anonymous namespace)::DIBV5Header nV5GammaRed sal_uInt32
|
||||
(anonymous namespace)::DIBV5Header aV5Endpoints struct (anonymous namespace)::CIEXYZTriple
|
||||
vcl/source/gdi/dibtools.cxx:114
|
||||
(anonymous namespace)::DIBV5Header nV5GammaGreen sal_uInt32
|
||||
(anonymous namespace)::DIBV5Header nV5GammaRed sal_uInt32
|
||||
vcl/source/gdi/dibtools.cxx:115
|
||||
(anonymous namespace)::DIBV5Header nV5GammaGreen sal_uInt32
|
||||
vcl/source/gdi/dibtools.cxx:116
|
||||
(anonymous namespace)::DIBV5Header nV5GammaBlue sal_uInt32
|
||||
vcl/source/gdi/dibtools.cxx:117
|
||||
(anonymous namespace)::DIBV5Header nV5ProfileData sal_uInt32
|
||||
vcl/source/gdi/dibtools.cxx:118
|
||||
(anonymous namespace)::DIBV5Header nV5ProfileSize sal_uInt32
|
||||
(anonymous namespace)::DIBV5Header nV5ProfileData sal_uInt32
|
||||
vcl/source/gdi/dibtools.cxx:119
|
||||
(anonymous namespace)::DIBV5Header nV5ProfileSize sal_uInt32
|
||||
vcl/source/gdi/dibtools.cxx:120
|
||||
(anonymous namespace)::DIBV5Header nV5Reserved sal_uInt32
|
||||
vcl/source/gdi/pdfwriter_impl.hxx:280
|
||||
vcl::PDFWriterImpl::TransparencyEmit m_pSoftMaskStream std::unique_ptr<SvMemoryStream>
|
||||
vcl/source/treelist/headbar.cxx:38
|
||||
vcl/source/treelist/headbar.cxx:41
|
||||
ImplHeadItem maHelpId const class rtl::OString
|
||||
vcl/source/treelist/headbar.cxx:39
|
||||
vcl/source/treelist/headbar.cxx:42
|
||||
ImplHeadItem maImage const class Image
|
||||
vcl/source/window/menuitemlist.hxx:58
|
||||
MenuItemData aAccessibleName const class rtl::OUString
|
||||
vcl/unx/generic/print/bitmap_gfx.cxx:67
|
||||
psp::HexEncoder mpFileBuffer sal_Char [16400]
|
||||
vcl/unx/gtk3/gtk3gtkinst.cxx:1157
|
||||
vcl/unx/gtk3/gtk3gtkinst.cxx:1165
|
||||
out gpointer *
|
||||
vcl/unx/gtk/a11y/atkwrapper.hxx:49
|
||||
AtkObjectWrapper aParent const AtkObject
|
||||
@@ -982,5 +984,5 @@ xmloff/source/chart/SchXMLChartContext.hxx:58
|
||||
SeriesDefaultsAndStyles maPercentageErrorDefault const css::uno::Any
|
||||
xmloff/source/chart/SchXMLChartContext.hxx:59
|
||||
SeriesDefaultsAndStyles maErrorMarginDefault const css::uno::Any
|
||||
xmloff/source/core/xmlexp.cxx:260
|
||||
xmloff/source/core/xmlexp.cxx:263
|
||||
SvXMLExport_Impl maSaveOptions const class SvtSaveOptions
|
||||
|
@@ -5,9 +5,9 @@ avmedia/source/vlc/wrapper/Types.hxx:44
|
||||
avmedia/source/vlc/wrapper/Types.hxx:45
|
||||
libvlc_event_t::(anonymous union)::(anonymous) dummy2 const char *
|
||||
avmedia/source/vlc/wrapper/Types.hxx:46
|
||||
libvlc_event_t::(anonymous) padding struct (anonymous struct at /media/noel/disk2/libo6/avmedia/source/vlc/wrapper/Types.hxx:43:7)
|
||||
libvlc_event_t::(anonymous) padding struct (anonymous struct at /media/noel/disk2/libo4/avmedia/source/vlc/wrapper/Types.hxx:43:7)
|
||||
avmedia/source/vlc/wrapper/Types.hxx:47
|
||||
libvlc_event_t u union (anonymous union at /media/noel/disk2/libo6/avmedia/source/vlc/wrapper/Types.hxx:41:5)
|
||||
libvlc_event_t u union (anonymous union at /media/noel/disk2/libo4/avmedia/source/vlc/wrapper/Types.hxx:41:5)
|
||||
avmedia/source/vlc/wrapper/Types.hxx:53
|
||||
libvlc_track_description_t psz_name char *
|
||||
basctl/source/inc/dlged.hxx:122
|
||||
@@ -20,6 +20,8 @@ canvas/source/vcl/canvasbitmap.hxx:117
|
||||
vclcanvas::CanvasBitmap mxDevice css::uno::Reference<css::rendering::XGraphicDevice>
|
||||
canvas/source/vcl/impltools.hxx:117
|
||||
vclcanvas::tools::LocalGuard aSolarGuard class SolarMutexGuard
|
||||
canvas/workben/canvasdemo.cxx:82
|
||||
DemoRenderer maColorWhite uno::Sequence<double>
|
||||
chart2/source/controller/dialogs/res_DataLabel.hxx:86
|
||||
chart::DataLabelResources m_xDC_Dial std::unique_ptr<weld::CustomWeld>
|
||||
chart2/source/controller/dialogs/tp_AxisLabel.hxx:60
|
||||
@@ -44,27 +46,27 @@ connectivity/source/drivers/evoab2/NStatement.hxx:57
|
||||
connectivity::evoab::FieldSort bAscending _Bool
|
||||
connectivity/source/drivers/mork/MDatabaseMetaData.hxx:29
|
||||
connectivity::mork::ODatabaseMetaData m_pMetaDataHelper std::unique_ptr<MDatabaseMetaDataHelper>
|
||||
cppu/source/threadpool/threadpool.cxx:355
|
||||
cppu/source/threadpool/threadpool.cxx:354
|
||||
_uno_ThreadPool dummy sal_Int32
|
||||
cppu/source/typelib/typelib.cxx:59
|
||||
cppu/source/typelib/typelib.cxx:56
|
||||
AlignSize_Impl nInt16 sal_Int16
|
||||
cui/source/dialogs/colorpicker.cxx:714
|
||||
cui/source/dialogs/colorpicker.cxx:715
|
||||
cui::ColorPickerDialog m_xColorField std::unique_ptr<weld::CustomWeld>
|
||||
cui/source/dialogs/colorpicker.cxx:716
|
||||
cui/source/dialogs/colorpicker.cxx:717
|
||||
cui::ColorPickerDialog m_xColorPreview std::unique_ptr<weld::CustomWeld>
|
||||
cui/source/inc/align.hxx:92
|
||||
svx::AlignmentTabPage m_xBoxDirection std::unique_ptr<weld::Widget>
|
||||
cui/source/inc/cfg.hxx:573
|
||||
SvxNewToolbarDialog m_xBtnOK std::unique_ptr<weld::Button>
|
||||
cui/source/inc/cuicharmap.hxx:99
|
||||
SvxCharacterMap m_xShowChar std::unique_ptr<weld::CustomWeld>
|
||||
cui/source/inc/cuicharmap.hxx:100
|
||||
SvxCharacterMap m_xRecentCharView std::unique_ptr<weld::CustomWeld> [16]
|
||||
SvxCharacterMap m_xShowChar std::unique_ptr<weld::CustomWeld>
|
||||
cui/source/inc/cuicharmap.hxx:101
|
||||
SvxCharacterMap m_xRecentCharView std::unique_ptr<weld::CustomWeld> [16]
|
||||
cui/source/inc/cuicharmap.hxx:102
|
||||
SvxCharacterMap m_xFavCharView std::unique_ptr<weld::CustomWeld> [16]
|
||||
cui/source/inc/cuicharmap.hxx:103
|
||||
cui/source/inc/cuicharmap.hxx:104
|
||||
SvxCharacterMap m_xShowSetArea std::unique_ptr<weld::CustomWeld>
|
||||
cui/source/inc/cuicharmap.hxx:105
|
||||
cui/source/inc/cuicharmap.hxx:106
|
||||
SvxCharacterMap m_xSearchSetArea std::unique_ptr<weld::CustomWeld>
|
||||
cui/source/inc/cuigaldlg.hxx:251
|
||||
TPGalleryThemeProperties m_xWndPreview std::unique_ptr<weld::CustomWeld>
|
||||
@@ -72,9 +74,9 @@ cui/source/inc/cuigrfflt.hxx:79
|
||||
GraphicFilterDialog mxPreview std::unique_ptr<weld::CustomWeld>
|
||||
cui/source/inc/cuigrfflt.hxx:175
|
||||
GraphicFilterEmboss mxCtlLight std::unique_ptr<weld::CustomWeld>
|
||||
cui/source/inc/cuitabarea.hxx:706
|
||||
SvxColorTabPage m_xCtlPreviewOld std::unique_ptr<weld::CustomWeld>
|
||||
cui/source/inc/cuitabarea.hxx:707
|
||||
SvxColorTabPage m_xCtlPreviewOld std::unique_ptr<weld::CustomWeld>
|
||||
cui/source/inc/cuitabarea.hxx:708
|
||||
SvxColorTabPage m_xCtlPreviewNew std::unique_ptr<weld::CustomWeld>
|
||||
cui/source/inc/FontFeaturesDialog.hxx:51
|
||||
cui::FontFeaturesDialog m_xContentWindow std::unique_ptr<weld::ScrolledWindow>
|
||||
@@ -102,21 +104,23 @@ cui/source/inc/transfrm.hxx:187
|
||||
SvxAngleTabPage m_xCtlRect std::unique_ptr<weld::CustomWeld>
|
||||
cui/source/inc/transfrm.hxx:190
|
||||
SvxAngleTabPage m_xCtlAngle std::unique_ptr<weld::CustomWeld>
|
||||
dbaccess/source/inc/dsntypes.hxx:107
|
||||
dbaccess::ODsnTypeCollection m_xContext css::uno::Reference<css::uno::XComponentContext>
|
||||
dbaccess/source/sdbtools/inc/connectiondependent.hxx:116
|
||||
sdbtools::ConnectionDependentComponent::EntryGuard m_aMutexGuard ::osl::MutexGuard
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:97
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:95
|
||||
dbaui::GeneratedValuesPage m_xAutoIncrementLabel std::unique_ptr<weld::Label>
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:99
|
||||
dbaccess/source/ui/dlg/advancedsettings.hxx:97
|
||||
dbaui::GeneratedValuesPage m_xAutoRetrievingLabel std::unique_ptr<weld::Label>
|
||||
dbaccess/source/ui/dlg/detailpages.hxx:66
|
||||
dbaccess/source/ui/dlg/detailpages.hxx:65
|
||||
dbaui::OCommonBehaviourTabPage m_xAutoRetrievingEnabled std::unique_ptr<weld::CheckButton>
|
||||
dbaccess/source/ui/dlg/detailpages.hxx:67
|
||||
dbaccess/source/ui/dlg/detailpages.hxx:66
|
||||
dbaui::OCommonBehaviourTabPage m_xAutoIncrementLabel std::unique_ptr<weld::Label>
|
||||
dbaccess/source/ui/dlg/detailpages.hxx:68
|
||||
dbaccess/source/ui/dlg/detailpages.hxx:67
|
||||
dbaui::OCommonBehaviourTabPage m_xAutoIncrement std::unique_ptr<weld::Entry>
|
||||
dbaccess/source/ui/dlg/detailpages.hxx:69
|
||||
dbaccess/source/ui/dlg/detailpages.hxx:68
|
||||
dbaui::OCommonBehaviourTabPage m_xAutoRetrievingLabel std::unique_ptr<weld::Label>
|
||||
dbaccess/source/ui/dlg/detailpages.hxx:70
|
||||
dbaccess/source/ui/dlg/detailpages.hxx:69
|
||||
dbaui::OCommonBehaviourTabPage m_xAutoRetrieving std::unique_ptr<weld::Entry>
|
||||
emfio/source/emfuno/xemfparser.cxx:61
|
||||
emfio::emfreader::XEmfParser context_ uno::Reference<uno::XComponentContext>
|
||||
@@ -124,8 +128,6 @@ extensions/source/scanner/scanner.hxx:44
|
||||
ScannerManager maProtector osl::Mutex
|
||||
filter/source/pdf/impdialog.hxx:178
|
||||
ImpPDFTabGeneralPage mxSelectedSheets std::unique_ptr<weld::Label>
|
||||
filter/source/svg/svgfilter.hxx:224
|
||||
SVGFilter mpSdrModel class SdrModel *
|
||||
filter/source/xsltdialog/xmlfiltertabpagebasic.hxx:36
|
||||
XMLFilterTabPageBasic m_xContainer std::unique_ptr<weld::Widget>
|
||||
filter/source/xsltdialog/xmlfiltertabpagexslt.hxx:48
|
||||
@@ -182,18 +184,18 @@ include/sfx2/msg.hxx:135
|
||||
SfxType4 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
|
||||
include/sfx2/msg.hxx:135
|
||||
SfxType4 pType const std::type_info *
|
||||
include/sfx2/msg.hxx:136
|
||||
SfxType5 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
|
||||
include/sfx2/msg.hxx:136
|
||||
SfxType5 aAttrib struct SfxTypeAttrib [5]
|
||||
include/sfx2/msg.hxx:136
|
||||
SfxType5 pType const std::type_info *
|
||||
include/sfx2/msg.hxx:136
|
||||
SfxType5 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
|
||||
include/sfx2/msg.hxx:136
|
||||
SfxType5 nAttribs sal_uInt16
|
||||
include/sfx2/msg.hxx:137
|
||||
SfxType6 pType const std::type_info *
|
||||
include/sfx2/msg.hxx:137
|
||||
SfxType6 nAttribs sal_uInt16
|
||||
include/sfx2/msg.hxx:137
|
||||
SfxType6 pType const std::type_info *
|
||||
include/sfx2/msg.hxx:137
|
||||
SfxType6 aAttrib struct SfxTypeAttrib [6]
|
||||
include/sfx2/msg.hxx:137
|
||||
@@ -206,14 +208,14 @@ include/sfx2/msg.hxx:138
|
||||
SfxType7 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
|
||||
include/sfx2/msg.hxx:138
|
||||
SfxType7 pType const std::type_info *
|
||||
include/sfx2/msg.hxx:139
|
||||
SfxType8 aAttrib struct SfxTypeAttrib [8]
|
||||
include/sfx2/msg.hxx:139
|
||||
SfxType8 pType const std::type_info *
|
||||
include/sfx2/msg.hxx:139
|
||||
SfxType8 nAttribs sal_uInt16
|
||||
include/sfx2/msg.hxx:139
|
||||
SfxType8 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
|
||||
include/sfx2/msg.hxx:139
|
||||
SfxType8 aAttrib struct SfxTypeAttrib [8]
|
||||
include/sfx2/msg.hxx:140
|
||||
SfxType10 pType const std::type_info *
|
||||
include/sfx2/msg.hxx:140
|
||||
@@ -222,28 +224,28 @@ include/sfx2/msg.hxx:140
|
||||
SfxType10 nAttribs sal_uInt16
|
||||
include/sfx2/msg.hxx:140
|
||||
SfxType10 aAttrib struct SfxTypeAttrib [10]
|
||||
include/sfx2/msg.hxx:141
|
||||
SfxType11 nAttribs sal_uInt16
|
||||
include/sfx2/msg.hxx:141
|
||||
SfxType11 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
|
||||
include/sfx2/msg.hxx:141
|
||||
SfxType11 nAttribs sal_uInt16
|
||||
include/sfx2/msg.hxx:141
|
||||
SfxType11 pType const std::type_info *
|
||||
include/sfx2/msg.hxx:141
|
||||
SfxType11 aAttrib struct SfxTypeAttrib [11]
|
||||
include/sfx2/msg.hxx:143
|
||||
SfxType13 pType const std::type_info *
|
||||
SfxType13 aAttrib struct SfxTypeAttrib [13]
|
||||
include/sfx2/msg.hxx:143
|
||||
SfxType13 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
|
||||
include/sfx2/msg.hxx:143
|
||||
SfxType13 aAttrib struct SfxTypeAttrib [13]
|
||||
include/sfx2/msg.hxx:143
|
||||
SfxType13 nAttribs sal_uInt16
|
||||
include/sfx2/msg.hxx:144
|
||||
SfxType14 nAttribs sal_uInt16
|
||||
include/sfx2/msg.hxx:143
|
||||
SfxType13 pType const std::type_info *
|
||||
include/sfx2/msg.hxx:144
|
||||
SfxType14 pType const std::type_info *
|
||||
include/sfx2/msg.hxx:144
|
||||
SfxType14 aAttrib struct SfxTypeAttrib [14]
|
||||
include/sfx2/msg.hxx:144
|
||||
SfxType14 nAttribs sal_uInt16
|
||||
include/sfx2/msg.hxx:144
|
||||
SfxType14 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
|
||||
include/sfx2/msg.hxx:145
|
||||
@@ -254,12 +256,12 @@ include/sfx2/msg.hxx:145
|
||||
SfxType16 nAttribs sal_uInt16
|
||||
include/sfx2/msg.hxx:145
|
||||
SfxType16 aAttrib struct SfxTypeAttrib [16]
|
||||
include/sfx2/msg.hxx:146
|
||||
SfxType17 nAttribs sal_uInt16
|
||||
include/sfx2/msg.hxx:146
|
||||
SfxType17 pType const std::type_info *
|
||||
include/sfx2/msg.hxx:146
|
||||
SfxType17 aAttrib struct SfxTypeAttrib [17]
|
||||
include/sfx2/msg.hxx:146
|
||||
SfxType17 nAttribs sal_uInt16
|
||||
include/sfx2/msg.hxx:146
|
||||
SfxType17 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
|
||||
include/sfx2/msg.hxx:147
|
||||
@@ -270,13 +272,13 @@ include/sfx2/msg.hxx:147
|
||||
SfxType23 pType const std::type_info *
|
||||
include/sfx2/msg.hxx:147
|
||||
SfxType23 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
|
||||
include/svtools/ctrlbox.hxx:301
|
||||
include/svtools/ctrlbox.hxx:300
|
||||
SvtLineListBox m_xLineSetWin std::unique_ptr<weld::CustomWeld>
|
||||
include/svtools/genericunodialog.hxx:218
|
||||
include/svtools/genericunodialog.hxx:216
|
||||
svt::UnoDialogEntryGuard m_aGuard ::osl::MutexGuard
|
||||
include/svtools/PlaceEditDialog.hxx:48
|
||||
include/svtools/PlaceEditDialog.hxx:45
|
||||
PlaceEditDialog m_xBTCancel std::unique_ptr<weld::Button>
|
||||
include/svtools/unoevent.hxx:162
|
||||
include/svtools/unoevent.hxx:163
|
||||
SvEventDescriptor xParentRef css::uno::Reference<css::uno::XInterface>
|
||||
include/svtools/wizardmachine.hxx:119
|
||||
svt::OWizardPage m_xContainer std::unique_ptr<weld::Container>
|
||||
@@ -286,9 +288,11 @@ include/svx/colorwindow.hxx:133
|
||||
ColorWindow mxRecentColorSetWin std::unique_ptr<weld::CustomWeld>
|
||||
include/svx/hdft.hxx:86
|
||||
SvxHFPage m_xBspWin std::unique_ptr<weld::CustomWeld>
|
||||
include/vcl/filter/PngImageReader.hxx:24
|
||||
vcl::PngImageReader mxStatusIndicator css::uno::Reference<css::task::XStatusIndicator>
|
||||
include/vcl/font/Feature.hxx:99
|
||||
vcl::font::Feature m_eType const enum vcl::font::FeatureType
|
||||
include/vcl/uitest/uiobject.hxx:271
|
||||
include/vcl/uitest/uiobject.hxx:272
|
||||
TabPageUIObject mxTabPage VclPtr<class TabPage>
|
||||
include/xmloff/formlayerexport.hxx:173
|
||||
xmloff::OOfficeFormsExport m_pImpl std::unique_ptr<OFormsRootExport>
|
||||
@@ -398,18 +402,18 @@ sal/qa/osl/security/osl_Security.cxx:191
|
||||
osl_Security::getConfigDir bRes1 _Bool
|
||||
sc/qa/unit/ucalc_column.cxx:104
|
||||
aInputs aName const char *
|
||||
sc/source/core/data/document.cxx:1237
|
||||
sc/source/core/data/document.cxx:1239
|
||||
(anonymous namespace)::BroadcastRecalcOnRefMoveHandler aSwitch const sc::AutoCalcSwitch
|
||||
sc/source/core/data/document.cxx:1238
|
||||
sc/source/core/data/document.cxx:1240
|
||||
(anonymous namespace)::BroadcastRecalcOnRefMoveHandler aBulk const class ScBulkBroadcast
|
||||
sc/source/filter/html/htmlpars.cxx:3030
|
||||
sc/source/filter/html/htmlpars.cxx:3002
|
||||
(anonymous namespace)::CSSHandler::MemStr mp const char *
|
||||
sc/source/filter/html/htmlpars.cxx:3031
|
||||
sc/source/filter/html/htmlpars.cxx:3003
|
||||
(anonymous namespace)::CSSHandler::MemStr mn size_t
|
||||
sc/source/filter/inc/namebuff.hxx:79
|
||||
RangeNameBufferWK3::Entry aScAbsName const class rtl::OUString
|
||||
sc/source/filter/inc/sheetdatacontext.hxx:62
|
||||
oox::xls::SheetDataContext aReleaser const class SolarMutexReleaser
|
||||
sc/source/ui/inc/colorformat.hxx:33
|
||||
ScDataBarSettingsDlg mxBtnCancel std::unique_ptr<weld::Button>
|
||||
sc/source/ui/inc/crdlg.hxx:32
|
||||
ScColOrRowDlg m_xBtnRows std::unique_ptr<weld::RadioButton>
|
||||
sc/source/ui/inc/delcodlg.hxx:39
|
||||
@@ -418,25 +422,31 @@ sc/source/ui/inc/docsh.hxx:454
|
||||
ScDocShellModificator mpProtector std::unique_ptr<ScRefreshTimerProtector>
|
||||
sc/source/ui/inc/instbdlg.hxx:66
|
||||
ScInsertTableDlg m_xBtnBehind std::unique_ptr<weld::RadioButton>
|
||||
sd/source/ui/animations/CustomAnimationDialog.cxx:1745
|
||||
sc/source/ui/inc/pvfundlg.hxx:83
|
||||
ScDPFunctionDlg mxBtnOk std::unique_ptr<weld::Button>
|
||||
sc/source/ui/inc/pvfundlg.hxx:123
|
||||
ScDPSubtotalDlg mxBtnOk std::unique_ptr<weld::Button>
|
||||
sc/source/ui/inc/scuiimoptdlg.hxx:62
|
||||
ScImportOptionsDlg m_xBtnOk std::unique_ptr<weld::Button>
|
||||
sd/source/ui/animations/CustomAnimationDialog.cxx:1746
|
||||
sd::CustomAnimationEffectTabPage mxContainer std::unique_ptr<weld::Container>
|
||||
sd/source/ui/animations/CustomAnimationDialog.cxx:1751
|
||||
sd/source/ui/animations/CustomAnimationDialog.cxx:1752
|
||||
sd::CustomAnimationEffectTabPage mxFTSound std::unique_ptr<weld::Label>
|
||||
sd/source/ui/animations/CustomAnimationDialog.cxx:1754
|
||||
sd/source/ui/animations/CustomAnimationDialog.cxx:1755
|
||||
sd::CustomAnimationEffectTabPage mxFTAfterEffect std::unique_ptr<weld::Label>
|
||||
sd/source/ui/animations/CustomAnimationDialog.cxx:2275
|
||||
sd::CustomAnimationDurationTabPage mxContainer std::unique_ptr<weld::Container>
|
||||
sd/source/ui/animations/CustomAnimationDialog.cxx:2276
|
||||
sd::CustomAnimationDurationTabPage mxContainer std::unique_ptr<weld::Container>
|
||||
sd/source/ui/animations/CustomAnimationDialog.cxx:2277
|
||||
sd::CustomAnimationDurationTabPage mxFTStart std::unique_ptr<weld::Label>
|
||||
sd/source/ui/animations/CustomAnimationDialog.cxx:2278
|
||||
sd/source/ui/animations/CustomAnimationDialog.cxx:2279
|
||||
sd::CustomAnimationDurationTabPage mxFTStartDelay std::unique_ptr<weld::Label>
|
||||
sd/source/ui/animations/CustomAnimationDialog.cxx:2641
|
||||
sd::CustomAnimationTextAnimTabPage mxContainer std::unique_ptr<weld::Container>
|
||||
sd/source/ui/animations/CustomAnimationDialog.cxx:2642
|
||||
sd::CustomAnimationTextAnimTabPage mxContainer std::unique_ptr<weld::Container>
|
||||
sd/source/ui/animations/CustomAnimationDialog.cxx:2643
|
||||
sd::CustomAnimationTextAnimTabPage mxFTGroupText std::unique_ptr<weld::Label>
|
||||
sd/source/ui/animations/CustomAnimationDialog.hxx:147
|
||||
sd/source/ui/animations/CustomAnimationDialog.hxx:141
|
||||
sd::SdPropertySubControl mxContainer std::unique_ptr<weld::Container>
|
||||
sd/source/ui/dlg/PhotoAlbumDialog.hxx:60
|
||||
sd/source/ui/dlg/PhotoAlbumDialog.hxx:51
|
||||
sd::SdPhotoAlbumDialog m_xImg std::unique_ptr<weld::CustomWeld>
|
||||
sd/source/ui/inc/custsdlg.hxx:42
|
||||
SdCustomShowDlg m_xBtnHelp std::unique_ptr<weld::Button>
|
||||
@@ -450,23 +460,23 @@ sd/source/ui/remotecontrol/ZeroconfService.hxx:36
|
||||
sd::ZeroconfService port const uint
|
||||
sd/source/ui/slidesorter/view/SlsLayouter.cxx:64
|
||||
sd::slidesorter::view::Layouter::Implementation mpTheme std::shared_ptr<view::Theme>
|
||||
sd/source/ui/table/TableDesignPane.hxx:104
|
||||
sd/source/ui/table/TableDesignPane.hxx:100
|
||||
sd::TableDesignPane aImpl const class sd::TableDesignWidget
|
||||
sd/source/ui/view/DocumentRenderer.cxx:1297
|
||||
sd::DocumentRenderer::Implementation mxObjectShell const SfxObjectShellRef
|
||||
sd/source/ui/view/viewshel.cxx:1208
|
||||
sd/source/ui/view/viewshel.cxx:1201
|
||||
sd::KeepSlideSorterInSyncWithPageChanges m_aDrawLock const sd::slidesorter::view::class SlideSorterView::DrawLock
|
||||
sd/source/ui/view/viewshel.cxx:1209
|
||||
sd/source/ui/view/viewshel.cxx:1202
|
||||
sd::KeepSlideSorterInSyncWithPageChanges m_aModelLock const sd::slidesorter::controller::class SlideSorterController::ModelChangeLock
|
||||
sd/source/ui/view/viewshel.cxx:1210
|
||||
sd/source/ui/view/viewshel.cxx:1203
|
||||
sd::KeepSlideSorterInSyncWithPageChanges m_aUpdateLock const sd::slidesorter::controller::class PageSelector::UpdateLock
|
||||
sd/source/ui/view/viewshel.cxx:1211
|
||||
sd/source/ui/view/viewshel.cxx:1204
|
||||
sd::KeepSlideSorterInSyncWithPageChanges m_aContext const sd::slidesorter::controller::class SelectionObserver::Context
|
||||
sd/source/ui/view/ViewShellBase.cxx:194
|
||||
sd::ViewShellBase::Implementation mpPageCacheManager std::shared_ptr<slidesorter::cache::PageCacheManager>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:264
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:263
|
||||
PDFGrammar::definition value rule<ScannerT>
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:264
|
||||
sdext/source/pdfimport/pdfparse/pdfparse.cxx:263
|
||||
PDFGrammar::definition array rule<ScannerT>
|
||||
sfx2/source/doc/doctempl.cxx:116
|
||||
DocTempl::DocTempl_EntryData_Impl mxObjShell const class SfxObjectShellLock
|
||||
@@ -490,23 +500,23 @@ slideshow/source/engine/opengl/TransitionImpl.cxx:1990
|
||||
(anonymous namespace)::ThreeFloats y GLfloat
|
||||
slideshow/source/engine/opengl/TransitionImpl.cxx:1990
|
||||
(anonymous namespace)::ThreeFloats x GLfloat
|
||||
starmath/inc/dialog.hxx:91
|
||||
starmath/inc/dialog.hxx:90
|
||||
SmFontDialog m_xShowFont std::unique_ptr<weld::CustomWeld>
|
||||
starmath/inc/dialog.hxx:331
|
||||
starmath/inc/dialog.hxx:330
|
||||
SmSymbolDialog m_xSymbolSetDisplayArea std::unique_ptr<weld::CustomWeld>
|
||||
starmath/inc/dialog.hxx:333
|
||||
starmath/inc/dialog.hxx:332
|
||||
SmSymbolDialog m_xSymbolDisplay std::unique_ptr<weld::CustomWeld>
|
||||
starmath/inc/dialog.hxx:410
|
||||
starmath/inc/dialog.hxx:409
|
||||
SmSymDefineDialog m_xOldSymbolDisplay std::unique_ptr<weld::CustomWeld>
|
||||
starmath/inc/dialog.hxx:411
|
||||
starmath/inc/dialog.hxx:410
|
||||
SmSymDefineDialog m_xSymbolDisplay std::unique_ptr<weld::CustomWeld>
|
||||
starmath/inc/dialog.hxx:413
|
||||
starmath/inc/dialog.hxx:412
|
||||
SmSymDefineDialog m_xCharsetDisplayArea std::unique_ptr<weld::CustomWeld>
|
||||
starmath/inc/smmod.hxx:69
|
||||
starmath/inc/smmod.hxx:68
|
||||
SmModule mpLocSymbolData std::unique_ptr<SmLocalizedSymbolData>
|
||||
starmath/inc/view.hxx:218
|
||||
starmath/inc/view.hxx:217
|
||||
SmViewShell maGraphicController const class SmGraphicController
|
||||
starmath/source/accessibility.hxx:271
|
||||
starmath/source/accessibility.hxx:268
|
||||
SmEditSource rEditAcc class SmEditAccessible &
|
||||
svl/source/crypto/cryptosign.cxx:123
|
||||
(anonymous namespace)::(anonymous) extnID const SECItem
|
||||
@@ -520,17 +530,25 @@ svl/source/crypto/cryptosign.cxx:284
|
||||
(anonymous namespace)::(anonymous) failInfo SECItem
|
||||
svtools/source/filter/exportdialog.hxx:125
|
||||
ExportDialog mxEncoding std::unique_ptr<weld::Widget>
|
||||
svx/source/inc/datanavi.hxx:604
|
||||
svx/source/inc/datanavi.hxx:408
|
||||
svxform::AddDataItemDialog m_xDataTypeFT std::unique_ptr<weld::Label>
|
||||
svx/source/inc/datanavi.hxx:591
|
||||
svxform::AddInstanceDialog m_xURLFT std::unique_ptr<weld::Label>
|
||||
svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx:156
|
||||
textconversiondlgs::ChineseDictionaryDialog m_xFT_Term std::unique_ptr<weld::Label>
|
||||
svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx:159
|
||||
textconversiondlgs::ChineseDictionaryDialog m_xFT_Mapping std::unique_ptr<weld::Label>
|
||||
svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx:162
|
||||
textconversiondlgs::ChineseDictionaryDialog m_xFT_Property std::unique_ptr<weld::Label>
|
||||
sw/source/core/crsr/crbm.cxx:66
|
||||
(anonymous namespace)::CursorStateHelper m_aSaveState const class SwCursorSaveState
|
||||
sw/source/core/frmedt/fetab.cxx:79
|
||||
sw/source/core/frmedt/fetab.cxx:78
|
||||
TableWait m_pWait const std::unique_ptr<SwWait>
|
||||
sw/source/core/layout/dbg_lay.cxx:170
|
||||
SwImplEnterLeave nAction const enum DbgAction
|
||||
sw/source/ui/config/mailconfigpage.cxx:56
|
||||
SwTestAccountSettingsDialog m_xEstablish std::unique_ptr<weld::Label>
|
||||
sw/source/ui/config/mailconfigpage.cxx:57
|
||||
SwTestAccountSettingsDialog m_xEstablish std::unique_ptr<weld::Label>
|
||||
sw/source/ui/config/mailconfigpage.cxx:58
|
||||
SwTestAccountSettingsDialog m_xFind std::unique_ptr<weld::Label>
|
||||
sw/source/ui/dbui/mmgreetingspage.hxx:114
|
||||
SwMailBodyDialog m_xBodyFT std::unique_ptr<weld::Label>
|
||||
@@ -586,7 +604,7 @@ sw/source/uibase/inc/uivwimp.hxx:95
|
||||
SwView_Impl xTmpSelDocSh const class SfxObjectShellLock
|
||||
sw/source/uibase/inc/unodispatch.hxx:46
|
||||
SwXDispatchProviderInterceptor::DispatchMutexLock_Impl aGuard const class SolarMutexGuard
|
||||
toolkit/source/awt/stylesettings.cxx:90
|
||||
toolkit/source/awt/stylesettings.cxx:92
|
||||
toolkit::StyleMethodGuard m_aGuard const class SolarMutexGuard
|
||||
unoidl/source/unoidlprovider.cxx:672
|
||||
unoidl::detail::(anonymous namespace)::UnoidlCursor reference1_ rtl::Reference<UnoidlProvider>
|
||||
@@ -608,11 +626,11 @@ vcl/inc/WidgetThemeLibrary.hxx:90
|
||||
vcl::ControlDrawParameters eState enum ControlState
|
||||
vcl/inc/WidgetThemeLibrary.hxx:106
|
||||
vcl::WidgetThemeLibrary_t nSize uint32_t
|
||||
vcl/source/app/salvtables.cxx:668
|
||||
vcl/source/app/salvtables.cxx:744
|
||||
SalInstanceContainer m_xContainer VclPtr<vcl::Window>
|
||||
vcl/source/gdi/jobset.cxx:35
|
||||
ImplOldJobSetupData cDeviceName char [32]
|
||||
vcl/source/gdi/jobset.cxx:36
|
||||
ImplOldJobSetupData cDeviceName char [32]
|
||||
vcl/source/gdi/jobset.cxx:37
|
||||
ImplOldJobSetupData cPortName char [32]
|
||||
vcl/source/uitest/uno/uitest_uno.cxx:35
|
||||
UITestUnoObj mpUITest std::unique_ptr<UITest>
|
||||
@@ -620,13 +638,15 @@ vcl/unx/generic/print/prtsetup.hxx:73
|
||||
RTSPaperPage m_xContainer std::unique_ptr<weld::Widget>
|
||||
vcl/unx/generic/print/prtsetup.hxx:108
|
||||
RTSDevicePage m_xContainer std::unique_ptr<weld::Widget>
|
||||
vcl/unx/gtk3/gtk3gtkinst.cxx:2713
|
||||
vcl/unx/gtk3/gtk3gtkinst.cxx:2668
|
||||
CrippledViewport viewport GtkViewport
|
||||
vcl/unx/gtk3/gtk3gtkinst.cxx:2961
|
||||
GtkInstanceScrolledWindow m_nHAdjustChangedSignalId gulong
|
||||
vcl/unx/gtk/a11y/atkhypertext.cxx:29
|
||||
(anonymous) atk_hyper_link const AtkHyperlink
|
||||
writerfilter/source/ooxml/OOXMLStreamImpl.hxx:43
|
||||
writerfilter::ooxml::OOXMLStreamImpl mxFastParser css::uno::Reference<css::xml::sax::XFastParser>
|
||||
writerperfect/inc/WPFTEncodingDialog.hxx:37
|
||||
writerperfect::WPFTEncodingDialog m_xBtnOk std::unique_ptr<weld::Button>
|
||||
xmlsecurity/inc/certificateviewer.hxx:69
|
||||
CertificateViewerTP mxContainer std::unique_ptr<weld::Container>
|
||||
xmlsecurity/inc/macrosecurity.hxx:69
|
||||
MacroSecurityTP m_xContainer std::unique_ptr<weld::Container>
|
||||
|
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user