/src/libreoffice/include/comphelper/configuration.hxx
Line | Count | Source |
1 | | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
2 | | /* |
3 | | * This file is part of the LibreOffice project. |
4 | | * |
5 | | * This Source Code Form is subject to the terms of the Mozilla Public |
6 | | * License, v. 2.0. If a copy of the MPL was not distributed with this |
7 | | * file, You can obtain one at http://mozilla.org/MPL/2.0/. |
8 | | */ |
9 | | |
10 | | #ifndef INCLUDED_COMPHELPER_CONFIGURATION_HXX |
11 | | #define INCLUDED_COMPHELPER_CONFIGURATION_HXX |
12 | | |
13 | | #include <sal/config.h> |
14 | | |
15 | | #include <optional> |
16 | | #include <string_view> |
17 | | |
18 | | #include <com/sun/star/uno/Any.hxx> |
19 | | #include <com/sun/star/uno/Reference.h> |
20 | | #include <comphelper/comphelperdllapi.h> |
21 | | #include <comphelper/processfactory.hxx> |
22 | | #include <sal/types.h> |
23 | | #include <memory> |
24 | | |
25 | | namespace com::sun::star { |
26 | | namespace configuration { class XReadWriteAccess; } |
27 | | namespace container { |
28 | | class XHierarchicalNameAccess; |
29 | | class XHierarchicalNameReplace; |
30 | | class XNameAccess; |
31 | | class XNameContainer; |
32 | | } |
33 | | namespace uno { class XComponentContext; } |
34 | | } |
35 | | |
36 | | namespace comphelper { |
37 | | |
38 | | namespace detail { class ConfigurationWrapper; } |
39 | | |
40 | | /// A batch of configuration changes that is committed as a whole. |
41 | | /// |
42 | | /// Client code needs to call commit explicitly; otherwise the changes are lost |
43 | | /// when the instance is destroyed. |
44 | | /// |
45 | | /// This is the only class from this header file that client code should use |
46 | | /// directly. |
47 | | class COMPHELPER_DLLPUBLIC ConfigurationChanges { |
48 | | public: |
49 | | static std::shared_ptr<ConfigurationChanges> create( |
50 | | css::uno::Reference<css::uno::XComponentContext> const & context |
51 | | = css::uno::Reference<css::uno::XComponentContext>()); |
52 | | |
53 | | ~ConfigurationChanges(); |
54 | | |
55 | | void commit() const; |
56 | | |
57 | | private: |
58 | | ConfigurationChanges(const ConfigurationChanges&) = delete; |
59 | | ConfigurationChanges& operator=(const ConfigurationChanges&) = delete; |
60 | | |
61 | | SAL_DLLPRIVATE ConfigurationChanges( |
62 | | css::uno::Reference< css::uno::XComponentContext > |
63 | | const & context); |
64 | | |
65 | | SAL_DLLPRIVATE void setPropertyValue( |
66 | | OUString const & path, css::uno::Any const & value) |
67 | | const; |
68 | | |
69 | | SAL_DLLPRIVATE css::uno::Reference< |
70 | | css::container::XHierarchicalNameReplace > |
71 | | getGroup(OUString const & path) const; |
72 | | |
73 | | SAL_DLLPRIVATE |
74 | | css::uno::Reference< css::container::XNameContainer > |
75 | | getSet(OUString const & path) const; |
76 | | |
77 | | css::uno::Reference< |
78 | | css::configuration::XReadWriteAccess > access_; |
79 | | |
80 | | friend class detail::ConfigurationWrapper; |
81 | | }; |
82 | | |
83 | | namespace detail { |
84 | | |
85 | | /// @internal |
86 | | class COMPHELPER_DLLPUBLIC ConfigurationWrapper { |
87 | | public: |
88 | | static ConfigurationWrapper const & get( |
89 | | css::uno::Reference<css::uno::XComponentContext> const & context); |
90 | | |
91 | | bool isReadOnly(OUString const & path) const; |
92 | | |
93 | | css::uno::Any getPropertyValue(std::u16string_view path) const; |
94 | | |
95 | | static void setPropertyValue( |
96 | | std::shared_ptr< ConfigurationChanges > const & batch, |
97 | | OUString const & path, css::uno::Any const & value); |
98 | | |
99 | | css::uno::Any getLocalizedPropertyValue( |
100 | | std::u16string_view path) const; |
101 | | |
102 | | static void setLocalizedPropertyValue( |
103 | | std::shared_ptr< ConfigurationChanges > const & batch, |
104 | | OUString const & path, css::uno::Any const & value); |
105 | | |
106 | | css::uno::Reference< |
107 | | css::container::XHierarchicalNameAccess > |
108 | | getGroupReadOnly(OUString const & path) const; |
109 | | |
110 | | static css::uno::Reference< |
111 | | css::container::XHierarchicalNameReplace > |
112 | | getGroupReadWrite( |
113 | | std::shared_ptr< ConfigurationChanges > const & batch, |
114 | | OUString const & path); |
115 | | |
116 | | css::uno::Reference< css::container::XNameAccess > |
117 | | getSetReadOnly(OUString const & path) const; |
118 | | |
119 | | static css::uno::Reference< css::container::XNameContainer > |
120 | | getSetReadWrite( |
121 | | std::shared_ptr< ConfigurationChanges > const & batch, |
122 | | OUString const & path); |
123 | | |
124 | | std::shared_ptr< ConfigurationChanges > createChanges() const; |
125 | | |
126 | | private: |
127 | | SAL_DLLPRIVATE explicit ConfigurationWrapper( |
128 | | css::uno::Reference<css::uno::XComponentContext> const & context); |
129 | | |
130 | | SAL_DLLPRIVATE ~ConfigurationWrapper(); |
131 | | |
132 | | ConfigurationWrapper(const ConfigurationWrapper&) = delete; |
133 | | ConfigurationWrapper& operator=(const ConfigurationWrapper&) = delete; |
134 | | |
135 | | css::uno::Reference< css::uno::XComponentContext > context_; |
136 | | |
137 | | css::uno::Reference< css::configuration::XReadWriteAccess > access_; |
138 | | // should really be a css.configuration.ReadOnlyAccess (with added |
139 | | // css.beans.XHierarchicalPropertySetInfo), but then |
140 | | // configmgr::Access::asProperty() would report all properties as |
141 | | // READONLY, so isReadOnly() would not work |
142 | | }; |
143 | | |
144 | | /// @internal |
145 | | template< typename T > struct Convert { |
146 | | static css::uno::Any toAny(T const & value) |
147 | 0 | { return css::uno::Any(value); }Unexecuted instantiation: comphelper::detail::Convert<short>::toAny(short const&) Unexecuted instantiation: comphelper::detail::Convert<bool>::toAny(bool const&) Unexecuted instantiation: comphelper::detail::Convert<rtl::OUString>::toAny(rtl::OUString const&) Unexecuted instantiation: comphelper::detail::Convert<int>::toAny(int const&) Unexecuted instantiation: comphelper::detail::Convert<com::sun::star::uno::Sequence<rtl::OUString> >::toAny(com::sun::star::uno::Sequence<rtl::OUString> const&) Unexecuted instantiation: comphelper::detail::Convert<long>::toAny(long const&) Unexecuted instantiation: comphelper::detail::Convert<com::sun::star::uno::Sequence<int> >::toAny(com::sun::star::uno::Sequence<int> const&) Unexecuted instantiation: comphelper::detail::Convert<double>::toAny(double const&) |
148 | | |
149 | | static T fromAny(css::uno::Any const & value) |
150 | 0 | { return value.get< T >(); }Unexecuted instantiation: comphelper::detail::Convert<rtl::OUString>::fromAny(com::sun::star::uno::Any const&) Unexecuted instantiation: comphelper::detail::Convert<bool>::fromAny(com::sun::star::uno::Any const&) Unexecuted instantiation: comphelper::detail::Convert<int>::fromAny(com::sun::star::uno::Any const&) Unexecuted instantiation: comphelper::detail::Convert<long>::fromAny(com::sun::star::uno::Any const&) Unexecuted instantiation: comphelper::detail::Convert<short>::fromAny(com::sun::star::uno::Any const&) Unexecuted instantiation: comphelper::detail::Convert<com::sun::star::uno::Sequence<rtl::OUString> >::fromAny(com::sun::star::uno::Any const&) Unexecuted instantiation: comphelper::detail::Convert<com::sun::star::uno::Sequence<int> >::fromAny(com::sun::star::uno::Any const&) Unexecuted instantiation: comphelper::detail::Convert<double>::fromAny(com::sun::star::uno::Any const&) |
151 | | |
152 | | private: |
153 | | Convert(const Convert&) = delete; |
154 | | Convert& operator=(const Convert&) = delete; |
155 | | |
156 | | Convert() = delete; |
157 | | ~Convert() = delete; |
158 | | }; |
159 | | |
160 | | /// @internal |
161 | | template< typename T > struct Convert< std::optional< T > > |
162 | | { |
163 | 0 | static css::uno::Any toAny(std::optional< T > const & value) { |
164 | 0 | return value |
165 | 0 | ? css::uno::Any(*value) |
166 | 0 | : css::uno::Any(); |
167 | 0 | } Unexecuted instantiation: comphelper::detail::Convert<std::__1::optional<int> >::toAny(std::__1::optional<int> const&) Unexecuted instantiation: comphelper::detail::Convert<std::__1::optional<rtl::OUString> >::toAny(std::__1::optional<rtl::OUString> const&) Unexecuted instantiation: comphelper::detail::Convert<std::__1::optional<bool> >::toAny(std::__1::optional<bool> const&) |
168 | | |
169 | | static std::optional< T > fromAny(css::uno::Any const & value) |
170 | 0 | { |
171 | 0 | return value.hasValue() |
172 | 0 | ? std::optional< T >(value.get< T >()) : std::optional< T >(); |
173 | 0 | } Unexecuted instantiation: comphelper::detail::Convert<std::__1::optional<int> >::fromAny(com::sun::star::uno::Any const&) Unexecuted instantiation: comphelper::detail::Convert<std::__1::optional<rtl::OUString> >::fromAny(com::sun::star::uno::Any const&) Unexecuted instantiation: comphelper::detail::Convert<std::__1::optional<com::sun::star::uno::Sequence<rtl::OUString> > >::fromAny(com::sun::star::uno::Any const&) Unexecuted instantiation: comphelper::detail::Convert<std::__1::optional<bool> >::fromAny(com::sun::star::uno::Any const&) |
174 | | |
175 | | private: |
176 | | Convert(const Convert&) = delete; |
177 | | Convert& operator=(const Convert&) = delete; |
178 | | |
179 | | Convert() = delete; |
180 | | ~Convert() = delete; |
181 | | }; |
182 | | |
183 | | } |
184 | | |
185 | | // Avoid using the config layer and rely on defaults which is only useful |
186 | | // for special test tool targets (typically fuzzing) where start-up speed |
187 | | // is of the essence |
188 | | #if defined(FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION) |
189 | 44.3M | constexpr bool IsFuzzing() { return true; } |
190 | | #else |
191 | | COMPHELPER_DLLPUBLIC bool IsFuzzing(); |
192 | | #endif |
193 | | COMPHELPER_DLLPUBLIC void EnableFuzzing(); |
194 | | |
195 | | /// A type-safe wrapper around a (non-localized) configuration property. |
196 | | /// |
197 | | /// Automatically generated headers for the various configuration properties |
198 | | /// derive from this template and make available its member functions to access |
199 | | /// each given configuration property. |
200 | | template< typename T, typename U > struct ConfigurationProperty |
201 | | { |
202 | | /// Get the read-only status of the given (non-localized) configuration |
203 | | /// property. |
204 | | static bool isReadOnly( |
205 | | css::uno::Reference<css::uno::XComponentContext> const & context |
206 | | = css::uno::Reference<css::uno::XComponentContext>()) |
207 | 0 | { |
208 | 0 | return detail::ConfigurationWrapper::get(context).isReadOnly(T::path()); |
209 | 0 | } Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::VCL::VCLSettings::PrintDialog::Collate, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Formula::Load::OOXMLRecalcMode, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Formula::Load::RecalcOptimalRowHeightMode, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::Document::CreateBackup, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::Document::BackupIntoDocumentFolder, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::Document::PrettyPrinting, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::Document::WarnAlienFormat, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Recovery::AutoSave::Enabled, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Recovery::AutoSave::TimeIntervall, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Recovery::AutoSave::UserAutoSaveEnabled, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::Document::EditProperty, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::URL::Internet, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::URL::FileSystem, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Setup::Product::LastTimeGetInvolvedShown, long>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Setup::Product::LastTimeDonateShown, long>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::I18N::CJK::CJKFont, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::I18N::CJK::VerticalText, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::I18N::CJK::AsianTypography, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::I18N::CJK::JapaneseFind, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::I18N::CJK::Ruby, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::I18N::CJK::ChangeCaseMap, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::I18N::CJK::DoubleLines, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::SymbolSet, short>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Writer::Grid::Option::SnapToGrid, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::WriterWeb::Grid::Option::SnapToGrid, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Grid::Option::SnapToGrid, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Grid::Option::SnapToGrid, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Grid::Option::SnapToGrid, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Writer::Grid::Option::Synchronize, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::WriterWeb::Grid::Option::Synchronize, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Grid::Option::Synchronize, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Grid::Option::Synchronize, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Grid::Option::Synchronize, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Writer::Grid::Option::VisibleGrid, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::WriterWeb::Grid::Option::VisibleGrid, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Grid::Option::VisibleGrid, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Grid::Option::VisibleGrid, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Grid::Option::VisibleGrid, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Writer::Grid::Resolution::XAxis, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::WriterWeb::Grid::Resolution::XAxis, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Grid::Resolution::XAxis::Metric, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Grid::Resolution::XAxis::NonMetric, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Grid::Resolution::XAxis::Metric, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Grid::Resolution::XAxis::NonMetric, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Grid::Resolution::XAxis::Metric, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Grid::Resolution::XAxis::NonMetric, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Writer::Grid::Resolution::YAxis, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::WriterWeb::Grid::Resolution::YAxis, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Grid::Resolution::YAxis::Metric, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Grid::Resolution::YAxis::NonMetric, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Grid::Resolution::YAxis::Metric, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Grid::Resolution::YAxis::NonMetric, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Grid::Resolution::YAxis::Metric, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Grid::Resolution::YAxis::NonMetric, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Writer::Grid::Subdivision::XAxis, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::WriterWeb::Grid::Subdivision::XAxis, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Grid::Subdivision::XAxis, double>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Grid::Subdivision::XAxis, double>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Grid::Subdivision::XAxis, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Writer::Grid::Subdivision::YAxis, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::WriterWeb::Grid::Subdivision::YAxis, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Grid::Subdivision::YAxis, double>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Grid::Subdivision::YAxis, double>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Grid::Subdivision::YAxis, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Snap::Position::RotatingValue, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Snap::Position::RotatingValue, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::SecureURL, com::sun::star::uno::Sequence<rtl::OUString> >::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::WarnSaveOrSendDoc, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::WarnSignDoc, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::WarnPrintDoc, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::WarnCreatePDF, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::RemovePersonalInfoOnSaving, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::KeepRedlineInfoOnSaving, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::KeepDocUserInfoOnSaving, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::KeepNoteAuthorDateInfoOnSaving, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::KeepDocVersionInfoOnSaving, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::KeepDocPrinterSettingsOnSaving, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::RecommendPasswordProtection, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::MacroSecurityLevel, int>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::HyperlinksWithCtrlClick, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::BlockUntrustedRefererLinks, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::DisableActiveContent, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::DisableOLEAutomation, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Math::Print::Size, short>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Math::Print::ZoomFactor, short>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Math::Misc::SmEditWindowZoomFactor, short>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Math::Print::Title, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Math::Print::FormulaText, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Math::Print::Frame, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Math::Misc::InlineEditEnable, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Math::Misc::IgnoreSpacesRight, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Math::LoadSave::IsSaveOnlyUsedSymbols, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Math::Misc::AutoCloseBrackets, bool>::isReadOnly(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) |
210 | | |
211 | | /// Get the value of the given (non-localized) configuration property. |
212 | | /// |
213 | | /// For nillable properties, U is of type std::optional<U'>. |
214 | | static U get( |
215 | | css::uno::Reference<css::uno::XComponentContext> const & context |
216 | | = css::uno::Reference<css::uno::XComponentContext>()) |
217 | 1.75M | { |
218 | 1.75M | if (comphelper::IsFuzzing()) |
219 | 1.75M | return U(); |
220 | | // Folding this into one statement causes a bogus error at least with |
221 | | // Red Hat GCC 4.6.2-1: |
222 | 0 | css::uno::Any a( |
223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( |
224 | 0 | T::path())); |
225 | 0 | return detail::Convert< U >::fromAny(a); |
226 | 1.75M | } Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Help::HelpRootURL, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::I18N::CTL::CTLFont, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::I18N::CTL::CTLSequenceChecking, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::I18N::CTL::CTLSequenceCheckingRestricted, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::I18N::CTL::CTLSequenceCheckingTypeAndReplace, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::VCL::ReduceTransparencyMinArea, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Cache::Font::TextRunsCacheSize, long>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Cache::Font::GlyphsCacheSize, long>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Cache::GraphicManager::GraphicMemoryLimit, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Cache::GraphicManager::GraphicAllowedIdleTime, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Cache::GraphicManager::GraphicSwappingEnabled, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::View::Menu::DontHideDisabledEntry, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::ScreenshotMode, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::VCL::VCLSettings::DesktopManagement::DisablePrinting, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Accessibility::AllowAnimatedOthers, short>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Accessibility::AllowAnimatedGraphic, short>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Accessibility::AllowAnimatedText, short>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Appearance::ApplicationAppearance, short>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::SymbolStyle, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Appearance::LibreOfficeTheme, short>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Common::Appearance::UseOnlyWhiteDocBackground, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 45.8k | { | 218 | 45.8k | if (comphelper::IsFuzzing()) | 219 | 45.8k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 45.8k | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Appearance::UseBmpForAppBack, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Appearance::AppBackBmpFileName, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Appearance::AppBackBmpDrawType, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::FontsDontUseUnderlineMetrics, com::sun::star::uno::Sequence<rtl::OUString> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::FontsUseWinMetrics, com::sun::star::uno::Sequence<rtl::OUString> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::VCL::PDFExportImageCacheSize, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Accessibility::HighContrast, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::UseVerticalNotebookbar, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::View::NewDocumentHandling::ForceFocusAndToFront, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::VCL::VCLSettings::Menu::SuppressAccelerators, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::DateFormat::TwoDigitYear, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::Document::GeneratorOverride, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::PackageKit::EnableFontInstallation, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::VCL::VCLSettings::PrintDialog::LastPrinter, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Print::Dialog::RangeSectionExpanded, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Print::Dialog::LayoutSectionExpanded, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::VCL::VCLSettings::PrintDialog::LastPage, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::VCL::VCLSettings::PrintDialog::WindowState, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::VCL::VCLSettings::PrintDialog::Collate, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::VCL::VCLSettings::PrintDialog::CollateSingleJobs, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::VCL::VCLSettings::PrintDialog::HasPreview, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Drawinglayer::SnapHorVerLinesToDiscrete, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Drawinglayer::AntiAliasing, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Setup::L10N::ooSetupSystemLocale, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 4.11k | { | 218 | 4.11k | if (comphelper::IsFuzzing()) | 219 | 4.11k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 4.11k | } |
comphelper::ConfigurationProperty<officecfg::System::L10N::Locale, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 4.11k | { | 218 | 4.11k | if (comphelper::IsFuzzing()) | 219 | 4.11k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 4.11k | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::System::L10N::SystemLocale, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::I18N::CTL::CTLCursorMovement, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::I18N::CTL::CTLTextNumerals, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Setup::Product::ooSetupVersionAboutBox, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Setup::Product::ooSetupVersionAboutBoxSuffix, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Setup::L10N::ooSetupCurrency, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Setup::L10N::ooLocale, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 48.9k | { | 218 | 48.9k | if (comphelper::IsFuzzing()) | 219 | 48.9k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 48.9k | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Setup::Product::ooSetupExtension, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Setup::Product::ooName, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 7.35k | { | 218 | 7.35k | if (comphelper::IsFuzzing()) | 219 | 7.35k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 7.35k | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Setup::Product::ooSetupVersion, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Setup::Product::ooVendor, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Linguistic::General::DefaultLocale, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Filter::Import::VBA::Load, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Filter::Import::VBA::Save, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Filter::Import::VBA::Executable, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Filter::Import::VBA::UseExport, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::Microsoft::Export::EnableExcelPreview, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::URL::Internet, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::URL::FileSystem, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::Microsoft::Import::MathTypeToMath, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 28.7k | { | 218 | 28.7k | if (comphelper::IsFuzzing()) | 219 | 28.7k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 28.7k | } |
comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::Microsoft::Import::WinWordToWriter, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 28.7k | { | 218 | 28.7k | if (comphelper::IsFuzzing()) | 219 | 28.7k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 28.7k | } |
comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::Microsoft::Import::PowerPointToImpress, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 28.7k | { | 218 | 28.7k | if (comphelper::IsFuzzing()) | 219 | 28.7k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 28.7k | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::HTML::Export::LocalGraphic, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::HTML::Import::FontSize::Size_1, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 28.3k | { | 218 | 28.3k | if (comphelper::IsFuzzing()) | 219 | 28.3k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 28.3k | } |
comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::HTML::Import::FontSize::Size_2, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 28.3k | { | 218 | 28.3k | if (comphelper::IsFuzzing()) | 219 | 28.3k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 28.3k | } |
comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::HTML::Import::FontSize::Size_3, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 28.3k | { | 218 | 28.3k | if (comphelper::IsFuzzing()) | 219 | 28.3k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 28.3k | } |
comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::HTML::Import::FontSize::Size_4, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 28.3k | { | 218 | 28.3k | if (comphelper::IsFuzzing()) | 219 | 28.3k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 28.3k | } |
comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::HTML::Import::FontSize::Size_5, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 28.3k | { | 218 | 28.3k | if (comphelper::IsFuzzing()) | 219 | 28.3k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 28.3k | } |
comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::HTML::Import::FontSize::Size_6, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 28.3k | { | 218 | 28.3k | if (comphelper::IsFuzzing()) | 219 | 28.3k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 28.3k | } |
comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::HTML::Import::FontSize::Size_7, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 28.3k | { | 218 | 28.3k | if (comphelper::IsFuzzing()) | 219 | 28.3k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 28.3k | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::HTML::Import::NumbersEnglishUS, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Filter::Export::MS_Excel::TruncateLongSheetNames, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::Microsoft::Export::MathToMathType, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::Microsoft::Export::WriterToWinWord, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::Microsoft::Export::CalcToExcel, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::Microsoft::Export::ImpressToPowerPoint, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Calc::Formula::Load::OOXMLRecalcMode, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 4.03k | { | 218 | 4.03k | if (comphelper::IsFuzzing()) | 219 | 4.03k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 4.03k | } |
comphelper::ConfigurationProperty<officecfg::Office::Common::Print::Warning::PaperOrientation, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 5.24k | { | 218 | 5.24k | if (comphelper::IsFuzzing()) | 219 | 5.24k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 5.24k | } |
comphelper::ConfigurationProperty<officecfg::Office::Common::Print::Warning::PaperSize, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 5.24k | { | 218 | 5.24k | if (comphelper::IsFuzzing()) | 219 | 5.24k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 5.24k | } |
comphelper::ConfigurationProperty<officecfg::Office::Common::Print::Warning::NotFound, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 5.24k | { | 218 | 5.24k | if (comphelper::IsFuzzing()) | 219 | 5.24k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 5.24k | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Content::Display::NoteAuthor, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::ExperimentalMode, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Calc::Formula::Load::RecalcOptimalRowHeightMode, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 11.7k | { | 218 | 11.7k | if (comphelper::IsFuzzing()) | 219 | 11.7k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 11.7k | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Formula::Load::ODFRecalcMode, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::DisableActiveContent, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 178k | { | 218 | 178k | if (comphelper::IsFuzzing()) | 219 | 178k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 178k | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::ShowLinkWarningDialog, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Undo::Steps, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Formula::Calculation::OpenCLSubsetOnly, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Formula::Calculation::OpenCLMinimumDataSize, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Input::SelectRangeBeforeAll, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Input::UseScrollLock, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Drawinglayer::OverlayBuffer_Calc, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Drawinglayer::PaintBuffer_Calc, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::UserColors::PaletteName, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Content::Display::ColumnRowHighlighting, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Content::Display::EditCellBackgroundHighlighting, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Accessibility::IsAutomaticFontColor, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Content::Display::NoteIndicator, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Input::WrapNextPrevSheetTab, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Layout::Other::TabbarInlineWithScrollbar, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Compatibility::MergeCells::EmptyMergedCells, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Compatibility::MergeCells::ShowDialog, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Dialogs::ClipboardHTMLImport::Language, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Dialogs::ClipboardHTMLImport::DetectSpecialNumbers, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Dialogs::ClipboardHTMLImport::DetectScientificNumbers, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::Document::PrettyPrinting, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::DataStream::UpdateTimeout, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Misc::HandleDuplicateRecords::DataIncludesHeaders, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Misc::HandleDuplicateRecords::RemoveDuplicateRows, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Misc::HandleDuplicateRecords::RemoveRecords, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Common::Drawinglayer::RenderSimpleTextDirect, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 125 | { | 218 | 125 | if (comphelper::IsFuzzing()) | 219 | 125 | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 125 | } |
comphelper::ConfigurationProperty<officecfg::Office::Common::Drawinglayer::RenderDecoratedTextDirect, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 125 | { | 218 | 125 | if (comphelper::IsFuzzing()) | 219 | 125 | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 125 | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Drawinglayer::QuadraticFormControlRenderLimit, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::Document::CreateBackup, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::Document::BackupIntoDocumentFolder, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::Document::WarnAlienFormat, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Recovery::AutoSave::Enabled, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Recovery::AutoSave::TimeIntervall, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Recovery::AutoSave::UserAutoSaveEnabled, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::Document::EditProperty, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Inet::Settings::ooInetHTTPProxyName, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Inet::Settings::ooInetHTTPProxyPort, std::__1::optional<int> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Inet::Settings::ooInetNoProxy, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Security::Hyperlinks::Open, std::__1::optional<int> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::PackageKit::EnableBaseInstallation, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Menus::SendFeedbackURL, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Menus::QA_URL, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Menus::DocumentationURL, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Menus::GetInvolvedURL, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Menus::DonationURL, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Menus::ReleaseNotesURL, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Menus::CreditsURL, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Menus::HyphenationMissingURL, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::DisableUICustomization, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Path::Current::Help, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Help::System, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Help::BuiltInHelpNotInstalledPopUp, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::History::RecentDocsThumbnail, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::UseSystemFileDialog, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::ViewerAppMode, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 14.7k | { | 218 | 14.7k | if (comphelper::IsFuzzing()) | 219 | 14.7k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 14.7k | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::UI::Infobar::Enabled::Readonly, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::UI::Infobar::Enabled::Signature, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::UI::Infobar::Enabled::Donate, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::UI::Infobar::Enabled::GetInvolved, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::UI::Infobar::Enabled::HyphenationMissing, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::UI::Infobar::Enabled::WhatsNew, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::UI::Infobar::Enabled::HiddenTrackChanges, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::UI::Infobar::Enabled::MacrosDisabled, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::WarnSaveOrSendDoc, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::WarnSignDoc, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::WarnPrintDoc, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::WarnCreatePDF, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::PasswordPolicy, std::__1::optional<rtl::OUString> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::TempFileNextToLocalFile, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::ImplicitScriptSign, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::AllowEditReadonlyDocs, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::Document::GenerateThumbnail, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::Document::Unpacked, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::LoadExoticFileFormats, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::CheckDocumentEvents, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::UI::ToolbarMode::ActiveWriter, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::UI::ToolbarMode::ActiveCalc, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::UI::ToolbarMode::ActiveImpress, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::UI::ToolbarMode::ActiveDraw, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::AllowedDocumentEventURLs, std::__1::optional<com::sun::star::uno::Sequence<rtl::OUString> > >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::UI::Sidebar::General::MinimumWidth, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::UI::Sidebar::General::MaximumWidth, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::UI::Sidebar::Content::LastActiveDeck, com::sun::star::uno::Sequence<rtl::OUString> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::SidebarIconSize, short>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Classification::Policy, short>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::AllowOverrideLocking, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::MaxOpenDocuments, std::__1::optional<int> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::ShowTipOfTheDay, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::LastTipOfTheDayShown, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Passwords::HasMaster, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Passwords::StorageVersion, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Setup::Product::WhatsNew, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Setup::Product::WhatsNewDialog, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Setup::Product::LastTimeGetInvolvedShown, long>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Setup::Product::LastTimeDonateShown, long>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::MacroRecorderMode, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::Document::AlwaysSaveAs, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Common::Print::PrintingModifiesDocument, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 3.67k | { | 218 | 3.67k | if (comphelper::IsFuzzing()) | 219 | 3.67k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 3.67k | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Help::StartCenter::StartCenterThumbnailsBackgroundColor, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Help::StartCenter::StartCenterThumbnailsTextColor, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::I18N::CJK::CJKFont, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::UI::ColorScheme::CurrentColorScheme, std::__1::optional<rtl::OUString> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::HTML::Export::Browser, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::SymbolSet, short>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Common::Drawinglayer::StripeColorA, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 3 | { | 218 | 3 | if (comphelper::IsFuzzing()) | 219 | 3 | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 3 | } |
comphelper::ConfigurationProperty<officecfg::Office::Common::Drawinglayer::StripeColorB, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 3 | { | 218 | 3 | if (comphelper::IsFuzzing()) | 219 | 3 | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 3 | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Drawinglayer::TransparentSelectionPercent, short>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Drawinglayer::SelectionMaximumLuminancePercent, short>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Font::View::ShowFontBoxWYSIWYG, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::System::L10N::UILocale, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::PackageKit::EnableLangpackInstallation, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::FindReplaceRememberedSearches, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Drawinglayer::TransparentSelection, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Common::Drawinglayer::StripeLength, short>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 3 | { | 218 | 3 | if (comphelper::IsFuzzing()) | 219 | 3 | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 3 | } |
comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::FreehandThresholdPixels, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 345k | { | 218 | 345k | if (comphelper::IsFuzzing()) | 219 | 345k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 345k | } |
comphelper::ConfigurationProperty<officecfg::Office::Common::Drawinglayer::SolidDragCreate, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 4 | { | 218 | 4 | if (comphelper::IsFuzzing()) | 219 | 4 | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 4 | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AsianLayout::CompressCharacterDistance, short>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Drawinglayer::PaintBuffer, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Drawinglayer::OverlayBuffer, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::UserColors::CustomColor, com::sun::star::uno::Sequence<int> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::UserColors::CustomColorName, com::sun::star::uno::Sequence<rtl::OUString> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::UserColors::RecentColor, com::sun::star::uno::Sequence<int> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::UserColors::RecentColorName, com::sun::star::uno::Sequence<rtl::OUString> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::ODF::DefaultVersion, short>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::SecureURL, com::sun::star::uno::Sequence<rtl::OUString> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::MacroSecurityLevel, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::DisableMacrosExecution, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::RemoveEditingTimeOnSaving, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::RemovePersonalInfoOnSaving, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::KeepRedlineInfoOnSaving, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::KeepDocUserInfoOnSaving, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::KeepNoteAuthorDateInfoOnSaving, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::KeepDocVersionInfoOnSaving, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::KeepDocPrinterSettingsOnSaving, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::RecommendPasswordProtection, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::HyperlinksWithCtrlClick, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::BlockUntrustedRefererLinks, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::DisableOLEAutomation, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::UseDocumentSystemFileLocking, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::Document::LoadPrinter, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::Graphic::AddReplacementImages, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::Microsoft::Import::SmartArtToShapes, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 285 | { | 218 | 285 | if (comphelper::IsFuzzing()) | 219 | 285 | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 285 | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Drawinglayer::Quadratic3DRenderLimit, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Recovery::AutoSave::MinSpaceDocSave, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Recovery::AutoSave::MinSpaceConfigSave, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Recovery::RecoveryInfo::SessionData, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Recovery::RecoveryInfo::Crashed, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Compatibility::View::MSCompatibleFormsMenu, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Load::DetectWebDAVRedirection, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Paths::Variables::Work, std::__1::optional<rtl::OUString> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 48.9k | { | 218 | 48.9k | if (comphelper::IsFuzzing()) | 219 | 48.9k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 48.9k | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::OfferSafeMode, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Scripting::Basic::Compatibility::UseLibreOffice6FloatingPointConversion, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::BulletsNumbering::DefaultBullets, com::sun::star::uno::Sequence<rtl::OUString> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::BulletsNumbering::DefaultBulletsFonts, com::sun::star::uno::Sequence<rtl::OUString> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::FavoriteCharacters::FavoriteCharacterList, com::sun::star::uno::Sequence<rtl::OUString> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::FavoriteCharacters::FavoriteCharacterFontList, com::sun::star::uno::Sequence<rtl::OUString> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Passwords::TrySystemCredentialsFirst, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Compatibility::View::ClockwisePieChartDirection, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Compatibility::View::ReverseXAxisOrientationDoughnutChart, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Layout::Other::MeasureUnit::Metric, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Layout::Other::MeasureUnit::NonMetric, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Compatibility::View::ReverseSeriesOrderAreaAndNetChart, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Chart::ErrorProperties::ErrorRectangle, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::Microsoft::Import::ExcelToCalc, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 25.8k | { | 218 | 25.8k | if (comphelper::IsFuzzing()) | 219 | 25.8k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 25.8k | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::Microsoft::Import::VisioToDraw, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::Adobe::Import::PDFToDraw, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Canvas::ForceSafeServiceImpl, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 4 | { | 218 | 4 | if (comphelper::IsFuzzing()) | 219 | 4 | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 4 | } |
comphelper::ConfigurationProperty<officecfg::Office::Canvas::UseAntialiasingCanvas, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 4 | { | 218 | 4 | if (comphelper::IsFuzzing()) | 219 | 4 | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 4 | } |
comphelper::ConfigurationProperty<officecfg::Office::Canvas::UseAcceleratedCanvas, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 4 | { | 218 | 4 | if (comphelper::IsFuzzing()) | 219 | 4 | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 4 | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::TSAURLs, std::__1::optional<com::sun::star::uno::Sequence<rtl::OUString> > >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::StylesAndFormatting::Preview, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::Microsoft::Import::ForceImportWWFieldsAsGenericFields, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 18.2k | { | 218 | 18.2k | if (comphelper::IsFuzzing()) | 219 | 18.2k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 18.2k | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Writer::FormLetter::ConvertToTextOnlyMMFields, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Writer::Table::Change::ApplyTableAutoFormat, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Writer::Content::Display::ShowWarningHiddenSection, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Writer::Content::Display::ShowWordSpacingIndicator, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 174k | { | 218 | 174k | if (comphelper::IsFuzzing()) | 219 | 174k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 174k | } |
comphelper::ConfigurationProperty<officecfg::Office::Writer::Comparison::DisplayMovedTextInGreen, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 50 | { | 218 | 50 | if (comphelper::IsFuzzing()) | 219 | 50 | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 50 | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Writer::Comparison::DisplayChangedParagraphNumbering, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Accessibility::OnlineAccessibilityCheck, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Accessibility::IsForPagePreviews, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::Microsoft::Export::CharBackgroundToHighlighting, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Writer::WordCount::AdditionalSeparators, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Common::Accessibility::IsSelectionInReadonly, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 64.2k | { | 218 | 64.2k | if (comphelper::IsFuzzing()) | 219 | 64.2k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 64.2k | } |
comphelper::ConfigurationProperty<officecfg::Office::Writer::FilterFlags::ASCII::IncludeHiddenText, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 128k | { | 218 | 128k | if (comphelper::IsFuzzing()) | 219 | 128k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 128k | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Writer::Filter::Import::HTML::IgnoreComments, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::HTML::Import::UnknownTag, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::HTML::Import::FontSetting, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::HTML::Export::Basic, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::HTML::Export::PrintLayout, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Writer::FilterFlags::HTML::IncludeHiddenText, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Writer::FilterFlags::Markdown::IncludeHiddenText, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Writer::Filter::Import::VBA::Save, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Security::HiddenContent::RemoveHiddenContent, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Load::DisableBuiltinStyles, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Writer::Cursor::Option::SelectPastedAnchoredObject, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Writer::Notes::ShowAnkor, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::QueryDeleteAllComments, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Writer::Notes::DisplayWidthFactor, double>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 895 | { | 218 | 895 | if (comphelper::IsFuzzing()) | 219 | 895 | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 895 | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Linguistic::Translation::Deepl::ApiURL, std::__1::optional<rtl::OUString> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Linguistic::Translation::Deepl::AuthKey, std::__1::optional<rtl::OUString> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Common::Load::ViewPositionForAnyUser, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 3.67k | { | 218 | 3.67k | if (comphelper::IsFuzzing()) | 219 | 3.67k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 3.67k | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::QueryShowFieldName, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::QuerySetInsMode, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::DocumentTitle, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::DocumentLanguage, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::DocumentBackground, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::DocumentStyleLanguage, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::LinkedGraphic, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::NoAltOleObj, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::NoAltGraphicObj, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::NoAltShapeObj, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::TableMergeSplit, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::TextNewLines, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::TextSpaces, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::TextTabs, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::TextEmptyNums, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::TableFormattings, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::DirectFormattings, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::HyperlinkText, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::HyperlinkShort, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::HyperlinkNoName, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::LinkInHeaderOrFooter, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::FakeFootnotes, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::FakeCaptions, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::ManualNumbering, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::TextContrast, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::TextBlinking, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::HeadingNotInOrder, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::NonInteractiveForms, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::Floatingtext, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::HeadingTable, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::HeadingStart, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::HeadingOrder, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::ContentControl, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::AvoidFootnotes, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::AvoidEndnotes, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::AccessibilityIssues::FontWorks, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Drawinglayer::OverlayBuffer_Writer, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Drawinglayer::OverlayBuffer_DrawImpress, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Font::SourceViewFont::FontName, std::__1::optional<rtl::OUString> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Font::SourceViewFont::FontHeight, short>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Compatibility::View::AllowCommentsInFootnotes, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::Microsoft::Import::ImportWWFieldsAsEnhancedFields, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 45.1k | { | 218 | 45.1k | if (comphelper::IsFuzzing()) | 219 | 45.1k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 45.1k | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Writer::Filter::Import::DOCX::ImportComboBoxAsDropDown, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Security::Net::AllowInsecureProtocols, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Classification::IntellectualPropertyTextInputIsFreeForm, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Classification::IntellectualPropertySectionExpanded, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::Microsoft::Export::EnableWordPreview, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Common::Load::UserDefinedSettings, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 820 | { | 218 | 820 | if (comphelper::IsFuzzing()) | 219 | 820 | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 820 | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Misc::TextObject::ShowBoundary, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Impress::Misc::SorterSlidesPerRow, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 8.61k | { | 218 | 8.61k | if (comphelper::IsFuzzing()) | 219 | 8.61k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 8.61k | } |
comphelper::ConfigurationProperty<officecfg::Office::Impress::Layout::Display::Ruler, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 8.61k | { | 218 | 8.61k | if (comphelper::IsFuzzing()) | 219 | 8.61k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 8.61k | } |
comphelper::ConfigurationProperty<officecfg::Office::Impress::Snap::Position::Rotating, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 8.61k | { | 218 | 8.61k | if (comphelper::IsFuzzing()) | 219 | 8.61k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 8.61k | } |
comphelper::ConfigurationProperty<officecfg::Office::Impress::Snap::Position::ExtendEdges, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 8.61k | { | 218 | 8.61k | if (comphelper::IsFuzzing()) | 219 | 8.61k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 8.61k | } |
comphelper::ConfigurationProperty<officecfg::Office::Impress::Snap::Object::PageMargin, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 8.61k | { | 218 | 8.61k | if (comphelper::IsFuzzing()) | 219 | 8.61k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 8.61k | } |
comphelper::ConfigurationProperty<officecfg::Office::Impress::Layout::Display::Guide, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 8.61k | { | 218 | 8.61k | if (comphelper::IsFuzzing()) | 219 | 8.61k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 8.61k | } |
comphelper::ConfigurationProperty<officecfg::Office::Impress::Snap::Object::SnapLine, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 8.61k | { | 218 | 8.61k | if (comphelper::IsFuzzing()) | 219 | 8.61k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 8.61k | } |
comphelper::ConfigurationProperty<officecfg::Office::Impress::Layout::Display::Helpline, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 8.61k | { | 218 | 8.61k | if (comphelper::IsFuzzing()) | 219 | 8.61k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 8.61k | } |
comphelper::ConfigurationProperty<officecfg::Office::Impress::Snap::Position::PointReduction, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 8.61k | { | 218 | 8.61k | if (comphelper::IsFuzzing()) | 219 | 8.61k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 8.61k | } |
comphelper::ConfigurationProperty<officecfg::Office::Impress::Layout::Display::Contour, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 8.61k | { | 218 | 8.61k | if (comphelper::IsFuzzing()) | 219 | 8.61k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 8.61k | } |
comphelper::ConfigurationProperty<officecfg::Office::Impress::Snap::Object::ObjectFrame, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 8.61k | { | 218 | 8.61k | if (comphelper::IsFuzzing()) | 219 | 8.61k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 8.61k | } |
comphelper::ConfigurationProperty<officecfg::Office::Impress::Snap::Object::ObjectPoint, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 8.61k | { | 218 | 8.61k | if (comphelper::IsFuzzing()) | 219 | 8.61k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 8.61k | } |
comphelper::ConfigurationProperty<officecfg::Office::Impress::Snap::Position::CreatingMoving, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 8.61k | { | 218 | 8.61k | if (comphelper::IsFuzzing()) | 219 | 8.61k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 8.61k | } |
comphelper::ConfigurationProperty<officecfg::Office::Impress::Layout::Display::Bezier, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 8.61k | { | 218 | 8.61k | if (comphelper::IsFuzzing()) | 219 | 8.61k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 8.61k | } |
comphelper::ConfigurationProperty<officecfg::Office::Impress::Snap::Position::RotatingValue, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 8.61k | { | 218 | 8.61k | if (comphelper::IsFuzzing()) | 219 | 8.61k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 8.61k | } |
comphelper::ConfigurationProperty<officecfg::Office::Impress::Snap::Object::Range, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 8.61k | { | 218 | 8.61k | if (comphelper::IsFuzzing()) | 219 | 8.61k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 8.61k | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Layout::Display::Ruler, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Snap::Position::Rotating, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Snap::Position::ExtendEdges, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Snap::Object::PageMargin, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Layout::Display::Guide, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Snap::Object::SnapLine, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Layout::Display::Helpline, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Snap::Position::PointReduction, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Layout::Display::Contour, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Snap::Object::ObjectFrame, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Snap::Object::ObjectPoint, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Snap::Position::CreatingMoving, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Layout::Display::Bezier, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Snap::Position::RotatingValue, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Snap::Object::Range, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::WriteLayerStateAsConfigItem, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Misc::TextObject::ShowBoundary, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Drawinglayer::PaintBuffer_DrawImpress, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Misc::TransitionFiles, com::sun::star::uno::Sequence<rtl::OUString> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Layout::Other::TabStop::Metric, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Impress::Layout::Other::TabStop::NonMetric, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 39.2k | { | 218 | 39.2k | if (comphelper::IsFuzzing()) | 219 | 39.2k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 39.2k | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Layout::Other::TabStop::Metric, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Layout::Other::TabStop::NonMetric, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Zoom::ScaleX, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Zoom::ScaleY, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Layout::Other::MeasureUnit::Metric, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Layout::Other::MeasureUnit::NonMetric, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Layout::Other::MeasureUnit::Metric, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Impress::Layout::Other::MeasureUnit::NonMetric, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 87.1k | { | 218 | 87.1k | if (comphelper::IsFuzzing()) | 219 | 87.1k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 87.1k | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Misc::LayoutListFiles, com::sun::star::uno::Sequence<rtl::OUString> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Misc::PresObjListFiles, com::sun::star::uno::Sequence<rtl::OUString> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Misc::DisableLayerHighlighting, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Misc::Start::ShowNavigationPanel, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Layout::Display::NavigationBtnScale, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Print::Other::PageName, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Print::Other::PageName, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Print::Other::Date, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Print::Other::Time, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Print::Other::Date, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Print::Other::Time, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Print::Other::HiddenPage, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Print::Other::Quality, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Print::Other::Quality, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Print::Page::PageSize, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Print::Page::PageSize, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Print::Page::PageTile, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Print::Page::PageTile, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Print::Page::Booklet, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Print::Page::Booklet, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Misc::Start::EnableSdremote, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Security::Net::AllowInsecureImpressRemoteWiFi, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Misc::EffectFiles, com::sun::star::uno::Sequence<rtl::OUString> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Filter::Microsoft::Export::EnablePowerPointPreview, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Filter::Import::VBA::Save, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::PreviewCache::CacheSize, int>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::PreviewCache::CompressionPolicy, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::PreviewCache::CompactionPolicy, rtl::OUString>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationProperty<officecfg::Office::Impress::Filter::Import::VBA::Load, bool>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 217 | 7.99k | { | 218 | 7.99k | if (comphelper::IsFuzzing()) | 219 | 7.99k | return U(); | 220 | | // Folding this into one statement causes a bogus error at least with | 221 | | // Red Hat GCC 4.6.2-1: | 222 | 0 | css::uno::Any a( | 223 | 0 | detail::ConfigurationWrapper::get(context).getPropertyValue( | 224 | 0 | T::path())); | 225 | 0 | return detail::Convert< U >::fromAny(a); | 226 | 7.99k | } |
Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::MultiPaneGUI::NotesPane::Visible::ImpressView, std::__1::optional<bool> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::MultiPaneGUI::NotesPane::Visible::OutlineView, std::__1::optional<bool> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::MultiPaneGUI::NotesPane::Visible::NotesView, std::__1::optional<bool> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::ImpressView, std::__1::optional<bool> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::OutlineView, std::__1::optional<bool> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::NotesView, std::__1::optional<bool> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::HandoutView, std::__1::optional<bool> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::SlideSorterView, std::__1::optional<bool> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::DrawView, std::__1::optional<bool> >::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) |
227 | | |
228 | | /// Set the value of the given (non-localized) configuration property, via a |
229 | | /// given changes batch. |
230 | | /// |
231 | | /// For nillable properties, U is of type std::optional<U'>. |
232 | | static void set( |
233 | | U const & value, |
234 | | std::shared_ptr< ConfigurationChanges > const & batch) |
235 | 0 | { |
236 | 0 | comphelper::detail::ConfigurationWrapper::setPropertyValue( |
237 | 0 | batch, T::path(), detail::Convert< U >::toAny(value)); |
238 | 0 | } Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Appearance::ApplicationAppearance, short>::set(short const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Appearance::LibreOfficeTheme, short>::set(short const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Appearance::UseOnlyWhiteDocBackground, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Appearance::AppBackBmpFileName, rtl::OUString>::set(rtl::OUString const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Appearance::AppBackBmpDrawType, rtl::OUString>::set(rtl::OUString const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Appearance::UseBmpForAppBack, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::PackageKit::EnableFontInstallation, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::VCL::VCLSettings::PrintDialog::LastPrinter, rtl::OUString>::set(rtl::OUString const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Print::Dialog::RangeSectionExpanded, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Print::Dialog::LayoutSectionExpanded, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::VCL::VCLSettings::PrintDialog::LastPage, rtl::OUString>::set(rtl::OUString const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::VCL::VCLSettings::PrintDialog::WindowState, rtl::OUString>::set(rtl::OUString const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::VCL::VCLSettings::PrintDialog::Collate, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::VCL::VCLSettings::PrintDialog::CollateSingleJobs, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::VCL::VCLSettings::PrintDialog::HasPreview, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Drawinglayer::AntiAliasing, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Formula::Load::OOXMLRecalcMode, int>::set(int const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Formula::Load::RecalcOptimalRowHeightMode, int>::set(int const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Formula::Load::ODFRecalcMode, int>::set(int const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Formula::Calculation::OpenCLSubsetOnly, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::Document::WarnAlienFormat, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::UseOpenCL, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Formula::Calculation::OpenCLMinimumDataSize, int>::set(int const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Content::Display::ColumnRowHighlighting, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Dialogs::ClipboardHTMLImport::Language, int>::set(int const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Dialogs::ClipboardHTMLImport::DetectSpecialNumbers, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Dialogs::ClipboardHTMLImport::DetectScientificNumbers, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Misc::HandleDuplicateRecords::RemoveDuplicateRows, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Misc::HandleDuplicateRecords::DataIncludesHeaders, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Calc::Misc::HandleDuplicateRecords::RemoveRecords, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Undo::Steps, int>::set(int const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::Document::CreateBackup, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::Document::BackupIntoDocumentFolder, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::Document::PrettyPrinting, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Recovery::AutoSave::Enabled, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Recovery::AutoSave::TimeIntervall, int>::set(int const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Recovery::AutoSave::UserAutoSaveEnabled, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::Document::EditProperty, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Help::ExtendedTip, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Help::Tip, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::URL::Internet, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::URL::FileSystem, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Inet::Settings::ooInetProxyType, std::__1::optional<int> >::set(std::__1::optional<int> const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Inet::Settings::ooInetHTTPProxyName, rtl::OUString>::set(rtl::OUString const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Inet::Settings::ooInetHTTPProxyPort, std::__1::optional<int> >::set(std::__1::optional<int> const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Inet::Settings::ooInetNoProxy, rtl::OUString>::set(rtl::OUString const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Help::BuiltInHelpNotInstalledPopUp, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::UI::ToolbarMode::ActiveWriter, rtl::OUString>::set(rtl::OUString const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::UI::ToolbarMode::ActiveCalc, rtl::OUString>::set(rtl::OUString const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::UI::ToolbarMode::ActiveImpress, rtl::OUString>::set(rtl::OUString const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::UI::ToolbarMode::ActiveDraw, rtl::OUString>::set(rtl::OUString const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::UI::Sidebar::Content::LastActiveDeck, com::sun::star::uno::Sequence<rtl::OUString> >::set(com::sun::star::uno::Sequence<rtl::OUString> const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Setup::Product::LastTimeGetInvolvedShown, long>::set(long const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Setup::Product::LastTimeDonateShown, long>::set(long const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Setup::L10N::ooLocale, rtl::OUString>::set(rtl::OUString const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::I18N::CJK::CJKFont, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::I18N::CJK::VerticalText, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::I18N::CJK::AsianTypography, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::I18N::CJK::JapaneseFind, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::I18N::CJK::Ruby, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::I18N::CJK::ChangeCaseMap, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::I18N::CJK::DoubleLines, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::UI::ColorScheme::CurrentColorScheme, std::__1::optional<rtl::OUString> >::set(std::__1::optional<rtl::OUString> const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::SymbolSet, short>::set(short const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::UseVerticalNotebookbar, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::UserColors::PaletteName, rtl::OUString>::set(rtl::OUString const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::UserColors::RecentColor, com::sun::star::uno::Sequence<int> >::set(com::sun::star::uno::Sequence<int> const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::UserColors::RecentColorName, com::sun::star::uno::Sequence<rtl::OUString> >::set(com::sun::star::uno::Sequence<rtl::OUString> const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Save::ODF::DefaultVersion, short>::set(short const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::SecureURL, com::sun::star::uno::Sequence<rtl::OUString> >::set(com::sun::star::uno::Sequence<rtl::OUString> const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::WarnSaveOrSendDoc, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::WarnSignDoc, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::WarnPrintDoc, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::WarnCreatePDF, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::RemoveEditingTimeOnSaving, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::RemovePersonalInfoOnSaving, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::KeepRedlineInfoOnSaving, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::KeepDocUserInfoOnSaving, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::KeepNoteAuthorDateInfoOnSaving, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::KeepDocVersionInfoOnSaving, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::KeepDocPrinterSettingsOnSaving, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::RecommendPasswordProtection, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::HyperlinksWithCtrlClick, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::BlockUntrustedRefererLinks, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::DisableActiveContent, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::DisableOLEAutomation, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Security::Scripting::MacroSecurityLevel, int>::set(int const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Recovery::RecoveryInfo::Crashed, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Recovery::RecoveryInfo::SessionData, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::FavoriteCharacters::FavoriteCharacterList, com::sun::star::uno::Sequence<rtl::OUString> >::set(com::sun::star::uno::Sequence<rtl::OUString> const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::FavoriteCharacters::FavoriteCharacterFontList, com::sun::star::uno::Sequence<rtl::OUString> >::set(com::sun::star::uno::Sequence<rtl::OUString> const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::StylesAndFormatting::Preview, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::QueryDeleteAllComments, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Writer::Notes::DisplayWidthFactor, double>::set(double const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::QueryShowFieldName, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Accessibility::OnlineAccessibilityCheck, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Misc::QuerySetInsMode, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Common::Classification::IntellectualPropertySectionExpanded, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::ImpressView, std::__1::optional<bool> >::set(std::__1::optional<bool> const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Layout::Display::Ruler, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Layout::Display::Ruler, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Layout::Other::MeasureUnit::Metric, int>::set(int const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Layout::Other::MeasureUnit::NonMetric, int>::set(int const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Layout::Other::MeasureUnit::Metric, int>::set(int const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Layout::Other::MeasureUnit::NonMetric, int>::set(int const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Layout::Other::TabStop::Metric, int>::set(int const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Layout::Other::TabStop::NonMetric, int>::set(int const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Layout::Other::TabStop::Metric, int>::set(int const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Layout::Other::TabStop::NonMetric, int>::set(int const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Zoom::ScaleX, int>::set(int const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Zoom::ScaleY, int>::set(int const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Layout::Display::Helpline, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Layout::Display::Helpline, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Snap::Object::SnapLine, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Snap::Object::SnapLine, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Layout::Display::Guide, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Layout::Display::Guide, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Snap::Object::PageMargin, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Snap::Object::PageMargin, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Snap::Object::ObjectFrame, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Snap::Object::ObjectFrame, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::Snap::Object::ObjectPoint, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Draw::Snap::Object::ObjectPoint, bool>::set(bool const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::MultiPaneGUI::NotesPane::Visible::ImpressView, std::__1::optional<bool> >::set(std::__1::optional<bool> const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::MultiPaneGUI::NotesPane::Visible::OutlineView, std::__1::optional<bool> >::set(std::__1::optional<bool> const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::MultiPaneGUI::NotesPane::Visible::NotesView, std::__1::optional<bool> >::set(std::__1::optional<bool> const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::OutlineView, std::__1::optional<bool> >::set(std::__1::optional<bool> const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::NotesView, std::__1::optional<bool> >::set(std::__1::optional<bool> const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::HandoutView, std::__1::optional<bool> >::set(std::__1::optional<bool> const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::SlideSorterView, std::__1::optional<bool> >::set(std::__1::optional<bool> const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationProperty<officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::DrawView, std::__1::optional<bool> >::set(std::__1::optional<bool> const&, std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) |
239 | | |
240 | | private: |
241 | | ConfigurationProperty(const ConfigurationProperty&) = delete; |
242 | | ConfigurationProperty& operator=(const ConfigurationProperty&) = delete; |
243 | | |
244 | | ConfigurationProperty() = delete; |
245 | | ~ConfigurationProperty() = delete; |
246 | | }; |
247 | | |
248 | | /// A type-safe wrapper around a localized configuration property. |
249 | | /// |
250 | | /// Automatically generated headers for the various localized configuration |
251 | | /// properties derive from this template and make available its member functions |
252 | | /// to access each given localized configuration property. |
253 | | template< typename T, typename U > struct ConfigurationLocalizedProperty |
254 | | { |
255 | | /// Get the read-only status of the given (localized) configuration |
256 | | /// property. |
257 | | static bool isReadOnly( |
258 | | css::uno::Reference<css::uno::XComponentContext> const & context |
259 | | = css::uno::Reference<css::uno::XComponentContext>()) |
260 | | { |
261 | | return detail::ConfigurationWrapper::get(context).isReadOnly(T::path()); |
262 | | } |
263 | | |
264 | | /// Get the value of the given localized configuration property, for the |
265 | | /// locale currently set at the |
266 | | /// com.sun.star.configuration.theDefaultProvider. |
267 | | /// |
268 | | /// For nillable properties, U is of type std::optional<U'>. |
269 | | static U get( |
270 | | css::uno::Reference<css::uno::XComponentContext> const & context |
271 | | = css::uno::Reference<css::uno::XComponentContext>()) |
272 | 0 | { |
273 | | // Folding this into one statement causes a bogus error at least with |
274 | | // Red Hat GCC 4.6.2-1: |
275 | 0 | css::uno::Any a( |
276 | 0 | detail::ConfigurationWrapper::get(context). |
277 | 0 | getLocalizedPropertyValue(T::path())); |
278 | 0 | return detail::Convert< U >::fromAny(a); |
279 | 0 | } |
280 | | |
281 | | /// Set the value of the given localized configuration property, for the |
282 | | /// locale currently set at the |
283 | | /// com.sun.star.configuration.theDefaultProvider, via a given changes |
284 | | /// batch. |
285 | | /// |
286 | | /// For nillable properties, U is of type std::optional<U'>. |
287 | | static void set( |
288 | | U const & value, |
289 | | std::shared_ptr< ConfigurationChanges > const & batch) |
290 | | { |
291 | | comphelper::detail::ConfigurationWrapper::setLocalizedPropertyValue( |
292 | | batch, T::path(), detail::Convert< U >::toAny(value)); |
293 | | } |
294 | | |
295 | | private: |
296 | | ConfigurationLocalizedProperty(const ConfigurationLocalizedProperty&) = delete; |
297 | | ConfigurationLocalizedProperty& operator=(const ConfigurationLocalizedProperty&) = delete; |
298 | | |
299 | | ConfigurationLocalizedProperty() = delete; |
300 | | ~ConfigurationLocalizedProperty() = delete; |
301 | | }; |
302 | | |
303 | | /// A type-safe wrapper around a configuration group. |
304 | | /// |
305 | | /// Automatically generated headers for the various configuration groups derive |
306 | | /// from this template and make available its member functions to access each |
307 | | /// given configuration group. |
308 | | template< typename T > struct ConfigurationGroup { |
309 | | /// Get the read-only status of the given configuration group. |
310 | | static bool isReadOnly( |
311 | | css::uno::Reference<css::uno::XComponentContext> const & context |
312 | | = css::uno::Reference<css::uno::XComponentContext>()) |
313 | | { |
314 | | return detail::ConfigurationWrapper::get(context).isReadOnly(T::path()); |
315 | | } |
316 | | |
317 | | /// Get read-only access to the given configuration group. |
318 | | static css::uno::Reference< |
319 | | css::container::XHierarchicalNameAccess > |
320 | | get(css::uno::Reference<css::uno::XComponentContext> const & context |
321 | | = css::uno::Reference<css::uno::XComponentContext>()) |
322 | 0 | { |
323 | 0 | return detail::ConfigurationWrapper::get(context).getGroupReadOnly( |
324 | 0 | T::path()); |
325 | 0 | } Unexecuted instantiation: comphelper::ConfigurationGroup<officecfg::Office::Common::I18N>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationGroup<officecfg::Office::Common::Font::SourceViewFont>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) |
326 | | |
327 | | /// Get read/write access to the given configuration group, storing any |
328 | | /// modifications via the given changes batch. |
329 | | static css::uno::Reference< |
330 | | css::container::XHierarchicalNameReplace > |
331 | | get(std::shared_ptr< ConfigurationChanges > const & batch) |
332 | | { |
333 | | return comphelper::detail::ConfigurationWrapper::getGroupReadWrite( |
334 | | batch, T::path()); |
335 | | } |
336 | | |
337 | | private: |
338 | | ConfigurationGroup(const ConfigurationGroup&) = delete; |
339 | | ConfigurationGroup& operator=(const ConfigurationGroup&) = delete; |
340 | | |
341 | | ConfigurationGroup() = delete; |
342 | | ~ConfigurationGroup() = delete; |
343 | | }; |
344 | | |
345 | | /// A type-safe wrapper around a configuration set. |
346 | | /// |
347 | | /// Automatically generated headers for the various configuration sets derive |
348 | | /// from this template and make available its member functions to access each |
349 | | /// given configuration set. |
350 | | template< typename T > struct ConfigurationSet { |
351 | | /// Get the read-only status of the given configuration set. |
352 | | static bool isReadOnly( |
353 | | css::uno::Reference<css::uno::XComponentContext> const & context |
354 | | = css::uno::Reference<css::uno::XComponentContext>()) |
355 | 0 | { |
356 | 0 | return detail::ConfigurationWrapper::get(context).isReadOnly(T::path()); |
357 | 0 | } |
358 | | |
359 | | /// Get read-only access to the given configuration set. |
360 | | static |
361 | | css::uno::Reference< css::container::XNameAccess > |
362 | | get(css::uno::Reference<css::uno::XComponentContext> const & context |
363 | | = css::uno::Reference<css::uno::XComponentContext>()) |
364 | 48.9k | { |
365 | 48.9k | return detail::ConfigurationWrapper::get(context).getSetReadOnly( |
366 | 48.9k | T::path()); |
367 | 48.9k | } Unexecuted instantiation: comphelper::ConfigurationSet<officecfg::Office::ProtocolHandler::HandlerSet>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationSet<officecfg::Office::UI::FilePicker::ShowFilterDialog>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationSet<officecfg::Office::Common::Misc::FilePickerLastDirectory>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationSet<officecfg::Setup::Office::InstalledLocales>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationSet<officecfg::Office::Embedding::ObjectNames>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationSet<officecfg::VCL::ExtraLanguages>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationSet<officecfg::Setup::Office::Factories>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationSet<officecfg::TypeDetection::UISort::ModuleDependendFilterOrder>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationSet<officecfg::Office::Recovery::RecoveryList>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) comphelper::ConfigurationSet<officecfg::Office::Paths::Paths>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Line | Count | Source | 364 | 48.9k | { | 365 | 48.9k | return detail::ConfigurationWrapper::get(context).getSetReadOnly( | 366 | 48.9k | T::path()); | 367 | 48.9k | } |
Unexecuted instantiation: comphelper::ConfigurationSet<officecfg::Office::Canvas::CanvasServiceList>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationSet<officecfg::Office::UI::Effects::UserInterface::TransitionSets>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationSet<officecfg::Office::UI::Effects::UserInterface::TransitionGroups>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationSet<officecfg::Office::UI::Effects::UserInterface::TransitionVariants>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) Unexecuted instantiation: comphelper::ConfigurationSet<officecfg::Office::UI::Effects::UserInterface::Transitions>::get(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) |
368 | | |
369 | | /// Get read/write access to the given configuration set, storing any |
370 | | /// modifications via the given changes batch. |
371 | | static |
372 | | css::uno::Reference< css::container::XNameContainer > |
373 | | get(std::shared_ptr< ConfigurationChanges > const & batch) |
374 | 0 | { |
375 | 0 | return comphelper::detail::ConfigurationWrapper::getSetReadWrite( |
376 | 0 | batch, T::path()); |
377 | 0 | } Unexecuted instantiation: comphelper::ConfigurationSet<officecfg::Office::Common::Misc::FilePickerLastDirectory>::get(std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationSet<officecfg::Office::UI::FilePicker::ShowFilterDialog>::get(std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) Unexecuted instantiation: comphelper::ConfigurationSet<officecfg::Office::Recovery::RecoveryList>::get(std::__1::shared_ptr<comphelper::ConfigurationChanges> const&) |
378 | | |
379 | | private: |
380 | | ConfigurationSet(const ConfigurationSet&) = delete; |
381 | | ConfigurationSet& operator=(const ConfigurationSet&) = delete; |
382 | | |
383 | | ConfigurationSet() = delete; |
384 | | ~ConfigurationSet() = delete; |
385 | | }; |
386 | | |
387 | | } |
388 | | |
389 | | #endif |
390 | | |
391 | | /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |