summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2003-03-19 15:03:25 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2003-03-19 15:03:25 +0000
commit8ed9759cd9d0889d3730369932035e87d5c423d6 (patch)
tree7b506921a6bc6ce042b58ff4d21412ea14c9a24f /comphelper
parent6a9ee9313e8e121d2b651643bca8c6820106ddb4 (diff)
MWS_SRX644: migrate branch mws_srx644 -> HEAD
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/inc/comphelper/TypeGeneration.hxx10
-rw-r--r--comphelper/inc/comphelper/accessiblecomponenthelper.hxx13
-rw-r--r--comphelper/inc/comphelper/accessiblecontexthelper.hxx31
-rw-r--r--comphelper/inc/comphelper/accessibleeventnotifier.hxx98
-rw-r--r--comphelper/inc/comphelper/accessibleselectionhelper.hxx11
-rw-r--r--comphelper/inc/comphelper/accessiblewrapper.hxx447
-rw-r--r--comphelper/inc/comphelper/accimplaccess.hxx16
-rw-r--r--comphelper/inc/comphelper/composedprops.hxx10
-rw-r--r--comphelper/inc/comphelper/container.hxx14
-rw-r--r--comphelper/inc/comphelper/enumhelper.hxx13
-rw-r--r--comphelper/inc/comphelper/interaction.hxx13
-rw-r--r--comphelper/inc/comphelper/propagg.hxx6
-rw-r--r--comphelper/inc/comphelper/proparrhlp.hxx6
-rw-r--r--comphelper/inc/comphelper/property.hxx36
-rw-r--r--comphelper/inc/comphelper/propertycontainer.hxx33
-rw-r--r--comphelper/inc/comphelper/weakeventlistener.hxx10
-rw-r--r--comphelper/prj/d.lst1
-rw-r--r--comphelper/source/compare/AnyCompareFactory.cxx12
-rw-r--r--comphelper/source/container/IndexedPropertyValuesContainer.cxx6
-rw-r--r--comphelper/source/container/NamedPropertyValuesContainer.cxx11
-rw-r--r--comphelper/source/container/container.cxx14
-rw-r--r--comphelper/source/container/enumhelper.cxx10
-rw-r--r--comphelper/source/container/namecontainer.cxx8
-rw-r--r--comphelper/source/eventattachermgr/eventattachermgr.cxx98
-rw-r--r--comphelper/source/misc/accessiblecomponenthelper.cxx19
-rw-r--r--comphelper/source/misc/accessiblecontexthelper.cxx58
-rw-r--r--comphelper/source/misc/accessibleeventnotifier.cxx428
-rw-r--r--comphelper/source/misc/accessibleselectionhelper.cxx11
-rw-r--r--comphelper/source/misc/accessiblewrapper.cxx647
-rw-r--r--comphelper/source/misc/accimplaccess.cxx16
-rw-r--r--comphelper/source/misc/interaction.cxx16
-rw-r--r--comphelper/source/misc/makefile.mk8
-rw-r--r--comphelper/source/misc/weakeventlistener.cxx10
-rw-r--r--comphelper/source/property/TypeGeneration.cxx21
-rw-r--r--comphelper/source/property/composedprops.cxx13
-rw-r--r--comphelper/source/property/propagg.cxx37
-rw-r--r--comphelper/source/property/property.cxx32
-rw-r--r--comphelper/source/property/propertycontainer.cxx59
-rw-r--r--comphelper/source/property/propstate.cxx10
-rw-r--r--comphelper/util/defs/wntmsci72522
-rw-r--r--comphelper/util/makefile.mk20
-rw-r--r--comphelper/version.mk6
42 files changed, 3926 insertions, 934 deletions
diff --git a/comphelper/inc/comphelper/TypeGeneration.hxx b/comphelper/inc/comphelper/TypeGeneration.hxx
index c3621d8ccd0f..8f441c163073 100644
--- a/comphelper/inc/comphelper/TypeGeneration.hxx
+++ b/comphelper/inc/comphelper/TypeGeneration.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: TypeGeneration.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: tl $ $Date: 2002-10-08 14:09:57 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:28 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -134,10 +134,14 @@ namespace comphelper
CPPUTYPE_REFTXTFIELD, //getCppuType( (Reference<text::XTextField>*)0)
CPPUTYPE_REFTXTRANGE, //getCppuType( (Reference<text::XTextRange>*)0)
CPPUTYPE_REFTXTTABLE, //getCppuType( (Reference<text::XTextTable>*)0)
-
CPPUTYPE_AWTPOINT, //getCppuType( (awt::Point*)0 )
CPPUTYPE_REFLIBCONTAINER, //getCppuType( (Reference< script::XLibraryContainer >*)0)
+ CPPUTYPE_SEQANY, //getCppuType( (Sequence< uno::Any >*)0)
+ CPPUTYPE_REFRESULTSET, //getCppuType( (Reference< sdbc::XResultSet >*)0)
+ CPPUTYPE_REFCONNECTION, //getCppuType( (Reference< sdbc::XConnection >*)0)
+ CPPUTYPE_REFMODEL, //getCppuType( (Reference< frame::XModel >*)0)
+ CPPUTYPE_OUSTRINGS, //getCppuType( (Sequence<OUString>*)0 )
CPPUTYPE_END
};
void GenerateCppuType ( sal_uInt16 eType, const com::sun::star::uno::Type*& pType );
diff --git a/comphelper/inc/comphelper/accessiblecomponenthelper.hxx b/comphelper/inc/comphelper/accessiblecomponenthelper.hxx
index f61beec7d94f..35f4f1e39f4f 100644
--- a/comphelper/inc/comphelper/accessiblecomponenthelper.hxx
+++ b/comphelper/inc/comphelper/accessiblecomponenthelper.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: accessiblecomponenthelper.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: fs $ $Date: 2002-05-08 15:37:22 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:28 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -184,13 +184,4 @@ namespace comphelper
#endif // COMPHELPER_ACCESSIBLE_COMPONENT_HELPER_HXX
-/*************************************************************************
- * history:
- * $Log: not supported by cvs2svn $
- * Revision 1.1 2002/04/23 11:08:57 fs
- * initial checkin - helper for implementing an XAccessible(Extended)Component
- *
- *
- * Revision 1.0 18.04.2002 11:47:39 fs
- ************************************************************************/
diff --git a/comphelper/inc/comphelper/accessiblecontexthelper.hxx b/comphelper/inc/comphelper/accessiblecontexthelper.hxx
index 8547d309a608..48c1d2f23ecd 100644
--- a/comphelper/inc/comphelper/accessiblecontexthelper.hxx
+++ b/comphelper/inc/comphelper/accessiblecontexthelper.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: accessiblecontexthelper.hxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: tbe $ $Date: 2002-11-22 13:48:59 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:29 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -414,31 +414,4 @@ namespace comphelper
#endif // COMPHELPER_ACCESSIBLE_CONTEXT_HELPER_HXX
-/*************************************************************************
- * history:
- * $Log: not supported by cvs2svn $
- * Revision 1.7 2002/09/23 10:31:41 tbe
- * #102438# OExternalLockGuard: only lock the external mutex
- *
- * Revision 1.6 2002/07/22 07:01:31 sb
- * #100004# Added second NotifyAccessibleEvent with AccessibleEventBuffer.
- *
- * Revision 1.5 2002/05/08 15:37:22 fs
- * #99218# allow abstract external locks in addition to the own mutex
- *
- * Revision 1.4 2002/04/30 16:11:04 fs
- * #98750# corrected the access control
- *
- * Revision 1.3 2002/04/26 14:21:46 fs
- * #98750# +getAccessibleCreator
- *
- * Revision 1.2 2002/04/26 05:51:23 fs
- * #98750# use correct broadcasthelper (in the WeagAggComponentImpl* base)
- *
- * Revision 1.1 2002/04/23 11:07:38 fs
- * initial checkin - helper for implementing an XAccessibleContext
- *
- *
- * Revision 1.0 17.04.2002 15:47:54 fs
- ************************************************************************/
diff --git a/comphelper/inc/comphelper/accessibleeventnotifier.hxx b/comphelper/inc/comphelper/accessibleeventnotifier.hxx
index d0e9ae2f2035..274b431252f5 100644
--- a/comphelper/inc/comphelper/accessibleeventnotifier.hxx
+++ b/comphelper/inc/comphelper/accessibleeventnotifier.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: accessibleeventnotifier.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: fs $ $Date: 2002-12-06 16:50:01 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:29 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -90,9 +90,7 @@ namespace comphelper
//=====================================================================
//= AccessibleEventNotifier
//=====================================================================
- typedef ::osl::Thread AccessibleEventNotifier_BASE;
-
- class AccessibleEventNotifier : protected AccessibleEventNotifier_BASE
+ class AccessibleEventNotifier
{
// typedefs
public:
@@ -101,38 +99,19 @@ namespace comphelper
private:
typedef ::std::pair< TClientId, ::drafts::com::sun::star::accessibility::AccessibleEventObject >
ClientEvent;
- typedef ::std::list< ClientEvent > EventQueue;
typedef ::cppu::OInterfaceContainerHelper EventListeners;
typedef ::std::map< TClientId, EventListeners*, ::std::less< TClientId > > ClientMap;
// members
private:
- static ::osl::Mutex s_aMutex;
-
- // event administration
- ::osl::Condition m_aEventGuard;
- EventQueue m_aEvents;
-
// client administration
- ClientMap m_aClients; // known clients
- ClientMap m_aDisposedClients; // clients which are disposed, but still have events in the queue
-
- // runtime control
- sal_Bool m_bTerminateRequested;
-
- static AccessibleEventNotifier* s_pNotifier;
-
- protected:
-
- // ::osl::Thread
- virtual void SAL_CALL run();
- virtual void SAL_CALL terminate();
- virtual void SAL_CALL onTerminated();
+ static ::osl::Mutex s_aMutex;
+ static ClientMap s_aClients;
protected:
- AccessibleEventNotifier( );
- ~AccessibleEventNotifier( );
+ AccessibleEventNotifier( ); // never implemented
+ ~AccessibleEventNotifier( ); // never implemented
private:
AccessibleEventNotifier( const AccessibleEventNotifier& ); // never implemented!
@@ -217,7 +196,7 @@ namespace comphelper
private:
/// generates a new client id
- TClientId generateId();
+ static TClientId generateId();
/** looks up a client in our client map, asserts if it cannot find it or no event thread is present
@@ -234,58 +213,6 @@ namespace comphelper
it's position
*/
static sal_Bool implLookupClient( const TClientId _nClient, ClientMap::iterator& _rPos );
-
- /** removes all events for a given client id from the queue
-
- @precond
- to be called with our mutex locked
- @precond
- the notifier thread has to be alive, especially, <member>s_pNotifier</member> must not
- be <NULL/>
-
- @param _nClient
- the id of the client which's pending events should be removed
- @param _rEnsureAlive
- will, upon return, contain all the collected EventObject.Source values for all events
- which have been removed from the queue.<br/>
- The intention is to _not_ release these objects within the method, with our mutex locked.
- In case the release is non-trivial (because it's the last reference, so the object is
- deleted upon calling release), we certainly do _not_ want to do this call into the foreign
- component with a locked mutex.
- */
- static void implRemoveEventsForClient(
- const TClientId _nClient,
- ::std::vector< ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > >& _rEnsureAlive
- );
-
- /** terminates the notifier, if it does not have clients anymore
-
- @precond
- <member>s_pNotifier</member> must not be <NULL/>
- @precond
- <member>s_aMutex</member> is locked
-
- @postcond
- <member>s_pNotifier</member> is NULL, or there are clients left
- @postcond
- if the there are no clients left, then the thread referred to by s_pNotifier
- (at the moment the method was entered) will awake as soon as possible (i.e.
- as soon as it get's the mutex), and terminate immediately and smoothly
- (no hard killing)
- */
- static void implCleanupNotifier( );
-
- /** adds an AccessibleEvent to the event queue
-
- @precond
- <member>s_pNotifier</member> must not be <NULL/>
- @precond
- <member>s_aMutex</member> is locked
- */
- static void implPushBackEvent(
- const TClientId _nClient,
- const ::drafts::com::sun::star::accessibility::AccessibleEventObject& _rEvent
- );
};
//.........................................................................
@@ -294,13 +221,4 @@ namespace comphelper
#endif // COMPHELPER_ACCESSIBLE_EVENT_NOTIFIER
-/*************************************************************************
- * history:
- * $Log: not supported by cvs2svn $
- * Revision 1.1 2002/12/06 12:55:45 fs
- * initial checkin - notifying accessible events asynchronously
- *
- *
- * Revision 1.0 05.12.2002 11:05:27 fs
- ************************************************************************/
diff --git a/comphelper/inc/comphelper/accessibleselectionhelper.hxx b/comphelper/inc/comphelper/accessibleselectionhelper.hxx
index 1ed2f14933ae..1575a452c8ed 100644
--- a/comphelper/inc/comphelper/accessibleselectionhelper.hxx
+++ b/comphelper/inc/comphelper/accessibleselectionhelper.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: accessibleselectionhelper.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: oj $ $Date: 2002-07-30 06:10:35 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:29 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -174,10 +174,3 @@ namespace comphelper
#endif // COMPHELPER_ACCESSIBLE_SELECTION_HELPER_HXX
-/*************************************************************************
- * history:
- * $Log: not supported by cvs2svn $
- * Revision 1.1 2002/05/06 09:58:52 ka
- * #95585#: added AccessibleSelection helper
- *
- ************************************************************************/
diff --git a/comphelper/inc/comphelper/accessiblewrapper.hxx b/comphelper/inc/comphelper/accessiblewrapper.hxx
new file mode 100644
index 000000000000..a6adc58def21
--- /dev/null
+++ b/comphelper/inc/comphelper/accessiblewrapper.hxx
@@ -0,0 +1,447 @@
+/*************************************************************************
+ *
+ * $RCSfile: accessiblewrapper.hxx,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:29 $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (the "License"); You may not use this file
+ * except in compliance with the License. You may obtain a copy of the
+ * License at http://www.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+ *
+ * Copyright: 2000 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+
+#ifndef COMPHELPER_ACCESSIBLE_WRAPPER_HXX
+#define COMPHELPER_ACCESSIBLE_WRAPPER_HXX
+
+#ifndef _COM_SUN_STAR_UNO_XAGGREGATION_HPP_
+#include <com/sun/star/uno/XAggregation.hpp>
+#endif
+#ifndef _COM_SUN_STAR_LANG_XMULTISERVICEFACTORY_HPP_
+#include <com/sun/star/lang/XMultiServiceFactory.hpp>
+#endif
+#ifndef _DRAFTS_COM_SUN_STAR_ACCESSIBILITY_XACCESSIBLE_HPP_
+#include <drafts/com/sun/star/accessibility/XAccessible.hpp>
+#endif
+#ifndef _DRAFTS_COM_SUN_STAR_ACCESSIBILITY_XACCESSIBLECONTEXT_HPP_
+#include <drafts/com/sun/star/accessibility/XAccessibleContext.hpp>
+#endif
+#ifndef _DRAFTS_COM_SUN_STAR_ACCESSIBILITY_XACCESSIBLEEVENTBROADCASTER_HPP_
+#include <drafts/com/sun/star/accessibility/XAccessibleEventBroadcaster.hpp>
+#endif
+#ifndef _DRAFTS_COM_SUN_STAR_ACCESSIBILITY_XACCESSIBLEEVENTLISTENER_HPP_
+#include <drafts/com/sun/star/accessibility/XAccessibleEventListener.hpp>
+#endif
+#ifndef _CPPUHELPER_COMPBASE1_HXX_
+#include <cppuhelper/compbase1.hxx>
+#endif
+#ifndef _CPPUHELPER_IMPLBASE2_HXX_
+#include <cppuhelper/implbase2.hxx>
+#endif
+#ifndef _COMPHELPER_SEQUENCE_HXX_
+#include <comphelper/sequence.hxx>
+#endif
+#ifndef _COMPHELPER_UNO3_HXX_
+#include <comphelper/uno3.hxx>
+#endif
+#ifndef _CPPUHELPER_INTERFACECONTAINER_HXX_
+#include <cppuhelper/interfacecontainer.hxx>
+#endif
+#ifndef _COMPHELPER_BROADCASTHELPER_HXX_
+#include <comphelper/broadcasthelper.hxx>
+#endif
+#ifndef COMPHELPER_ACCESSIBLE_EVENT_NOTIFIER
+#include <comphelper/accessibleeventnotifier.hxx>
+#endif
+#ifndef _COMPHELPER_STLTYPES_HXX_
+#include <comphelper/stl_types.hxx>
+#endif
+
+//.............................................................................
+namespace comphelper
+{
+//.............................................................................
+
+ typedef ::std::map < ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessible >
+ , ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessible >
+ , ::comphelper::OInterfaceCompare< ::drafts::com::sun::star::accessibility::XAccessible >
+ > AccessibleMap;
+ // TODO: think about if we should hold these objects weak
+ //=========================================================================
+ //= OWrappedAccessibleChildrenManager
+ //=========================================================================
+ typedef ::cppu::WeakImplHelper1 < ::com::sun::star::lang::XEventListener
+ > OWrappedAccessibleChildrenManager_Base;
+ /** manages wrapping XAccessible's to XAccessible's
+ */
+ class OWrappedAccessibleChildrenManager : public OWrappedAccessibleChildrenManager_Base
+ {
+ protected:
+ ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >
+ m_xORB;
+ ::com::sun::star::uno::WeakReference< ::drafts::com::sun::star::accessibility::XAccessible >
+ m_aOwningAccessible; // the XAccessible which belongs to the XAccessibleContext which we work for
+ AccessibleMap m_aChildrenMap; // for caching children
+ sal_Bool m_bTransientChildren; // are we prohibited to cache our children?
+
+ public:
+ /// ctor
+ OWrappedAccessibleChildrenManager(
+ const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rxORB
+ );
+
+ /** specifies if the children are to be consideren transient (i.e.: not cached)
+ <p>to be called only once per lifetime</p>
+ */
+ void setTransientChildren( sal_Bool _bSet = sal_True );
+
+ /** sets the XAccessible which belongs to the XAccessibleContext which we work for
+ <p>to be called only once per lifetime</p>
+ */
+ void setOwningAccessible( const ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessible >& _rxAcc );
+
+ /// retrieves a wrapper for the given accessible
+ ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessible >
+ getAccessibleWrapperFor(
+ const ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessible >& _rxKey,
+ sal_Bool _bCreate = sal_True
+ );
+
+ /// erases the given key from the map (if it is present there)
+ void removeFromCache( const ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessible >& _rxKey );
+
+ /// invalidates (i.e. empties) the map
+ void invalidateAll( );
+
+ /// disposes (i.e. cleares) the manager
+ void dispose();
+
+ /** handles a notification as got from the parent of the children we're managing
+ <p>This applies only to the notifications which have a direct impact on our map.</p>
+ */
+ void handleChildNotification( const ::drafts::com::sun::star::accessibility::AccessibleEventObject& _rEvent );
+
+ /** translates events as got from the parent of the children we're managing
+ <p>This applies only to the notifications which deal with child objects which we manage.</p>
+ */
+ void translateAccessibleEvent(
+ const ::drafts::com::sun::star::accessibility::AccessibleEventObject& _rEvent,
+ ::drafts::com::sun::star::accessibility::AccessibleEventObject& _rTranslatedEvent
+ );
+
+ protected:
+ // XEventListener
+ virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw (::com::sun::star::uno::RuntimeException);
+
+ protected:
+ void implTranslateChildEventValue( const ::com::sun::star::uno::Any& _rInValue, ::com::sun::star::uno::Any& _rOutValue );
+
+ protected:
+ ~OWrappedAccessibleChildrenManager( );
+
+ private:
+ OWrappedAccessibleChildrenManager( ); // never implemented
+ OWrappedAccessibleChildrenManager( const OWrappedAccessibleChildrenManager& ); // never implemented
+ OWrappedAccessibleChildrenManager& operator=( const OWrappedAccessibleChildrenManager& ); // never implemented
+ };
+
+ //=========================================================================
+ //= OProxyAggregation
+ //=========================================================================
+ /** helper class for aggregating a proxy for a foreign object
+ */
+ class OProxyAggregation
+ {
+ private:
+ ::com::sun::star::uno::Reference< ::com::sun::star::uno::XAggregation > m_xProxyAggregate;
+ ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > m_xORB;
+
+ protected:
+ inline const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& getORB()
+ {
+ return m_xORB;
+ }
+
+ protected:
+ OProxyAggregation( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rxORB );
+ ~OProxyAggregation();
+
+ /// to be called from within your ctor
+ void aggregateProxyFor(
+ const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& _rxComponent,
+ oslInterlockedCount& _rRefCount,
+ ::cppu::OWeakObject& _rDelegator
+ );
+
+ // XInterface and XTypeProvider
+ ::com::sun::star::uno::Any SAL_CALL queryAggregation( const ::com::sun::star::uno::Type& _rType ) throw (::com::sun::star::uno::RuntimeException);
+ ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes( ) throw (::com::sun::star::uno::RuntimeException);
+
+ private:
+ OProxyAggregation( ); // never implemented
+ OProxyAggregation( const OProxyAggregation& ); // never implemented
+ OProxyAggregation& operator=( const OProxyAggregation& ); // never implemented
+ };
+
+ //=========================================================================
+ //= OComponentProxyAggregation
+ //=========================================================================
+ template < class INNER >
+ class OComponentProxyAggregation :public ::comphelper::OBaseMutex
+ ,public ::cppu::WeakComponentImplHelper1< INNER >
+ ,protected OProxyAggregation
+ {
+ private:
+ typedef ::cppu::WeakComponentImplHelper1< INNER > BASE; // prevents some MSVC problems
+
+ protected:
+ ::com::sun::star::uno::Reference< INNER > m_xInner;
+
+ protected:
+ // XInterface
+ ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type& _rType ) throw (::com::sun::star::uno::RuntimeException);
+ // XTypeProvider
+ DECLARE_XTYPEPROVIDER( );
+
+ protected:
+ OComponentProxyAggregation(
+ const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rxORB,
+ const ::com::sun::star::uno::Reference< INNER >& _rxInner
+ );
+ };
+
+ //-------------------------------------------------------------------------
+ template < class INNER >
+ ::com::sun::star::uno::Any SAL_CALL OComponentProxyAggregation< INNER >::queryInterface( const ::com::sun::star::uno::Type& _rType ) throw (::com::sun::star::uno::RuntimeException)
+ {
+ ::com::sun::star::uno::Any aReturn( BASE::queryInterface( _rType ) );
+ if ( !aReturn.hasValue() )
+ aReturn = OProxyAggregation::queryAggregation( _rType );
+ return aReturn;
+ }
+
+ //-------------------------------------------------------------------------
+ template < class INNER >
+ IMPLEMENT_GET_IMPLEMENTATION_ID( OComponentProxyAggregation< INNER > )
+
+ //-------------------------------------------------------------------------
+ template < class INNER >
+ ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL OComponentProxyAggregation< INNER >::getTypes( ) throw (::com::sun::star::uno::RuntimeException)
+ {
+ return ::comphelper::concatSequences(
+ BASE::getTypes(),
+ OProxyAggregation::getTypes()
+ );
+ }
+
+ //-------------------------------------------------------------------------
+ template < class INNER >
+ OComponentProxyAggregation< INNER >::OComponentProxyAggregation( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rxORB,
+ const ::com::sun::star::uno::Reference< INNER >& _rxInner )
+ :BASE( m_aMutex )
+ ,OProxyAggregation( _rxORB )
+ ,m_xInner( _rxInner )
+ {
+ OSL_ENSURE( _rxORB.is() && m_xInner.is(), "OComponentProxyAggregation::OComponentProxyAggregation: invalid arguments!" );
+
+ // aggregate a proxy for the object
+ aggregateProxyFor( m_xInner.get(), m_refCount, *this );
+ }
+
+ //=========================================================================
+ //= OAccessibleWrapper
+ //=========================================================================
+
+ typedef OComponentProxyAggregation < ::drafts::com::sun::star::accessibility::XAccessible
+ > OAccessibleWrapper_Base;
+
+ /** a class which aggregates a proxy for an XAccessible, and wrapping the context returned by this
+ XAccessible.
+ */
+ class OAccessibleWrapper : public OAccessibleWrapper_Base
+ {
+ private:
+ ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessible >
+ m_xParentAccessible;
+
+ public:
+ /** ctor
+
+ @param _rxORB
+ a service factory
+
+ @param _rxInnerAccessible
+ the object to wrap
+
+ @param _rxParentAccessible
+ The XAccessible which is our parent
+ */
+ OAccessibleWrapper(
+ const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rxORB,
+ const ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessible >& _rxInnerAccessible,
+ const ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessible >& _rxParentAccessible
+ );
+
+ protected:
+ virtual ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (::com::sun::star::uno::RuntimeException);
+
+ ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessible >
+ getParent() const { return m_xParentAccessible; }
+ protected:
+ ~OAccessibleWrapper( );
+
+ private:
+ OAccessibleWrapper( ); // never implemented
+ OAccessibleWrapper( const OAccessibleWrapper& ); // never implemented
+ OAccessibleWrapper& operator=( const OAccessibleWrapper& ); // never implemented
+ };
+
+ //=========================================================================
+ //= OAccessibleContextWrapper
+ //=========================================================================
+
+ // for aggregating another context
+ typedef OComponentProxyAggregation < ::drafts::com::sun::star::accessibility::XAccessibleContext
+ > OAccessibleContextWrapper_Base;
+
+ // for multiplexing AccessibleEvents
+ typedef ::cppu::ImplHelper2 < ::drafts::com::sun::star::accessibility::XAccessibleEventBroadcaster
+ , ::drafts::com::sun::star::accessibility::XAccessibleEventListener
+ > OAccessibleContextWrapper_MBase;
+
+ /** wraps an XAccessibleContext by aggregating a proxy for it
+ */
+ class OAccessibleContextWrapper
+ :public OAccessibleContextWrapper_Base
+ ,public OAccessibleContextWrapper_MBase
+ {
+ private:
+ typedef ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessible >
+ Accessible;
+
+ private:
+ /// the XAccessible which created this context
+ ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessible > m_xOwningAccessible;
+ /// the XAccessible which is to be returned in getAccessibleParent
+ ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessible > m_xParentAccessible;
+
+ ::comphelper::AccessibleEventNotifier::TClientId m_nNotifierClient; // for notifying AccessibleEvents
+ OWrappedAccessibleChildrenManager* m_pChildMapper; // for mapping children from our inner context to our callers
+
+ public:
+ /** ctor
+
+ @param _rxORB
+ a service factory
+
+ @param _rxInnerAccessibleContext
+ the object to wrap
+
+ @param _rxOwningAccessible
+ The XAccessible which created this object. This is necessary because children
+ of our wrapped context meed to be wrapped, too, and if they're asked for a parent,
+ they of course should return the proper parent<br/>
+ The object will be held with a hard reference
+
+ @param _rxParentAccessible
+ The XAccessible to return in the getAccessibleParent call
+ */
+ OAccessibleContextWrapper(
+ const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rxORB,
+ const ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessibleContext >& _rxInnerAccessibleContext,
+ const ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessible >& _rxOwningAccessible,
+ const ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessible >& _rxParentAccessible
+ );
+
+ protected:
+ // XInterface
+ DECLARE_XINTERFACE( )
+ // XTypeProvider
+ DECLARE_XTYPEPROVIDER( )
+
+ // XAccessibleContext
+ virtual sal_Int32 SAL_CALL getAccessibleChildCount( ) throw (::com::sun::star::uno::RuntimeException);
+ virtual ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleChild( sal_Int32 i ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
+ virtual ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleParent( ) throw (::com::sun::star::uno::RuntimeException);
+ virtual sal_Int32 SAL_CALL getAccessibleIndexInParent( ) throw (::com::sun::star::uno::RuntimeException);
+ virtual sal_Int16 SAL_CALL getAccessibleRole( ) throw (::com::sun::star::uno::RuntimeException);
+ virtual ::rtl::OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
+ virtual ::rtl::OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
+ virtual ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessibleRelationSet > SAL_CALL getAccessibleRelationSet( ) throw (::com::sun::star::uno::RuntimeException);
+ virtual ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessibleStateSet > SAL_CALL getAccessibleStateSet( ) throw (::com::sun::star::uno::RuntimeException);
+ virtual ::com::sun::star::lang::Locale SAL_CALL getLocale( ) throw (::drafts::com::sun::star::accessibility::IllegalAccessibleComponentStateException, ::com::sun::star::uno::RuntimeException);
+
+ // XAccessibleEventBroadcaster
+ virtual void SAL_CALL addEventListener( const ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessibleEventListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
+ virtual void SAL_CALL removeEventListener( const ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessibleEventListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
+
+ // XAccessibleEventListener
+ virtual void SAL_CALL notifyEvent( const ::drafts::com::sun::star::accessibility::AccessibleEventObject& aEvent ) throw (::com::sun::star::uno::RuntimeException);
+
+ // XEventListener
+ virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& _rEvent ) throw (::com::sun::star::uno::RuntimeException);
+
+ // OComponentHelper
+ virtual void SAL_CALL disposing() throw (::com::sun::star::uno::RuntimeException);
+
+ protected:
+ ~OAccessibleContextWrapper( );
+
+ OAccessibleContextWrapper( ); // never implemented
+ OAccessibleContextWrapper( const OAccessibleContextWrapper& ); // never implemented
+ OAccessibleContextWrapper& operator=( const OAccessibleContextWrapper& ); // never implemented
+ };
+
+//.............................................................................
+} // namespace accessibility
+//.............................................................................
+
+#endif // COMPHELPER_ACCESSIBLE_WRAPPER_HXX
diff --git a/comphelper/inc/comphelper/accimplaccess.hxx b/comphelper/inc/comphelper/accimplaccess.hxx
index 29f85f80ae4d..4e8f3de52b8b 100644
--- a/comphelper/inc/comphelper/accimplaccess.hxx
+++ b/comphelper/inc/comphelper/accimplaccess.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: accimplaccess.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: fs $ $Date: 2002-04-26 05:53:37 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:29 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -201,16 +201,4 @@ namespace comphelper
#endif // COMPHELPER_ACCIMPLACCESS_HXX
-/*************************************************************************
- * history:
- * $Log: not supported by cvs2svn $
- * Revision 1.2 2002/04/23 11:02:25 fs
- * #98750# removed the unnecessary new/delete operators
- *
- * Revision 1.1 2002/04/17 08:37:53 fs
- * initial checkin - helper class for tunneling an XAccessibleContext implementation
- *
- *
- * Revision 1.0 16.04.2002 15:30:25 fs
- ************************************************************************/
diff --git a/comphelper/inc/comphelper/composedprops.hxx b/comphelper/inc/comphelper/composedprops.hxx
index e0a8e9807eb8..4d1975019d06 100644
--- a/comphelper/inc/comphelper/composedprops.hxx
+++ b/comphelper/inc/comphelper/composedprops.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: composedprops.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: fs $ $Date: 2001-01-23 16:07:39 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:30 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -171,10 +171,4 @@ namespace comphelper
#endif // _COMPHELPER_COMPOSEDPROPS_HXX_
-/*************************************************************************
- * history:
- * $Log: not supported by cvs2svn $
- *
- * Revision 1.0 23.01.01 14:36:38 fs
- ************************************************************************/
diff --git a/comphelper/inc/comphelper/container.hxx b/comphelper/inc/comphelper/container.hxx
index 80b8273d9185..1dd2a554273a 100644
--- a/comphelper/inc/comphelper/container.hxx
+++ b/comphelper/inc/comphelper/container.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: container.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: mh $ $Date: 2001-01-31 14:10:03 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:30 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -123,13 +123,3 @@ protected:
#endif // _COMPHELPER_CONTAINER_HXX_
-/*************************************************************************
- * history:
- * $Log: not supported by cvs2svn $
- * Revision 1.1.1.1 2000/09/29 11:28:15 fs
- * initial import
- *
- *
- * Revision 1.0 29.09.00 09:01:05 fs
- ************************************************************************/
-
diff --git a/comphelper/inc/comphelper/enumhelper.hxx b/comphelper/inc/comphelper/enumhelper.hxx
index 7c963f79a81a..095db0720219 100644
--- a/comphelper/inc/comphelper/enumhelper.hxx
+++ b/comphelper/inc/comphelper/enumhelper.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: enumhelper.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: fs $ $Date: 2000-10-11 15:22:15 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:30 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -140,13 +140,4 @@ public:
#endif // _COMPHELPER_ENUMHELPER_HXX_
-/*************************************************************************
- * history:
- * $Log: not supported by cvs2svn $
- * Revision 1.1.1.1 2000/09/29 11:28:15 fs
- * initial import
- *
- *
- * Revision 1.0 29.09.00 08:49:14 fs
- ************************************************************************/
diff --git a/comphelper/inc/comphelper/interaction.hxx b/comphelper/inc/comphelper/interaction.hxx
index 6de1eadb36aa..d92308608903 100644
--- a/comphelper/inc/comphelper/interaction.hxx
+++ b/comphelper/inc/comphelper/interaction.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: interaction.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: fs $ $Date: 2000-10-31 08:30:37 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:30 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -190,13 +190,4 @@ namespace comphelper
#endif // _COMPHELPER_INTERACTION_HXX_
-/*************************************************************************
- * history:
- * $Log: not supported by cvs2svn $
- * Revision 1.1 2000/10/25 12:45:52 fs
- * initial checkin - helper for implementing using XInteractionContinution and XInteractionRequest
- *
- *
- * Revision 1.0 25.10.00 12:23:23 fs
- ************************************************************************/
diff --git a/comphelper/inc/comphelper/propagg.hxx b/comphelper/inc/comphelper/propagg.hxx
index 539d8828d612..19045cd4c18f 100644
--- a/comphelper/inc/comphelper/propagg.hxx
+++ b/comphelper/inc/comphelper/propagg.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: propagg.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: fs $ $Date: 2002-10-18 13:53:11 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:30 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -70,9 +70,7 @@
#include <comphelper/propstate.hxx>
#endif
-#ifndef __SGI_STL_MAP
#include <map>
-#endif
//=========================================================================
//= property helper classes
diff --git a/comphelper/inc/comphelper/proparrhlp.hxx b/comphelper/inc/comphelper/proparrhlp.hxx
index e26ad93f72c3..1685be3aba0e 100644
--- a/comphelper/inc/comphelper/proparrhlp.hxx
+++ b/comphelper/inc/comphelper/proparrhlp.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: proparrhlp.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: kz $ $Date: 2002-08-13 13:21:27 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:31 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -175,6 +175,6 @@ protected:
}
//... namespace comphelper ................................................
-#endif // _COMPHELPER_PROPERTY_ARRAY_HELPER_HXX_
+#endif _COMPHELPER_PROPERTY_ARRAY_HELPER_HXX_
diff --git a/comphelper/inc/comphelper/property.hxx b/comphelper/inc/comphelper/property.hxx
index eae7ac404a8e..79bc860da0c3 100644
--- a/comphelper/inc/comphelper/property.hxx
+++ b/comphelper/inc/comphelper/property.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: property.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: hjs $ $Date: 2001-03-13 18:24:20 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:31 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -74,6 +74,7 @@
#ifndef _COM_SUN_STAR_BEANS_XPROPERTYSET_HPP_
#include <com/sun/star/beans/XPropertySet.hpp>
#endif
+#include <functional>
//=========================================================================
//= property helper classes
@@ -89,14 +90,29 @@ namespace comphelper
/** compare two properties by name
*/
-extern int
-#if defined( WNT )
- __cdecl
-#endif
-#if defined( ICC ) && defined( OS2 )
-_Optlink
-#endif
- PropertyCompare( const void* pFirst, const void* pSecond);
+ struct PropertyStringLessFunctor : ::std::binary_function< ::com::sun::star::beans::Property, ::rtl::OUString, bool >
+ {
+ // ................................................................
+ inline bool operator()( const ::com::sun::star::beans::Property& lhs, const ::rtl::OUString& rhs ) const
+ {
+ return lhs.Name.compareTo(rhs) < 0;
+ }
+ // ................................................................
+ inline bool operator()( const ::rtl::OUString& lhs, const ::com::sun::star::beans::Property& rhs ) const
+ {
+ return lhs.compareTo(rhs.Name) < 0;
+ }
+ };
+ //--------------------------------------------------------------------------
+ // comparing two property instances
+ struct PropertyCompareByName : public ::std::binary_function< ::com::sun::star::beans::Property, ::com::sun::star::beans::Property, bool >
+ {
+ bool operator() (const ::com::sun::star::beans::Property& x, const ::com::sun::star::beans::Property& y) const
+ {
+ return x.Name.compareTo(y.Name) < 0;// ? true : false;
+ }
+ };
+
//------------------------------------------------------------------
/// remove the property with the given name from the given sequence
diff --git a/comphelper/inc/comphelper/propertycontainer.hxx b/comphelper/inc/comphelper/propertycontainer.hxx
index 8042cf35b50d..147ef3091e36 100644
--- a/comphelper/inc/comphelper/propertycontainer.hxx
+++ b/comphelper/inc/comphelper/propertycontainer.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: propertycontainer.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: mh $ $Date: 2001-01-31 14:52:49 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:31 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -133,13 +133,25 @@ public:
private:
// comparing two property descriptions
- struct PropertyDescriptionCompareByHandle : public ::std::binary_function< PropertyDescription, PropertyDescription, sal_Bool >
+ struct PropertyDescriptionCompareByHandle : public ::std::binary_function< PropertyDescription, PropertyDescription, bool >
{
bool operator() (const PropertyDescription& x, const PropertyDescription& y) const
{
return x.nHandle < y.nHandle;
}
};
+ // comparing two property descriptions
+ struct PropertyDescriptionHandleCompare : public ::std::binary_function< PropertyDescription, sal_Int32, bool >
+ {
+ bool operator() (const PropertyDescription& x, const sal_Int32& y) const
+ {
+ return x.nHandle < y;
+ }
+ bool operator() (const sal_Int32& x, const PropertyDescription& y) const
+ {
+ return x < y.nHandle;
+ }
+ };
private:
typedef ::std::vector< PropertyDescription > Properties;
@@ -246,19 +258,4 @@ private:
#endif // _COMPHELPER_PROPERTYCONTAINER_HXX_
-/*************************************************************************
- * history:
- * $Log: not supported by cvs2svn $
- * Revision 1.2 2000/10/13 12:09:55 oj
- * impl dtor to avoid wrong delete call
- *
- * Revision 1.1.1.1 2000/09/29 11:28:15 fs
- * initial import
- *
- * Revision 1.1 2000/09/21 08:51:34 fs
- * base class for classes which are simple property containers
- *
- *
- * Revision 1.0 21.09.00 08:16:18 fs
- ************************************************************************/
diff --git a/comphelper/inc/comphelper/weakeventlistener.hxx b/comphelper/inc/comphelper/weakeventlistener.hxx
index 8a1233aea213..24a4932dbc3c 100644
--- a/comphelper/inc/comphelper/weakeventlistener.hxx
+++ b/comphelper/inc/comphelper/weakeventlistener.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: weakeventlistener.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: fs $ $Date: 2002-08-27 11:58:03 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:31 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -208,10 +208,4 @@ namespace comphelper
#endif// COMPHELPER_WEAKEVENTLISTENER_HXX
-/*************************************************************************
- * history:
- * $Log: not supported by cvs2svn $
- *
- * Revision 1.0 22.08.2002 11:18:14 fs
- ************************************************************************/
diff --git a/comphelper/prj/d.lst b/comphelper/prj/d.lst
index 3721352e8fe2..14eb381bbbe9 100644
--- a/comphelper/prj/d.lst
+++ b/comphelper/prj/d.lst
@@ -9,6 +9,7 @@
mkdir: %_DEST%\inc%_EXT%\comphelper
..\inc\comphelper\*.hxx %_DEST%\inc%_EXT%\comphelper\*.hxx
..\inc\comphelper\extract.hxx %_DEST%\inc%_EXT%\cppuhelper\extract.hxx
+..\version.mk %_DEST%\inc%_EXT%\comphelper\version.mk
..\%__SRC%\lib\lib*static*.dylib %_DEST%\lib%_EXT%\lib*static*.dylib
..\%__SRC%\misc\*staticdatamembers.cxx %_DEST%\inc%_EXT%\*staticdatamembers.cxx
diff --git a/comphelper/source/compare/AnyCompareFactory.cxx b/comphelper/source/compare/AnyCompareFactory.cxx
index 6461e7aa50d2..b2267a97abb8 100644
--- a/comphelper/source/compare/AnyCompareFactory.cxx
+++ b/comphelper/source/compare/AnyCompareFactory.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: AnyCompareFactory.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: mav $ $Date: 2002-01-14 09:44:33 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:33 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -122,7 +122,7 @@ public:
}
- virtual sal_Int16 SAL_CALL compare( const Any& any1, const Any& any2 ) throw();
+ virtual sal_Int16 SAL_CALL compare( const Any& any1, const Any& any2 ) throw(RuntimeException);
};
//=============================================================================
@@ -144,7 +144,7 @@ public:
}
// XAnyCompareFactory
- virtual Reference< XAnyCompare > SAL_CALL createAnyCompareByName ( const OUString& aPropertyName ) throw();
+ virtual Reference< XAnyCompare > SAL_CALL createAnyCompareByName ( const OUString& aPropertyName ) throw(::com::sun::star::uno::RuntimeException);
// XInitialization
virtual void SAL_CALL initialize( const Sequence< Any >& aArguments )
@@ -158,7 +158,7 @@ public:
//===========================================================================================
-sal_Int16 SAL_CALL AnyCompare::compare( const Any& any1, const Any& any2 ) throw()
+sal_Int16 SAL_CALL AnyCompare::compare( const Any& any1, const Any& any2 ) throw(::com::sun::star::uno::RuntimeException)
{
sal_Int16 aResult = 0;
@@ -178,7 +178,7 @@ sal_Int16 SAL_CALL AnyCompare::compare( const Any& any1, const Any& any2 ) throw
//===========================================================================================
-Reference< XAnyCompare > SAL_CALL AnyCompareFactory::createAnyCompareByName( const OUString& aPropertyName ) throw()
+Reference< XAnyCompare > SAL_CALL AnyCompareFactory::createAnyCompareByName( const OUString& aPropertyName ) throw(::com::sun::star::uno::RuntimeException)
{
// for now only OUString properties compare is implemented
// so no check for the property name is done
diff --git a/comphelper/source/container/IndexedPropertyValuesContainer.cxx b/comphelper/source/container/IndexedPropertyValuesContainer.cxx
index 15120c08c775..26d700f30049 100644
--- a/comphelper/source/container/IndexedPropertyValuesContainer.cxx
+++ b/comphelper/source/container/IndexedPropertyValuesContainer.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: IndexedPropertyValuesContainer.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: sab $ $Date: 2001-03-09 19:20:35 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:34 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -261,7 +261,7 @@ sal_Int32 SAL_CALL IndexedPropertyValuesContainer::getCount( )
sal_Bool SAL_CALL IndexedPropertyValuesContainer::hasElements( )
throw(::com::sun::star::uno::RuntimeException)
{
- return maProperties.size() != 0;
+ return !maProperties.empty();
}
//XServiceInfo
diff --git a/comphelper/source/container/NamedPropertyValuesContainer.cxx b/comphelper/source/container/NamedPropertyValuesContainer.cxx
index 46f36aac6792..156a1e2da4c6 100644
--- a/comphelper/source/container/NamedPropertyValuesContainer.cxx
+++ b/comphelper/source/container/NamedPropertyValuesContainer.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: NamedPropertyValuesContainer.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: sab $ $Date: 2001-03-09 19:20:35 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:34 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -78,9 +78,8 @@
#ifndef _COMPHELPER_STLTYPES_HXX_
#include <comphelper/stl_types.hxx>
#endif
-#ifndef __SGI_STL_MAP
+
#include <map>
-#endif
using namespace com::sun::star;
@@ -155,7 +154,7 @@ void SAL_CALL NamedPropertyValuesContainer::insertByName( const rtl::OUString& a
if( !(aElement >>= aProps ) )
throw lang::IllegalArgumentException();
- maProperties[ aName ] = aProps;
+ maProperties.insert( NamedPropertyValues::value_type(aName ,aProps) );
}
void SAL_CALL NamedPropertyValuesContainer::removeByName( const ::rtl::OUString& Name )
@@ -235,7 +234,7 @@ sal_Bool SAL_CALL NamedPropertyValuesContainer::hasByName( const ::rtl::OUString
sal_Bool SAL_CALL NamedPropertyValuesContainer::hasElements( )
throw(::com::sun::star::uno::RuntimeException)
{
- return maProperties.size() != 0;
+ return !maProperties.empty();
}
//XServiceInfo
diff --git a/comphelper/source/container/container.cxx b/comphelper/source/container/container.cxx
index 9794e6c0a9e2..9f7c89e8d2ec 100644
--- a/comphelper/source/container/container.cxx
+++ b/comphelper/source/container/container.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: container.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: jl $ $Date: 2001-03-22 13:29:49 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:34 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -191,13 +191,3 @@ IndexAccessIterator::IndexAccessIterator(::com::sun::star::uno::Reference< ::com
//.........................................................................
-/*************************************************************************
- * history:
- * $Log: not supported by cvs2svn $
- * Revision 1.1.1.1 2000/09/29 11:28:15 fs
- * initial import
- *
- *
- * Revision 1.0 29.09.00 08:59:20 fs
- ************************************************************************/
-
diff --git a/comphelper/source/container/enumhelper.cxx b/comphelper/source/container/enumhelper.cxx
index 407d53823cdf..9f0369367231 100644
--- a/comphelper/source/container/enumhelper.cxx
+++ b/comphelper/source/container/enumhelper.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: enumhelper.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: fs $ $Date: 2000-09-29 11:28:15 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:34 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -135,10 +135,4 @@ staruno::Any SAL_CALL OEnumerationByIndex::nextElement( )
} // namespace comphelper
//.........................................................................
-/*************************************************************************
- * history:
- * $Log: not supported by cvs2svn $
- *
- * Revision 1.0 29.09.00 08:47:37 fs
- ************************************************************************/
diff --git a/comphelper/source/container/namecontainer.cxx b/comphelper/source/container/namecontainer.cxx
index a5a2e799c195..f51552b26591 100644
--- a/comphelper/source/container/namecontainer.cxx
+++ b/comphelper/source/container/namecontainer.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: namecontainer.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: cl $ $Date: 2001-03-21 10:18:55 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:34 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -160,7 +160,7 @@ void SAL_CALL NameContainer::insertByName( const rtl::OUString& aName, const Any
if( aElement.getValueType() != maType )
throw IllegalArgumentException();
- maProperties[ aName ] = aElement;
+ maProperties.insert( SvGenericNameContainerMapImpl::value_type(aName,aElement));
}
void SAL_CALL NameContainer::removeByName( const ::rtl::OUString& Name )
@@ -242,7 +242,7 @@ sal_Bool SAL_CALL NameContainer::hasElements( )
{
MutexGuard aGuard( maMutex );
- return maProperties.size() != 0;
+ return !maProperties.empty();
}
Type SAL_CALL NameContainer::getElementType()
diff --git a/comphelper/source/eventattachermgr/eventattachermgr.cxx b/comphelper/source/eventattachermgr/eventattachermgr.cxx
index faefd4ba7a23..035547e80c15 100644
--- a/comphelper/source/eventattachermgr/eventattachermgr.cxx
+++ b/comphelper/source/eventattachermgr/eventattachermgr.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: eventattachermgr.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: fs $ $Date: 2001-08-13 16:01:47 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:35 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -636,7 +636,7 @@ void SAL_CALL ImplEventAttacherManager::registerScriptEvent
(*aObjIt).aHelper, ScriptEvent.ListenerType,
ScriptEvent.AddListenerParam, ScriptEvent.EventMethod );
}
- catch( ... )
+ catch( Exception& )
{
}
@@ -757,12 +757,15 @@ void SAL_CALL ImplEventAttacherManager::insertEntry(sal_Int32 nIndex)
if( nIndex < 0 )
throw IllegalArgumentException();
- ::std::deque<AttacherIndex_Impl>::iterator aIt = aIndex.begin();
- while( nIndex-- )
- aIt++;
+// ::std::deque<AttacherIndex_Impl>::iterator aIt = aIndex.begin();
+// while( nIndex-- )
+// aIt++;
+
+ if ( static_cast< ::std::deque< AttacherIndex_Impl >::size_type>(nIndex) >= aIndex.size() )
+ aIndex.resize(nIndex+1);
AttacherIndex_Impl aTmp;
- aIndex.insert( aIt, aTmp );
+ aIndex.insert( aIndex.begin() + nIndex, aTmp );
}
//-----------------------------------------------------------------------------
@@ -790,7 +793,7 @@ Sequence< ScriptEventDescriptor > SAL_CALL ImplEventAttacherManager::getScriptEv
::std::deque< ScriptEventDescriptor >::iterator aEvtIt = (*aIt).aEventList.begin();
::std::deque< ScriptEventDescriptor >::iterator aEvtEnd = (*aIt).aEventList.end();
- i = 0;
+ sal_Int32 i = 0;
while( aEvtIt != aEvtEnd )
{
pArray[i++] = *aEvtIt;
@@ -810,12 +813,7 @@ void SAL_CALL ImplEventAttacherManager::attach(sal_Int32 nIndex, const Reference
if( nIndex < 0 || !xObject.is() )
throw IllegalArgumentException();
- ::std::deque<AttacherIndex_Impl>::iterator aIt = aIndex.begin();
- sal_Int32 i;
- for( i = 0; i < nIndex; i++ )
- aIt++;
-
- if( aIt == aIndex.end() )
+ if( static_cast< ::std::deque< AttacherIndex_Impl >::size_type>(nIndex) >= aIndex.size() )
{
// alte Dateien lesen
if( nVersion == 1 )
@@ -828,24 +826,26 @@ void SAL_CALL ImplEventAttacherManager::attach(sal_Int32 nIndex, const Reference
throw IllegalArgumentException();
}
+ ::std::deque< AttacherIndex_Impl >::iterator aCurrentPosition = aIndex.begin() + nIndex;
+
AttachedObject_Impl aTmp;
aTmp.xTarget = xObject;
aTmp.aHelper = Helper;
- (*aIt).aObjList.push_back( aTmp );
+ aCurrentPosition->aObjList.push_back( aTmp );
//::std::deque< AttachedObject_Impl >::iterator aObjIt = (*aIt).aObjList.back();
- AttachedObject_Impl & rCurObj = (*aIt).aObjList.back();
+ AttachedObject_Impl & rCurObj = aCurrentPosition->aObjList.back();
#ifdef DEQUE_OK
- rCurObj.aAttachedListenerSeq = Sequence< Reference< XEventListener > >( (*aIt).aEventList.size() );
+ rCurObj.aAttachedListenerSeq = Sequence< Reference< XEventListener > >( aCurrentPosition->aEventList.size() );
#else
- rCurObj.aAttachedListenerSeq = Sequence< Reference< XEventListener > >( (*aIt).aEventList.getLength() );
+ rCurObj.aAttachedListenerSeq = Sequence< Reference< XEventListener > >( aCurrentPosition->aEventList.getLength() );
#endif
Reference< XEventListener > * pArray = rCurObj.aAttachedListenerSeq.getArray();
#ifdef DEQUE_OK
- ::std::deque< ScriptEventDescriptor >::iterator aEvtIt = (*aIt).aEventList.begin();
- ::std::deque< ScriptEventDescriptor >::iterator aEvtEnd = (*aIt).aEventList.end();
- i = 0;
+ ::std::deque< ScriptEventDescriptor >::iterator aEvtIt = aCurrentPosition->aEventList.begin();
+ ::std::deque< ScriptEventDescriptor >::iterator aEvtEnd = aCurrentPosition->aEventList.end();
+ sal_Int32 i = 0;
while( aEvtIt != aEvtEnd )
{
Reference< XAllListener > xAll =
@@ -857,7 +857,7 @@ void SAL_CALL ImplEventAttacherManager::attach(sal_Int32 nIndex, const Reference
rCurObj.aHelper, (*aEvtIt).ScriptType,
(*aEvtIt).AddListenerParam, (*aEvtIt).EventMethod );
}
- catch( ... )
+ catch( Exception& )
{
}
@@ -865,9 +865,9 @@ void SAL_CALL ImplEventAttacherManager::attach(sal_Int32 nIndex, const Reference
aEvtIt++;
}
#else
- sal_Int32 nLen = (*aIt).aEventList.getLength();
- ScriptEventDescriptor * pEL = (*aIt).aEventList.getArray();
- for( i = 0; i < nLen; i++ )
+ sal_Int32 nLen = aCurrentPosition->aEventList.getLength();
+ ScriptEventDescriptor * pEL = aCurrentPosition->aEventList.getArray();
+ for(sal_Int32 i = 0; i < nLen; ++i )
{
Reference< XAllListener > xAll =
new AttacherAllListener_Impl( this, pEL[i].ScriptType, pEL[i].ScriptCode );
@@ -878,7 +878,7 @@ void SAL_CALL ImplEventAttacherManager::attach(sal_Int32 nIndex, const Reference
rCurObj.aHelper, pEL[i].ListenerType,
pEL[i].AddListenerParam, pEL[i].EventMethod );
}
- catch( ... )
+ catch( Exception& )
{
}
@@ -893,18 +893,12 @@ void SAL_CALL ImplEventAttacherManager::detach(sal_Int32 nIndex, const Reference
{
Guard< Mutex > aGuard( aLock );
//return;
- if( nIndex < 0 || !xObject.is() )
+ if( nIndex < 0 || static_cast< ::std::deque< AttacherIndex_Impl >::size_type>(nIndex) >= aIndex.size() || !xObject.is() )
throw IllegalArgumentException();
- ::std::deque<AttacherIndex_Impl>::iterator aIt = aIndex.begin();
- for( sal_Int32 i = 0; i < nIndex; i++ )
- aIt++;
-
- if( aIt == aIndex.end() )
- throw IllegalArgumentException();
-
- ::std::deque< AttachedObject_Impl >::iterator aObjIt = (*aIt).aObjList.begin();
- ::std::deque< AttachedObject_Impl >::iterator aObjEnd = (*aIt).aObjList.end();
+ ::std::deque< AttacherIndex_Impl >::iterator aCurrentPosition = aIndex.begin() + nIndex;
+ ::std::deque< AttachedObject_Impl >::iterator aObjIt = aCurrentPosition->aObjList.begin();
+ ::std::deque< AttachedObject_Impl >::iterator aObjEnd = aCurrentPosition->aObjList.end();
while( aObjIt != aObjEnd )
{
if( (*aObjIt).xTarget == xObject )
@@ -912,9 +906,9 @@ void SAL_CALL ImplEventAttacherManager::detach(sal_Int32 nIndex, const Reference
Reference< XEventListener > * pArray = (*aObjIt).aAttachedListenerSeq.getArray();
#ifdef DEQUE_OK
- ::std::deque< ScriptEventDescriptor >::iterator aEvtIt = (*aIt).aEventList.begin();
- ::std::deque< ScriptEventDescriptor >::iterator aEvtEnd = (*aIt).aEventList.end();
- i = 0;
+ ::std::deque< ScriptEventDescriptor >::iterator aEvtIt = aCurrentPosition->aEventList.begin();
+ ::std::deque< ScriptEventDescriptor >::iterator aEvtEnd = aCurrentPosition->aEventList.end();
+ sal_Int32 i = 0;
while( aEvtIt != aEvtEnd )
{
if( pArray[i].is() )
@@ -924,7 +918,7 @@ void SAL_CALL ImplEventAttacherManager::detach(sal_Int32 nIndex, const Reference
xAttacher->removeListener( (*aObjIt).xTarget, (*aEvtIt).ListenerType,
(*aEvtIt).AddListenerParam, pArray[i] );
}
- catch( ... )
+ catch( Exception& )
{
}
}
@@ -932,8 +926,8 @@ void SAL_CALL ImplEventAttacherManager::detach(sal_Int32 nIndex, const Reference
aEvtIt++;
}
#else
- sal_Int32 nLen = (*aIt).aEventList.getLength();
- ScriptEventDescriptor * pEL = (*aIt).aEventList.getArray();
+ sal_Int32 nLen = aCurrentPosition->aEventList.getLength();
+ ScriptEventDescriptor * pEL = aCurrentPosition->aEventList.getArray();
for( sal_Int32 i = 0; i < nLen; i++ )
{
if( pArray[i].is() )
@@ -943,13 +937,13 @@ void SAL_CALL ImplEventAttacherManager::detach(sal_Int32 nIndex, const Reference
xAttacher->removeListener( (*aObjIt).xTarget, pEL[i].ListenerType,
pEL[i].AddListenerParam, pArray[i] );
}
- catch( ... )
+ catch( Exception& )
{
}
}
}
#endif
- (*aIt).aObjList.erase( aObjIt );
+ aCurrentPosition->aObjList.erase( aObjIt );
break;
}
aObjIt++;
@@ -1112,19 +1106,3 @@ void SAL_CALL ImplEventAttacherManager::read(const Reference< XObjectInputStream
} // namesapce comphelper
-/*************************************************************************
- * history:
- * $Log: not supported by cvs2svn $
- * Revision 1.3 2001/08/07 07:01:18 fs
- * #90621# corrected revokeScriptEvent
- *
- * Revision 1.2 2001/03/15 07:46:02 fs
- * NAMESPACE_STD(\:i) => ::std::\1
- *
- * Revision 1.1.1.1 2000/09/29 11:28:15 fs
- * initial import
- *
- *
- * Revision 1.0 29.09.00 09:06:41 fs
- ************************************************************************/
-
diff --git a/comphelper/source/misc/accessiblecomponenthelper.cxx b/comphelper/source/misc/accessiblecomponenthelper.cxx
index edb6798e4b96..a20b3c5ee32b 100644
--- a/comphelper/source/misc/accessiblecomponenthelper.cxx
+++ b/comphelper/source/misc/accessiblecomponenthelper.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: accessiblecomponenthelper.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: tbe $ $Date: 2002-09-03 12:16:52 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:36 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -252,19 +252,4 @@ namespace comphelper
} // namespace comphelper
//.........................................................................
-/*************************************************************************
- * history:
- * $Log: not supported by cvs2svn $
- * Revision 1.3 2002/05/08 15:38:36 fs
- * #99218# allow abstract external locks in addition to the own mutex
- *
- * Revision 1.2 2002/04/26 11:03:48 fs
- * #98750# corrected size calculation
- *
- * Revision 1.1 2002/04/23 11:10:21 fs
- * initial checkin - helper for implementing an XAccessible(Extended)Component
- *
- *
- * Revision 1.0 18.04.2002 11:54:56 fs
- ************************************************************************/
diff --git a/comphelper/source/misc/accessiblecontexthelper.cxx b/comphelper/source/misc/accessiblecontexthelper.cxx
index b4225e532e7a..21cd2d111b8f 100644
--- a/comphelper/source/misc/accessiblecontexthelper.cxx
+++ b/comphelper/source/misc/accessiblecontexthelper.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: accessiblecontexthelper.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: fs $ $Date: 2002-12-06 13:00:43 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:36 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -196,7 +196,16 @@ namespace comphelper
//---------------------------------------------------------------------
void SAL_CALL OAccessibleContextHelper::addEventListener( const Reference< XAccessibleEventListener >& _rxListener ) throw (RuntimeException)
{
- OContextEntryGuard aGuard( this );
+ OMutexGuard aGuard( getExternalLock() );
+ // don't use the OContextEntryGuard - it will throw an exception if we're not alive
+ // anymore, while the most recent specification for XComponent states that we should
+ // silently ignore the call in such a situation
+ if ( !isAlive() )
+ {
+ if ( _rxListener.is() )
+ _rxListener->disposing( EventObject( *this ) );
+ return;
+ }
if ( _rxListener.is() )
{
@@ -210,7 +219,12 @@ namespace comphelper
//---------------------------------------------------------------------
void SAL_CALL OAccessibleContextHelper::removeEventListener( const Reference< XAccessibleEventListener >& _rxListener ) throw (RuntimeException)
{
- OContextEntryGuard aGuard( this );
+ OMutexGuard aGuard( getExternalLock() );
+ // don't use the OContextEntryGuard - it will throw an exception if we're not alive
+ // anymore, while the most recent specification for XComponent states that we should
+ // silently ignore the call in such a situation
+ if ( !isAlive() )
+ return;
if ( _rxListener.is() )
{
@@ -387,40 +401,4 @@ namespace comphelper
} // namespace comphelper
//.........................................................................
-/*************************************************************************
- * history:
- * $Log: not supported by cvs2svn $
- * Revision 1.10 2002/11/22 13:52:03 tbe
- * #105058# make NotifyAccessibleEvent virtual
- *
- * Revision 1.9 2002/08/14 12:00:00 obr
- * #100201# removed state change event to DEFUNC
- *
- * Revision 1.8 2002/07/22 07:00:37 sb
- * #100004# Added second NotifyAccessibleEvent with AccessibleEventBuffer.
- *
- * Revision 1.7 2002/05/08 15:38:36 fs
- * #99218# allow abstract external locks in addition to the own mutex
- *
- * Revision 1.6 2002/05/08 07:54:46 fs
- * #98750# no use the context (not the XAccessible) as event source, again, as usual in the UNO world
- *
- * Revision 1.5 2002/04/30 07:42:27 hr
- * #65293#: removed not needed vcl/svapp.hxx includes to reduce dependencies
- *
- * Revision 1.4 2002/04/26 14:24:28 fs
- * #98750# +getAccessibleCreator / use the creator (XAccessible) as event source
- *
- * Revision 1.3 2002/04/26 07:25:50 fs
- * #98750# corrected NotifyAccessibleEvent
- *
- * Revision 1.2 2002/04/26 05:52:18 fs
- * #98750# use correct broadcasthelper (in the WeagAggComponentImpl* base)
- *
- * Revision 1.1 2002/04/23 11:10:30 fs
- * initial checkin - helper for implementing an XAccessibleContext
- *
- *
- * Revision 1.0 17.04.2002 16:06:46 fs
- ************************************************************************/
diff --git a/comphelper/source/misc/accessibleeventnotifier.cxx b/comphelper/source/misc/accessibleeventnotifier.cxx
index 5f947f1db175..5e1ffd6d8d85 100644
--- a/comphelper/source/misc/accessibleeventnotifier.cxx
+++ b/comphelper/source/misc/accessibleeventnotifier.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: accessibleeventnotifier.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: sab $ $Date: 2003-01-22 15:48:55 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:36 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -85,184 +85,8 @@ namespace comphelper
//= AccessibleEventNotifier
//=====================================================================
//---------------------------------------------------------------------
- ::osl::Mutex AccessibleEventNotifier::s_aMutex;
- AccessibleEventNotifier* AccessibleEventNotifier::s_pNotifier = NULL;
-
- //---------------------------------------------------------------------
- AccessibleEventNotifier::AccessibleEventNotifier( )
- :m_bTerminateRequested( sal_False )
- {
- // no events so far
- m_aEventGuard.reset();
- }
-
- //---------------------------------------------------------------------
- AccessibleEventNotifier::~AccessibleEventNotifier( )
- {
- OSL_ENSURE( m_aClients.empty() && m_aDisposedClients.empty(),
- "AccessibleEventNotifier::~AccessibleEventNotifier: not correctly terminated - resource leak!" );
- }
-
- //---------------------------------------------------------------------
- namespace
- {
- static void lcl_copyInterfaceContainer( const ::cppu::OInterfaceContainerHelper& _rSource, ::cppu::OInterfaceContainerHelper& _rDest )
- {
- _rDest.clear();
- Sequence< Reference< XInterface > > aInterfaces( _rSource.getElements() );
-
- const Reference< XInterface >* pInterfaces = aInterfaces.getConstArray();
- const Reference< XInterface >* pInterfacesEnd = pInterfaces + aInterfaces.getLength();
- for ( ; pInterfaces != pInterfacesEnd; ++pInterfaces )
- _rDest.addInterface( *pInterfaces );
- }
- }
- //---------------------------------------------------------------------
- void SAL_CALL AccessibleEventNotifier::run()
- {
- sal_Bool bTerminate = sal_False;
-
- do
- {
- // notify the events we have in the queue
- // --- <mutex_lock> -------------------------------------------
- {
- ::osl::MutexGuard aGuard( s_aMutex );
-
- // continue with all events we have so far
- while ( !m_aEvents.empty() )
- {
- // the first event in the queue
- ClientEvent aEvent = m_aEvents.front();
- m_aEvents.pop_front();
-
- // special handling for "disposing"
- if ( aEvent.second.EventId < 0 )
- {
- // look up in the map for "disposed clients"
- ClientMap::iterator aPos = m_aDisposedClients.find( aEvent.first );
- OSL_ENSURE( m_aDisposedClients.end() != aPos,
- "AccessibleEventNotifier::run: could not find this client!" );
-
- if ( m_aDisposedClients.end() != aPos )
- {
- EventObject aDisposalEvent;
- aDisposalEvent.Source = aEvent.second.Source;
-
- // want to call the listeners with a released mutex
- // thus we have to copy the container, so that we can savely use the copy while
- // our mutex is released
-
- ::cppu::OInterfaceContainerHelper aCopy( s_aMutex );
- lcl_copyInterfaceContainer( *aPos->second, aCopy );
-
- // we do not need the entry in the "disposed clients" map anymore
- // because the "disposed" event is the _last_ one to be fired for a client
- delete aPos->second;
- m_aDisposedClients.erase( aPos );
-
- // now do the notification, and do it with the _copy_ after releasing the mutex
- // --- <mutex_release> ------------------------
- {
- MutexRelease aReleaseOnce( s_aMutex );
- aCopy.disposeAndClear( aDisposalEvent );
-
- // clear the aDisposalEvent while our mutex is _not_ acquired
- // this ensures that we do not - by accident - release the last reference
- // of the foreign component while our mutex is locked
- aDisposalEvent.Source.clear();
- }
- // --- </mutex_release> -----------------------
-
- // cleanup the thread if we do not have clients anymore
- implCleanupNotifier( );
- }
- }
- else
- {
- // look up the client for this event
- ClientMap::iterator aClientPos;
- if ( implLookupClient( aEvent.first, aClientPos ) )
- {
- // copy the listener sequence. We do _not_ want to call into the listeners
- // with our mutex locked
- Sequence< Reference< XInterface > > aListeners( aClientPos->second->getElements() );
- // default handling: loop through all listeners, and notify them
-
- const Reference< XInterface >* pListeners = aListeners.getConstArray();
- const Reference< XInterface >* pListenersEnd = pListeners + aListeners.getLength();
-
- // --- <mutex_release> ------------------------
- {
- // release the mutex within this block
- MutexRelease aReleaseOnce( s_aMutex );
-
- while ( pListeners != pListenersEnd )
- {
- try
- {
- static_cast< XAccessibleEventListener* >( pListeners->get() )->notifyEvent( aEvent.second );
- }
- catch( const Exception& e )
- {
- e;
- // silent this
- // no assertion, because a broken access remote bridge or something like this
- // can cause this exception
- }
- ++pListeners;
- }
- }
- // --- </mutex_release> -----------------------
- }
- else
- OSL_ENSURE( sal_False, "AccessibleEventNotifier::run: invalid client id found for accessible event!" );
- }
-
- // --- <mutex_release> --------------------------------
- {
- MutexRelease aReleaseOnce( s_aMutex );
- // clear the event
- // do this with our own mutex released, as clearing the event includes releasing the reference
- // to the css.lang.EventObject.Source - in case this release is non-trivial (i.e. the last
- // reference to the object), we certainly do _not_ want to do this while our
- // mutex is locked
- aEvent = ClientEvent();
- }
- // --- </mutex_release> -------------------------------
- }
-
- // reset the condition - will be set as soon as a new event arrives
- m_aEventGuard.reset();
- }
- // --- </mutex_lock> ------------------------------------------
-
- // wait (sleep) 'til a new event arrives
- m_aEventGuard.wait();
-
- // --- <mutex_lock> -------------------------------------------
- {
- ::osl::MutexGuard aGuard( s_aMutex );
- bTerminate = m_bTerminateRequested;
- }
- // --- </mutex_lock> ------------------------------------------
- }
- while ( !bTerminate );
- }
-
- //---------------------------------------------------------------------
- void SAL_CALL AccessibleEventNotifier::terminate()
- {
- AccessibleEventNotifier_BASE::terminate();
- // base class does not call onTerminated - just in case we want to do any cleanup there ...
- onTerminated();
- }
-
- //---------------------------------------------------------------------
- void SAL_CALL AccessibleEventNotifier::onTerminated()
- {
- delete this;
- }
+ ::osl::Mutex AccessibleEventNotifier::s_aMutex;
+ AccessibleEventNotifier::ClientMap AccessibleEventNotifier::s_aClients;
//---------------------------------------------------------------------
AccessibleEventNotifier::TClientId AccessibleEventNotifier::generateId()
@@ -275,8 +99,8 @@ namespace comphelper
// Note that the following relies on the fact the elements in the map are traveled with
// ascending keys (aka client ids)
- for ( ClientMap::const_iterator aLookup = m_aClients.begin();
- aLookup != m_aClients.end();
+ for ( ClientMap::const_iterator aLookup = s_aClients.begin();
+ aLookup != s_aClients.end();
++aLookup
)
{
@@ -285,15 +109,8 @@ namespace comphelper
if ( nCurrent - nBiggestUsedId > 1 )
{ // found a "gap"
- TClientId nCandidate = nBiggestUsedId + 1;
-
- // ensure that the id is really free - it's possible that the id is still in the "disposed clients"
- // map
- if ( m_aDisposedClients.end() == m_aDisposedClients.find( nCandidate ) )
- { // yep, it's really available
- nFreeId = nCandidate;
- break;
- }
+ nFreeId = nBiggestUsedId + 1;
+ break;
}
nBiggestUsedId = nCurrent;
@@ -302,7 +119,7 @@ namespace comphelper
if ( !nFreeId )
nFreeId = nBiggestUsedId + 1;
- OSL_ENSURE( m_aClients.end() == m_aClients.find( nFreeId ),
+ OSL_ENSURE( s_aClients.end() == s_aClients.find( nFreeId ),
"AccessibleEventNotifier::generateId: algorithm broken!" );
return nFreeId;
@@ -312,30 +129,19 @@ namespace comphelper
AccessibleEventNotifier::TClientId AccessibleEventNotifier::registerClient( )
{
::osl::MutexGuard aGuard( s_aMutex );
- if ( !s_pNotifier )
- { // the first client -> create the thread
-
- // create the thread object
- s_pNotifier = new AccessibleEventNotifier;
-
- // run the thread
- s_pNotifier->create();
- // note that the thread will start running, and the first thing it will do is stopping
- // in run, waiting for the mutex
- }
// generate a new client id
- TClientId nNewClientId = s_pNotifier->generateId( );
+ TClientId nNewClientId = generateId( );
// the event listeners for the new client
EventListeners* pNewListeners = new EventListeners( s_aMutex );
// note that we're using our own mutex here, so the listener containers for all
// our clients share this same mutex.
- // Shouldn't be any problem: the only situation where this is used is when the
- // thread is firing events, and there the mutex is locked, anyway.
+ // this is a reminiscense to the days where the notifier was asynchronous. Today this is
+ // completely nonsense, and potentially slowing down the Office me thinks ...
// add the client
- s_pNotifier->m_aClients.insert( ClientMap::value_type( nNewClientId, pNewListeners ) );
+ s_aClients.insert( ClientMap::value_type( nNewClientId, pNewListeners ) );
// outta here
return nNewClientId;
@@ -344,151 +150,49 @@ namespace comphelper
//---------------------------------------------------------------------
sal_Bool AccessibleEventNotifier::implLookupClient( const TClientId _nClient, ClientMap::iterator& _rPos )
{
- OSL_ENSURE( s_pNotifier, "AccessibleEventNotifier::implLookupClient: illegal call: thread not running!" );
- if ( !s_pNotifier )
- return sal_False;
-
// look up this client
- _rPos = s_pNotifier->m_aClients.find( _nClient );
- OSL_ENSURE( s_pNotifier->m_aClients.end() != _rPos, "AccessibleEventNotifier::implLookupClient: invalid client id (did you register your client?)!" );
+ _rPos = s_aClients.find( _nClient );
+ OSL_ENSURE( s_aClients.end() != _rPos, "AccessibleEventNotifier::implLookupClient: invalid client id (did you register your client?)!" );
- return ( s_pNotifier->m_aClients.end() != _rPos );
- }
-
- //---------------------------------------------------------------------
- void AccessibleEventNotifier::implRemoveEventsForClient( const TClientId _nClient,
- ::std::vector< Reference< XInterface > >& _rEnsureAlive )
- {
- OSL_ENSURE( s_pNotifier, "AccessibleEventNotifier::implRemoveEventsForClient: invalid call, save your documents before it crashes!" );
-
- EventQueue::iterator aEventLoop = s_pNotifier->m_aEvents.begin();
- while ( aEventLoop != s_pNotifier->m_aEvents.end() )
- {
- if ( _nClient == aEventLoop->first )
- {
- // this is an event queued for the same client
- // -> remove it from the queue
- EventQueue::iterator aErasePos( aEventLoop );
- ++aEventLoop;
-
- // keep the object alive until we can free our own mutex
- _rEnsureAlive.push_back( aErasePos->second.Source );
-
- // erase the event
- s_pNotifier->m_aEvents.erase( aErasePos );
- }
- else
- ++aEventLoop;
- }
- }
-
- //---------------------------------------------------------------------
- void AccessibleEventNotifier::implCleanupNotifier( )
- {
- OSL_PRECOND( s_pNotifier, "AccessibleEventNotifier::implCleanupNotifier: invalid call!" );
-
- if ( s_pNotifier->m_aClients.empty() && s_pNotifier->m_aDisposedClients.empty() )
- {
- // killing me softly ....
-
- // tell the instance it should terminate
- s_pNotifier->m_bTerminateRequested = sal_True;
-
- // awake it
- // (it is sleeping currently - if it were not, it would be in the section
- // guarded by s_aMutex (see <method>run</method>), which is impossible as
- // our thread here has this mutex currently ...
- s_pNotifier->m_aEventGuard.set();
-
- // reset the notifier holder - thus, the thread may continue to run the few microseconds
- // it will need to finally terminate, but if in the meantime new clients
- // are registered, we will not burden this (terminating) notifier with it,
- // but create a new one.
- // Note that the instance will delete itself in onTerminated
- s_pNotifier = NULL;
- }
-
- OSL_POSTCOND( !s_pNotifier || !s_pNotifier->m_aClients.empty() || !s_pNotifier->m_aDisposedClients.empty(),
- "AccessibleEventNotifier::implCleanupNotifier: post condition violated!" );
+ return ( s_aClients.end() != _rPos );
}
//---------------------------------------------------------------------
void AccessibleEventNotifier::revokeClient( const TClientId _nClient )
{
- // below, we will destroy some AccessibleEventObject instances
- // their Source member refers a foreign component (the broadcaster), which we
- // will release with this destruction. In case that is the _last_ release, it
- // would be potentially deadly if we call it while our own mutex is locked.
- // So we ensure that all these objects are alive _until_ our mutex is released.
-
- ::std::vector< Reference< XInterface > > aEnsureAlive;
-
- // ----- <mutex_lock> ---------------------------------------------
- {
- ::osl::MutexGuard aGuard( s_aMutex );
-
- ClientMap::iterator aClientPos;
- if ( !implLookupClient( _nClient, aClientPos ) )
- // already asserted in implLookupClient
- return;
-
- // remove it from the clients map
- delete aClientPos->second;
- s_pNotifier->m_aClients.erase( aClientPos );
-
- // remove any other events which are pending for this client
- implRemoveEventsForClient( _nClient, aEnsureAlive );
+ ::osl::MutexGuard aGuard( s_aMutex );
- // cleanup the thread if we do not have clients anymore
- implCleanupNotifier( );
- }
- // ----- </mutex_lock> ---------------------------------------------
+ ClientMap::iterator aClientPos;
+ if ( !implLookupClient( _nClient, aClientPos ) )
+ // already asserted in implLookupClient
+ return;
- // here, aEnsureAlive is cleared, and here it doesn't matter anymore if it's the last
- // reference to the contained components, as our mutex is not locked here ....
+ // remove it from the clients map
+ delete aClientPos->second;
+ s_aClients.erase( aClientPos );
}
//---------------------------------------------------------------------
void AccessibleEventNotifier::revokeClientNotifyDisposing( const TClientId _nClient,
const Reference< XInterface >& _rxEventSource ) SAL_THROW( ( ) )
{
- ::std::vector< Reference< XInterface > > aEnsureAlive;
+ ::osl::MutexGuard aGuard( s_aMutex );
- // ----- <mutex_lock> ---------------------------------------------
- {
- ::osl::MutexGuard aGuard( s_aMutex );
+ ClientMap::iterator aClientPos;
+ if ( !implLookupClient( _nClient, aClientPos ) )
+ // already asserted in implLookupClient
+ return;
- ClientMap::iterator aClientPos;
- if ( !implLookupClient( _nClient, aClientPos ) )
- // already asserted in implLookupClient
- return;
+ // notify the "disposing" event for this client
+ EventObject aDisposalEvent;
+ aDisposalEvent.Source = _rxEventSource;
- // move the client from the "regular clients" to the "disposed clients" map
- // from then on, no events for this client will be accepted anymore
- #ifdef _DEBUG
- ::std::pair< ClientMap::iterator, bool > aInsertResult =
- #endif
- s_pNotifier->m_aDisposedClients.insert( ClientMap::value_type( _nClient, aClientPos->second ) );
- OSL_ENSURE( aInsertResult.second, "AccessibleEventNotifier::revokeClientNotifyDisposing: client was already disposed!" );
- // is this asserts, then there already was an entry for _nClient in m_aDisposedClients, which means
- // somebody already called notifyDisposing with this id
- s_pNotifier->m_aClients.erase( aClientPos );
-
- // before we add the "disposing" event to the queue, we remove all other events for this client
- implRemoveEventsForClient( _nClient, aEnsureAlive );
-
- // push back a "disposing" event for this client
- AccessibleEventObject aDisposalEvent;
- aDisposalEvent.Source = _rxEventSource;
- aDisposalEvent.EventId = -1; // this indicates "disposal"
-
- // add the event to the queue
- implPushBackEvent( _nClient, aDisposalEvent );
- }
- // ----- </mutex_lock> --------------------------------------------
+ // now do the notification
+ aClientPos->second->disposeAndClear( aDisposalEvent );
- // here, aEnsureAlive is cleared, and here it doesn't matter anymore if it's the last
- // reference to the contained components, as our mutex is not locked here ....
+ // we do not need the entry in the clients map anymore
+ delete aClientPos->second;
+ s_aClients.erase( aClientPos );
}
//---------------------------------------------------------------------
@@ -542,41 +246,43 @@ namespace comphelper
//---------------------------------------------------------------------
void AccessibleEventNotifier::addEvent( const TClientId _nClient, const AccessibleEventObject& _rEvent ) SAL_THROW( ( ) )
{
- ::osl::MutexGuard aGuard( s_aMutex );
-
- ClientMap::iterator aClientPos;
- if ( !implLookupClient( _nClient, aClientPos ) )
- // already asserted in implLookupClient
- return;
+ Sequence< Reference< XInterface > > aListeners;
- // add the event to the queue
- implPushBackEvent( _nClient, _rEvent );
- }
+ // --- <mutex lock> -------------------------------
+ {
+ ::osl::MutexGuard aGuard( s_aMutex );
- //---------------------------------------------------------------------
- void AccessibleEventNotifier::implPushBackEvent( const TClientId _nClient, const AccessibleEventObject& _rEvent )
- {
- OSL_PRECOND( s_pNotifier, "AccessibleEventNotifier::implPushBackEvent: invalid call!" );
+ ClientMap::iterator aClientPos;
+ if ( !implLookupClient( _nClient, aClientPos ) )
+ // already asserted in implLookupClient
+ return;
- // add the event to the queue
- s_pNotifier->m_aEvents.push_back( ClientEvent( _nClient, _rEvent ) );
+ // since we're synchronous, again, we want to notify immediately
+ aListeners = aClientPos->second->getElements();
+ }
+ // --- </mutex lock> ------------------------------
- // wake up the thread
- s_pNotifier->m_aEventGuard.set();
+ // default handling: loop through all listeners, and notify them
+ const Reference< XInterface >* pListeners = aListeners.getConstArray();
+ const Reference< XInterface >* pListenersEnd = pListeners + aListeners.getLength();
+ while ( pListeners != pListenersEnd )
+ {
+ try
+ {
+ static_cast< XAccessibleEventListener* >( pListeners->get() )->notifyEvent( _rEvent );
+ }
+ catch( const Exception& e )
+ {
+ e;
+ // silent this
+ // no assertion, because a broken access remote bridge or something like this
+ // can cause this exception
+ }
+ ++pListeners;
+ }
}
//.........................................................................
} // namespace comphelper
//.........................................................................
-
-/*************************************************************************
- * history:
- * $Log: not supported by cvs2svn $
- * Revision 1.1 2002/12/06 12:56:46 fs
- * initial checkin - notifying accessible events asynchronously
- *
- *
- * Revision 1.0 05.12.2002 11:05:26 fs
- ************************************************************************/
-
diff --git a/comphelper/source/misc/accessibleselectionhelper.cxx b/comphelper/source/misc/accessibleselectionhelper.cxx
index 766c065c9e48..544d1b0cea2c 100644
--- a/comphelper/source/misc/accessibleselectionhelper.cxx
+++ b/comphelper/source/misc/accessibleselectionhelper.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: accessibleselectionhelper.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: oj $ $Date: 2002-07-30 06:11:34 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:36 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -224,10 +224,3 @@ namespace comphelper
} // namespace comphelper
//.........................................................................
-/*************************************************************************
- * history:
- * $Log: not supported by cvs2svn $
- * Revision 1.1 2002/05/06 09:59:53 ka
- * #95585#: added AccessibleSelection helper
- *
- ************************************************************************/
diff --git a/comphelper/source/misc/accessiblewrapper.cxx b/comphelper/source/misc/accessiblewrapper.cxx
new file mode 100644
index 000000000000..916f14bacb98
--- /dev/null
+++ b/comphelper/source/misc/accessiblewrapper.cxx
@@ -0,0 +1,647 @@
+/*************************************************************************
+ *
+ * $RCSfile: accessiblewrapper.cxx,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:36 $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (the "License"); You may not use this file
+ * except in compliance with the License. You may obtain a copy of the
+ * License at http://www.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+ *
+ * Copyright: 2000 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+
+#ifndef COMPHELPER_ACCESSIBLE_WRAPPER_HXX
+#include "comphelper/accessiblewrapper.hxx"
+#endif
+#ifndef _COM_SUN_STAR_REFLECTION_XPROXYFACTORY_HPP_
+#include <com/sun/star/reflection/XProxyFactory.hpp>
+#endif
+#ifndef _DRAFTS_COM_SUN_STAR_ACCESSIBILITY_ACCESSIBLEEVENTID_HPP_
+#include <drafts/com/sun/star/accessibility/AccessibleEventId.hpp>
+#endif
+#ifndef _DRAFTS_COM_SUN_STAR_ACCESSIBILITY_ACCESSIBLESTATETYPE_HPP_
+#include <drafts/com/sun/star/accessibility/AccessibleStateType.hpp>
+#endif
+
+#include <algorithm>
+
+using namespace ::comphelper;
+using namespace ::drafts::com::sun::star::accessibility;
+using namespace ::com::sun::star::uno;
+using namespace ::com::sun::star::lang;
+using namespace ::com::sun::star::reflection;
+
+//.............................................................................
+namespace comphelper
+{
+//.............................................................................
+
+ //=========================================================================
+ //= OWrappedAccessibleChildrenManager
+ //=========================================================================
+ //--------------------------------------------------------------------
+ struct RemoveEventListener
+ : public ::std::unary_function< AccessibleMap::value_type, void >
+ {
+ private:
+ Reference< XEventListener > m_xListener;
+
+ public:
+ RemoveEventListener( const Reference< XEventListener >& _rxListener )
+ :m_xListener( _rxListener )
+ {
+ }
+
+ void operator()( const AccessibleMap::value_type& _rMapEntry ) const
+ {
+ Reference< XComponent > xComp( _rMapEntry.first, UNO_QUERY );
+ if ( xComp.is() )
+ xComp->removeEventListener( m_xListener );
+ }
+ };
+
+ //--------------------------------------------------------------------
+ struct DisposeMappedChild
+ : public ::std::unary_function< AccessibleMap::value_type, void >
+ {
+ void operator()( const AccessibleMap::value_type& _rMapEntry ) const
+ {
+ Reference< XComponent > xComp( _rMapEntry.second, UNO_QUERY );
+ if ( xComp.is() )
+ xComp->dispose();
+ }
+ };
+
+ //-------------------------------------------------------------------------
+ OWrappedAccessibleChildrenManager::OWrappedAccessibleChildrenManager( const Reference< XMultiServiceFactory >& _rxORB )
+ :m_xORB( _rxORB )
+ ,m_bTransientChildren( sal_True )
+ {
+ }
+
+ //-------------------------------------------------------------------------
+ OWrappedAccessibleChildrenManager::~OWrappedAccessibleChildrenManager( )
+ {
+ }
+
+ //-------------------------------------------------------------------------
+ void OWrappedAccessibleChildrenManager::setTransientChildren( sal_Bool _bSet )
+ {
+ m_bTransientChildren = _bSet;
+ }
+
+ //-------------------------------------------------------------------------
+ void OWrappedAccessibleChildrenManager::setOwningAccessible( const Reference< XAccessible >& _rxAcc )
+ {
+ OSL_ENSURE( !m_aOwningAccessible.get().is(), "OWrappedAccessibleChildrenManager::setOwningAccessible: to be called only once!" );
+ m_aOwningAccessible = WeakReference< XAccessible >( _rxAcc );
+ }
+
+ //-------------------------------------------------------------------------
+ void OWrappedAccessibleChildrenManager::removeFromCache( const Reference< XAccessible >& _rxKey )
+ {
+ AccessibleMap::iterator aRemovedPos = m_aChildrenMap.find( _rxKey );
+ if ( m_aChildrenMap.end() != aRemovedPos )
+ { // it was cached
+ // remove ourself as event listener
+ RemoveEventListener aOperator( this );
+ aOperator( *aRemovedPos );
+ // and remove the entry from the map
+ m_aChildrenMap.erase( aRemovedPos );
+ }
+ }
+
+ //-------------------------------------------------------------------------
+ void OWrappedAccessibleChildrenManager::invalidateAll( )
+ {
+ // remove as event listener from the map elements
+ ::std::for_each( m_aChildrenMap.begin(), m_aChildrenMap.end(), RemoveEventListener( this ) );
+ // clear the map
+ AccessibleMap aMap;
+ m_aChildrenMap.swap( aMap );
+ }
+
+ //-------------------------------------------------------------------------
+ Reference< XAccessible > OWrappedAccessibleChildrenManager::getAccessibleWrapperFor(
+ const Reference< XAccessible >& _rxKey, sal_Bool _bCreate )
+ {
+ Reference< XAccessible > xValue;
+
+ // do we have this child in the cahce?
+ AccessibleMap::const_iterator aPos = m_aChildrenMap.find( _rxKey );
+ if ( m_aChildrenMap.end() != aPos )
+ {
+ xValue = aPos->second;
+ }
+ else if ( _bCreate )
+ { // not found in the cache, and allowed to create
+ // -> new wrapper
+ xValue = new OAccessibleWrapper( m_xORB, _rxKey, (Reference< XAccessible >)m_aOwningAccessible );
+
+ // see if we do cache children
+ if ( !m_bTransientChildren )
+ {
+ m_aChildrenMap.insert( AccessibleMap::value_type( _rxKey, xValue ) );
+
+ // listen for disposals of inner children - this may happen when the inner context
+ // is the owner for the inner children (it will dispose these children, and of course
+ // not our wrapper for these children)
+ Reference< XComponent > xComp( _rxKey, UNO_QUERY );
+ if ( xComp.is() )
+ xComp->addEventListener( this );
+ }
+ }
+
+ return xValue;
+ }
+
+ //-------------------------------------------------------------------------
+ void OWrappedAccessibleChildrenManager::dispose()
+ {
+ // dispose our children
+ ::std::for_each( m_aChildrenMap.begin(), m_aChildrenMap.end(), RemoveEventListener( this ) );
+ ::std::for_each( m_aChildrenMap.begin(), m_aChildrenMap.end(), DisposeMappedChild() );
+ // clear our children
+ AccessibleMap aMap;
+ m_aChildrenMap.swap( aMap );
+ }
+
+ //--------------------------------------------------------------------
+ void OWrappedAccessibleChildrenManager::implTranslateChildEventValue( const Any& _rInValue, Any& _rOutValue )
+ {
+ _rOutValue.clear();
+ Reference< XAccessible > xChild;
+ if ( _rInValue >>= xChild )
+ _rOutValue <<= getAccessibleWrapperFor( xChild, sal_True );
+ }
+
+ //-------------------------------------------------------------------------
+ void OWrappedAccessibleChildrenManager::translateAccessibleEvent( const AccessibleEventObject& _rEvent, AccessibleEventObject& _rTranslatedEvent )
+ {
+ // just in case we can't translate some of the values:
+ _rTranslatedEvent.NewValue = _rEvent.NewValue;
+ _rTranslatedEvent.OldValue = _rEvent.OldValue;
+
+ switch ( _rEvent.EventId )
+ {
+ case AccessibleEventId::ACCESSIBLE_CHILD_EVENT:
+ case AccessibleEventId::ACCESSIBLE_ACTIVE_DESCENDANT_EVENT:
+ case AccessibleEventId::CONTROLLED_BY_EVENT:
+ case AccessibleEventId::CONTROLLER_FOR_EVENT:
+ case AccessibleEventId::LABEL_FOR_EVENT:
+ case AccessibleEventId::LABELED_BY_EVENT:
+ case AccessibleEventId::CONTENT_FLOWS_FROM_EVENT:
+ case AccessibleEventId::CONTENT_FLOWS_TO_EVENT:
+ // these are events where both the old and the new value contain child references
+ implTranslateChildEventValue( _rEvent.OldValue, _rTranslatedEvent.OldValue );
+ implTranslateChildEventValue( _rEvent.NewValue, _rTranslatedEvent.NewValue );
+ break;
+
+ case AccessibleEventId::ACCESSIBLE_ACTION_EVENT:
+ case AccessibleEventId::ACCESSIBLE_CARET_EVENT:
+ case AccessibleEventId::ACCESSIBLE_DESCRIPTION_EVENT:
+ case AccessibleEventId::ACCESSIBLE_HYPERTEXT_EVENT:
+ case AccessibleEventId::ACCESSIBLE_NAME_EVENT:
+ case AccessibleEventId::ACCESSIBLE_SELECTION_EVENT:
+ case AccessibleEventId::ACCESSIBLE_STATE_EVENT:
+ case AccessibleEventId::ACCESSIBLE_TABLE_CAPTION_EVENT:
+ case AccessibleEventId::ACCESSIBLE_TABLE_COLUMN_DESCRIPTION_EVENT:
+ case AccessibleEventId::ACCESSIBLE_TABLE_COLUMN_HEADER_EVENT:
+ case AccessibleEventId::ACCESSIBLE_TABLE_MODEL_EVENT:
+ case AccessibleEventId::ACCESSIBLE_TABLE_ROW_DESCRIPTION_EVENT:
+ case AccessibleEventId::ACCESSIBLE_TABLE_ROW_HEADER_EVENT:
+ case AccessibleEventId::ACCESSIBLE_TABLE_SUMMARY_EVENT:
+ case AccessibleEventId::ACCESSIBLE_TEXT_EVENT:
+ case AccessibleEventId::ACCESSIBLE_VALUE_EVENT:
+ case AccessibleEventId::ACCESSIBLE_VISIBLE_DATA_EVENT:
+ case AccessibleEventId::MEMBER_OF_EVENT:
+ case AccessibleEventId::ACCESSIBLE_ALL_CHILDREN_CHANGED_EVENT:
+ case AccessibleEventId::ACCESSIBLE_BOUNDRECT_EVENT:
+ // nothing to translate
+ break;
+
+ default:
+ OSL_ENSURE( sal_False, "OWrappedAccessibleChildrenManager::translateAccessibleEvent: unknown (or unexpected) event id!" );
+ break;
+ }
+ }
+
+ //-------------------------------------------------------------------------
+ void OWrappedAccessibleChildrenManager::handleChildNotification( const AccessibleEventObject& _rEvent )
+ {
+ if ( AccessibleEventId::ACCESSIBLE_ALL_CHILDREN_CHANGED_EVENT == _rEvent.EventId )
+ { // clear our child map
+ invalidateAll( );
+ }
+ else if ( AccessibleEventId::ACCESSIBLE_CHILD_EVENT == _rEvent.EventId )
+ {
+ // check if the removed or replaced element is cached
+ Reference< XAccessible > xRemoved;
+ if ( _rEvent.OldValue >>= xRemoved )
+ removeFromCache( xRemoved );
+ }
+ }
+
+ //--------------------------------------------------------------------
+ void SAL_CALL OWrappedAccessibleChildrenManager::disposing( const EventObject& _rSource ) throw (RuntimeException)
+ {
+ // this should come from one of the inner XAccessible's of our children
+ Reference< XAccessible > xSource( _rSource.Source, UNO_QUERY );
+ AccessibleMap::iterator aDisposedPos = m_aChildrenMap.find( xSource );
+ OSL_ENSURE( m_aChildrenMap.end() != aDisposedPos,
+ "OWrappedAccessibleChildrenManager::disposing: where did this come from?" );
+ if ( m_aChildrenMap.end() != aDisposedPos )
+ {
+ m_aChildrenMap.erase( aDisposedPos );
+ }
+ }
+
+ //=========================================================================
+ //= OProxyAggregation
+ //=========================================================================
+ //-------------------------------------------------------------------------
+ OProxyAggregation::OProxyAggregation( const Reference< XMultiServiceFactory >& _rxORB )
+ :m_xORB( _rxORB )
+ {
+ }
+
+ //-------------------------------------------------------------------------
+ void OProxyAggregation::aggregateProxyFor( const Reference< XInterface >& _rxComponent, oslInterlockedCount& _rRefCount,
+ ::cppu::OWeakObject& _rDelegator )
+ {
+ // first a factory for the proxy
+ Reference< XProxyFactory > xFactory(
+ m_xORB->createInstance( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.reflection.ProxyFactory" ) ) ),
+ UNO_QUERY
+ );
+ OSL_ENSURE( xFactory.is(), "OProxyAggregation::aggregateProxyFor: could not create a proxy factory!" );
+
+ // then the proxy itself
+ if ( xFactory.is() )
+ {
+ m_xProxyAggregate = xFactory->createProxy( _rxComponent );
+
+ // aggregate the proxy
+ osl_incrementInterlockedCount( &_rRefCount );
+ if ( m_xProxyAggregate.is() )
+ {
+ // At this point in time, the proxy has a ref count of exactly one - in m_xControlContextProxy.
+ // Remember to _not_ reset this member unles the delegator of the proxy has been reset, too!
+ m_xProxyAggregate->setDelegator( _rDelegator );
+ }
+ osl_decrementInterlockedCount( &_rRefCount );
+ }
+ }
+
+ //-------------------------------------------------------------------------
+ Any SAL_CALL OProxyAggregation::queryAggregation( const Type& _rType ) throw (RuntimeException)
+ {
+ return m_xProxyAggregate.is() ? m_xProxyAggregate->queryAggregation( _rType ) : Any();
+ }
+
+ //-------------------------------------------------------------------------
+ Sequence< Type > SAL_CALL OProxyAggregation::getTypes( ) throw (RuntimeException)
+ {
+ Sequence< Type > aTypes;
+ if ( m_xProxyAggregate.is() )
+ {
+ Reference< XTypeProvider > xTypes;
+ m_xProxyAggregate->queryAggregation( ::getCppuType( &xTypes ) ) >>= xTypes;
+ if ( xTypes.is() )
+ aTypes = xTypes->getTypes();
+ }
+ return aTypes;
+ }
+
+ //-------------------------------------------------------------------------
+ OProxyAggregation::~OProxyAggregation()
+ {
+ if ( m_xProxyAggregate.is() )
+ m_xProxyAggregate->setDelegator( NULL );
+ m_xProxyAggregate.clear();
+ // this should remove the _one_and_only_ "real" reference (means not delegated to
+ // ourself) to this proxy, and thus delete it
+ }
+
+ //=========================================================================
+ //= OAccessibleWrapper (implementation)
+ //=========================================================================
+ //-------------------------------------------------------------------------
+ OAccessibleWrapper::OAccessibleWrapper( const Reference< XMultiServiceFactory >& _rxORB,
+ const Reference< XAccessible >& _rxInnerAccessible, const Reference< XAccessible >& _rxParentAccessible )
+ :OAccessibleWrapper_Base( _rxORB, _rxInnerAccessible )
+ ,m_xParentAccessible( _rxParentAccessible )
+ {
+ }
+
+ //--------------------------------------------------------------------
+ OAccessibleWrapper::~OAccessibleWrapper( )
+ {
+ }
+
+ //--------------------------------------------------------------------
+ Reference< XAccessibleContext > SAL_CALL OAccessibleWrapper::getAccessibleContext( ) throw (RuntimeException)
+ {
+ Reference< XAccessibleContext > xInnerContext = m_xInner->getAccessibleContext( );
+ if ( xInnerContext.is() )
+ {
+ OSL_ENSURE( xInnerContext.is(), "OAccessibleWrapper::getAccessibleContext: invalid inner context!" );
+ return new OAccessibleContextWrapper( getORB(), xInnerContext, this, m_xParentAccessible );
+ }
+ return Reference< XAccessibleContext >();
+ }
+
+ //=========================================================================
+ //= OAccessibleWrapper (implementation)
+ //=========================================================================
+ //-------------------------------------------------------------------------
+ OAccessibleContextWrapper::OAccessibleContextWrapper(
+ const Reference< XMultiServiceFactory >& _rxORB,
+ const Reference< XAccessibleContext >& _rxInnerAccessibleContext,
+ const Reference< XAccessible >& _rxOwningAccessible,
+ const Reference< XAccessible >& _rxParentAccessible )
+ :OAccessibleContextWrapper_Base( _rxORB, _rxInnerAccessibleContext )
+ ,m_xOwningAccessible( _rxOwningAccessible )
+ ,m_xParentAccessible( _rxParentAccessible )
+ ,m_nNotifierClient( 0 )
+ ,m_pChildMapper( NULL )
+ {
+ // add as event listener add the inner context, because we want to multiplex the AccessibleEvents
+ osl_incrementInterlockedCount( &m_refCount );
+ {
+ Reference< XAccessibleEventBroadcaster > xBroadcaster( m_xInner, UNO_QUERY );
+ if ( xBroadcaster.is() )
+ xBroadcaster->addEventListener( this );
+ }
+ osl_decrementInterlockedCount( &m_refCount );
+
+ m_pChildMapper = new OWrappedAccessibleChildrenManager( getORB() );
+ m_pChildMapper->acquire();
+
+ // determine if we're allowed to cache children
+ Reference< XAccessibleStateSet > xStates( m_xInner->getAccessibleStateSet( ) );
+ OSL_ENSURE( xStates.is(), "OAccessibleContextWrapper::OAccessibleContextWrapper: no inner state set!" );
+ m_pChildMapper->setTransientChildren( !xStates.is() || xStates->contains( AccessibleStateType::MANAGES_DESCENDANT ) );
+
+ m_pChildMapper->setOwningAccessible( m_xOwningAccessible );
+ }
+
+ //--------------------------------------------------------------------
+ OAccessibleContextWrapper::~OAccessibleContextWrapper( )
+ {
+ m_pChildMapper->release();
+ m_pChildMapper = NULL;
+
+ if ( !rBHelper.bDisposed )
+ {
+ acquire(); // du prevent duplicate dtor calls
+ dispose();
+ }
+ m_xInner.clear();
+ }
+
+ //--------------------------------------------------------------------
+ // IMPLEMENT_FORWARD_XINTERFACE2( OAccessibleContextWrapper, OAccessibleContextWrapper_Base, OAccessibleContextWrapper_MBase )
+ IMPLEMENT_FORWARD_REFCOUNT( OAccessibleContextWrapper, OAccessibleContextWrapper_Base )
+ ::com::sun::star::uno::Any SAL_CALL OAccessibleContextWrapper::queryInterface( const ::com::sun::star::uno::Type& _rType ) throw (::com::sun::star::uno::RuntimeException)
+ {
+ ::com::sun::star::uno::Any aReturn = OAccessibleContextWrapper_MBase::queryInterface( _rType );
+ if ( !aReturn.hasValue() )
+ aReturn = OAccessibleContextWrapper_Base::queryInterface( _rType );
+ return aReturn;
+ }
+
+ //--------------------------------------------------------------------
+ IMPLEMENT_FORWARD_XTYPEPROVIDER2( OAccessibleContextWrapper, OAccessibleContextWrapper_Base, OAccessibleContextWrapper_MBase )
+
+ //--------------------------------------------------------------------
+ sal_Int32 SAL_CALL OAccessibleContextWrapper::getAccessibleChildCount( ) throw (RuntimeException)
+ {
+ return m_xInner->getAccessibleChildCount();
+ }
+
+ //--------------------------------------------------------------------
+ Reference< XAccessible > SAL_CALL OAccessibleContextWrapper::getAccessibleChild( sal_Int32 i ) throw (IndexOutOfBoundsException, RuntimeException)
+ {
+ // get the child of the wrapped component
+ Reference< XAccessible > xInnerChild = m_xInner->getAccessibleChild( i );
+ return m_pChildMapper->getAccessibleWrapperFor( xInnerChild );
+ }
+
+ //--------------------------------------------------------------------
+ Reference< XAccessible > SAL_CALL OAccessibleContextWrapper::getAccessibleParent( ) throw (RuntimeException)
+ {
+ return m_xParentAccessible;
+ }
+
+ //--------------------------------------------------------------------
+ sal_Int32 SAL_CALL OAccessibleContextWrapper::getAccessibleIndexInParent( ) throw (RuntimeException)
+ {
+ return m_xInner->getAccessibleIndexInParent();
+ }
+
+ //--------------------------------------------------------------------
+ sal_Int16 SAL_CALL OAccessibleContextWrapper::getAccessibleRole( ) throw (RuntimeException)
+ {
+ return m_xInner->getAccessibleRole();
+ }
+
+ //--------------------------------------------------------------------
+ ::rtl::OUString SAL_CALL OAccessibleContextWrapper::getAccessibleDescription( ) throw (RuntimeException)
+ {
+ return m_xInner->getAccessibleDescription();
+ }
+
+ //--------------------------------------------------------------------
+ ::rtl::OUString SAL_CALL OAccessibleContextWrapper::getAccessibleName( ) throw (RuntimeException)
+ {
+ return m_xInner->getAccessibleName();
+ }
+
+ //--------------------------------------------------------------------
+ Reference< XAccessibleRelationSet > SAL_CALL OAccessibleContextWrapper::getAccessibleRelationSet( ) throw (RuntimeException)
+ {
+ return m_xInner->getAccessibleRelationSet();
+ // TODO: if this relation set would contain relations to siblings, we would normally need
+ // to wrap them, too ....
+ }
+
+ //--------------------------------------------------------------------
+ Reference< XAccessibleStateSet > SAL_CALL OAccessibleContextWrapper::getAccessibleStateSet( ) throw (RuntimeException)
+ {
+ return m_xInner->getAccessibleStateSet();
+ }
+
+ //--------------------------------------------------------------------
+ Locale SAL_CALL OAccessibleContextWrapper::getLocale( ) throw (IllegalAccessibleComponentStateException, RuntimeException)
+ {
+ return m_xInner->getLocale();
+ }
+
+ //--------------------------------------------------------------------
+ void SAL_CALL OAccessibleContextWrapper::addEventListener( const Reference< XAccessibleEventListener >& _rxListener ) throw (RuntimeException)
+ {
+ ::osl::MutexGuard aGuard( m_aMutex );
+ if ( !m_nNotifierClient )
+ m_nNotifierClient = AccessibleEventNotifier::registerClient( );
+ AccessibleEventNotifier::addEventListener( m_nNotifierClient, _rxListener );
+ }
+
+ //--------------------------------------------------------------------
+ void SAL_CALL OAccessibleContextWrapper::removeEventListener( const Reference< XAccessibleEventListener >& _rxListener ) throw (RuntimeException)
+ {
+ ::osl::MutexGuard aGuard( m_aMutex );
+ if ( m_nNotifierClient )
+ {
+ if ( 0 == AccessibleEventNotifier::removeEventListener( m_nNotifierClient, _rxListener ) )
+ {
+ AccessibleEventNotifier::revokeClient( m_nNotifierClient );
+ m_nNotifierClient = 0;
+ }
+ }
+ }
+
+ //--------------------------------------------------------------------
+ void SAL_CALL OAccessibleContextWrapper::notifyEvent( const AccessibleEventObject& _rEvent ) throw (RuntimeException)
+ {
+#ifdef _DEBUG
+ if ( AccessibleEventId::ACCESSIBLE_STATE_EVENT == _rEvent.EventId )
+ {
+ sal_Bool bChildTransienceChanged = sal_False;
+ sal_Int16 nChangeState;
+ if ( _rEvent.OldValue >>= nChangeState )
+ bChildTransienceChanged = bChildTransienceChanged || AccessibleStateType::MANAGES_DESCENDANT == nChangeState;
+ if ( _rEvent.NewValue >>= nChangeState )
+ bChildTransienceChanged = bChildTransienceChanged || AccessibleStateType::MANAGES_DESCENDANT == nChangeState;
+ OSL_ENSURE( !bChildTransienceChanged, "OAccessibleContextWrapper::notifyEvent: MANAGES_DESCENDANT is not expected to change during runtime!" );
+ // if this asserts, then we would need to update our m_bTransientChildren flag here,
+ // as well as (potentially) our child cache
+ }
+#endif
+ AccessibleEventNotifier::TClientId nClientId( 0 );
+ AccessibleEventObject aTranslatedEvent( _rEvent );
+
+ {
+ ::osl::MutexGuard aGuard( m_aMutex );
+
+ // see if any of these notifications affect our child manager
+ m_pChildMapper->handleChildNotification( _rEvent );
+
+ // see if we need to multiplex this event
+ if ( !m_nNotifierClient )
+ // no client id => no listeners => no need to multiplex
+ return;
+
+ aTranslatedEvent.Source = *this;
+ m_pChildMapper->translateAccessibleEvent( _rEvent, aTranslatedEvent );
+ if ( aTranslatedEvent.NewValue == m_xInner )
+ aTranslatedEvent.NewValue = makeAny(aTranslatedEvent.Source);
+ if ( aTranslatedEvent.OldValue == m_xInner )
+ aTranslatedEvent.OldValue = makeAny(aTranslatedEvent.Source);
+
+ // to prevent races:
+ nClientId = m_nNotifierClient;
+ }
+
+ AccessibleEventNotifier::addEvent( nClientId, aTranslatedEvent );
+ }
+
+ //--------------------------------------------------------------------
+ void SAL_CALL OAccessibleContextWrapper::disposing() throw (::com::sun::star::uno::RuntimeException)
+ {
+ AccessibleEventNotifier::TClientId nClientId( 0 );
+
+ // --- <mutex lock> -----------------------------------------
+ {
+ ::osl::MutexGuard aGuard( m_aMutex );
+
+ // prepare notifying our AccessibleListeners
+ if ( m_nNotifierClient )
+ {
+ nClientId = m_nNotifierClient;
+ m_nNotifierClient = 0;
+ }
+
+ // dispose the child cache/map
+ m_pChildMapper->dispose();
+
+ // dispose our inner context
+ // before we do this, remove ourself as listener - else in disposing( EventObject ), we
+ // would dispose ourself a second time
+ Reference< XAccessibleEventBroadcaster > xBroadcaster( m_xInner, UNO_QUERY );
+ OSL_ENSURE( xBroadcaster.is(), "OAccessibleContextWrapper::disposing(): inner context is no broadcaster!" );
+ if ( xBroadcaster.is() )
+ xBroadcaster->removeEventListener( this );
+ ::comphelper::disposeComponent( m_xInner );
+ }
+ // --- </mutex lock> -----------------------------------------
+
+ if ( nClientId )
+ AccessibleEventNotifier::revokeClientNotifyDisposing( nClientId, *this );
+ }
+
+ //--------------------------------------------------------------------
+ void SAL_CALL OAccessibleContextWrapper::disposing( const EventObject& _rEvent ) throw (::com::sun::star::uno::RuntimeException)
+ {
+ ::osl::ClearableMutexGuard aGuard( m_aMutex );
+ Reference< XAccessibleContext > xSource( _rEvent.Source, UNO_QUERY );
+ if ( xSource.get() == m_xInner.get() )
+ { // it's our inner context which is dying -> dispose ourself
+ dispose();
+ }
+ else
+ OSL_ENSURE( sal_False, "OAccessibleContextWrapper::disposing(EventObject): where did this come from?" );
+ }
+
+//.............................................................................
+} // namespace accessibility
+//.............................................................................
diff --git a/comphelper/source/misc/accimplaccess.cxx b/comphelper/source/misc/accimplaccess.cxx
index e06130a5bbc3..8cb6460e2c00 100644
--- a/comphelper/source/misc/accimplaccess.cxx
+++ b/comphelper/source/misc/accimplaccess.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: accimplaccess.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: fs $ $Date: 2002-04-26 05:54:25 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:37 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -226,16 +226,4 @@ namespace comphelper
} // namespace comphelper
//.........................................................................
-/*************************************************************************
- * history:
- * $Log: not supported by cvs2svn $
- * Revision 1.2 2002/04/23 11:03:40 fs
- * #98750# implemented getForeignControlledState
- *
- * Revision 1.1 2002/04/17 08:39:28 fs
- * initial checkin - helper class for tunneling an XAccessibleContext implementation
- *
- *
- * Revision 1.0 16.04.2002 15:34:21 fs
- ************************************************************************/
diff --git a/comphelper/source/misc/interaction.cxx b/comphelper/source/misc/interaction.cxx
index d7a4563be601..2c336f397c74 100644
--- a/comphelper/source/misc/interaction.cxx
+++ b/comphelper/source/misc/interaction.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: interaction.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: jl $ $Date: 2001-03-22 13:30:49 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:37 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -117,16 +117,4 @@ namespace comphelper
} // namespace comphelper
//.........................................................................
-/*************************************************************************
- * history:
- * $Log: not supported by cvs2svn $
- * Revision 1.2 2000/10/31 08:30:33 fs
- * OInteraction* (concret interaction continuations) are templates now
- *
- * Revision 1.1 2000/10/25 12:46:18 fs
- * initial checkin - helper for implementing using XInteractionContinution and XInteractionRequest
- *
- *
- * Revision 1.0 25.10.00 12:23:29 fs
- ************************************************************************/
diff --git a/comphelper/source/misc/makefile.mk b/comphelper/source/misc/makefile.mk
index 496b4b6944ae..8175bc321a49 100644
--- a/comphelper/source/misc/makefile.mk
+++ b/comphelper/source/misc/makefile.mk
@@ -2,9 +2,9 @@
#
# $RCSfile: makefile.mk,v $
#
-# $Revision: 1.15 $
+# $Revision: 1.16 $
#
-# last change: $Author: tbe $ $Date: 2002-12-10 17:21:48 $
+# last change: $Author: hr $ $Date: 2003-03-19 15:58:37 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@@ -90,7 +90,9 @@ SLOFILES= \
$(SLO)$/facreg.obj \
$(SLO)$/accessibleeventbuffer.obj \
$(SLO)$/weakeventlistener.obj \
- $(SLO)$/accessibleeventnotifier.obj
+ $(SLO)$/accessibleeventnotifier.obj \
+ $(SLO)$/accessiblewrapper.obj
+
# --- Targets ----------------------------------
diff --git a/comphelper/source/misc/weakeventlistener.cxx b/comphelper/source/misc/weakeventlistener.cxx
index 5a394609955a..b83712cc20b1 100644
--- a/comphelper/source/misc/weakeventlistener.cxx
+++ b/comphelper/source/misc/weakeventlistener.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: weakeventlistener.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: fs $ $Date: 2002-08-27 11:58:32 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:37 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -127,10 +127,4 @@ namespace comphelper
} // namespace comphelper
//.........................................................................
-/*************************************************************************
- * history:
- * $Log: not supported by cvs2svn $
- *
- * Revision 1.0 22.08.2002 12:07:40 fs
- ************************************************************************/
diff --git a/comphelper/source/property/TypeGeneration.cxx b/comphelper/source/property/TypeGeneration.cxx
index 16227601179a..56f2c4d3c845 100644
--- a/comphelper/source/property/TypeGeneration.cxx
+++ b/comphelper/source/property/TypeGeneration.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: TypeGeneration.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: tl $ $Date: 2002-10-08 14:10:28 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:38 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -333,6 +333,16 @@
#ifndef _COM_SUN_STAR_UTIL_DATE_HPP_
#include <com/sun/star/util/Date.hpp>
#endif
+#ifndef _COM_SUN_STAR_SDBC_XRESULTSET_HPP_
+#include <com/sun/star/sdbc/XResultSet.hpp>
+#endif
+#ifndef _COM_SUN_STAR_SDBC_XCONNECTION_HPP_
+#include <com/sun/star/sdbc/XConnection.hpp>
+#endif
+#ifndef _COM_SUN_STAR_FRAME_XMODEL_HPP_
+#include <com/sun/star/frame/XModel.hpp>
+#endif
+
using ::rtl::OUString;
using namespace ::com::sun::star;
@@ -411,10 +421,13 @@ namespace comphelper
case CPPUTYPE_REFTXTFIELD: pType = &::getCppuType( (Reference<text::XTextField>*)0 ); break;
case CPPUTYPE_REFTXTRANGE: pType = &::getCppuType( (Reference<text::XTextRange>*)0 ); break;
case CPPUTYPE_REFTXTTABLE: pType = &::getCppuType( (Reference<text::XTextTable>*)0 ); break;
-
case CPPUTYPE_AWTPOINT: pType = &::getCppuType( (awt::Point*)0 ); break;
-
case CPPUTYPE_REFLIBCONTAINER: pType = &::getCppuType( (Reference< script::XLibraryContainer >*)0); break;
+ case CPPUTYPE_OUSTRINGS: pType = &::getCppuType( (Sequence< ::rtl::OUString >*)0); break;
+ case CPPUTYPE_SEQANY: pType = &::getCppuType( (Sequence< uno::Any >*)0); break;
+ case CPPUTYPE_REFRESULTSET: pType = &::getCppuType( (Reference< sdbc::XResultSet >*)0); break;
+ case CPPUTYPE_REFCONNECTION: pType = &::getCppuType( (Reference< sdbc::XConnection >*)0); break;
+ case CPPUTYPE_REFMODEL: pType = &::getCppuType( (Reference< frame::XModel >*)0); break;
default:
OSL_ASSERT( "Unknown CPPU type" );
diff --git a/comphelper/source/property/composedprops.cxx b/comphelper/source/property/composedprops.cxx
index 868fbaf657ab..efde16a3752a 100644
--- a/comphelper/source/property/composedprops.cxx
+++ b/comphelper/source/property/composedprops.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: composedprops.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2001-01-25 12:28:37 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:38 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -394,13 +394,4 @@ namespace comphelper
} // namespace comphelper
//.........................................................................
-/*************************************************************************
- * history:
- * $Log: not supported by cvs2svn $
- * Revision 1.1 2001/01/23 16:08:37 fs
- * initial checkin - migrated svx/source/inc/multipro.cxx
- *
- *
- * Revision 1.0 23.01.01 14:35:37 fs
- ************************************************************************/
diff --git a/comphelper/source/property/propagg.cxx b/comphelper/source/property/propagg.cxx
index d7ed2bc0efdf..c5422d1c1440 100644
--- a/comphelper/source/property/propagg.cxx
+++ b/comphelper/source/property/propagg.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: propagg.cxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: mh $ $Date: 2002-10-29 15:19:26 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:38 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,10 +60,10 @@
************************************************************************/
#ifndef _COMPHELPER_PROPERTY_AGGREGATION_HXX_
-#include <comphelper/propagg.hxx>
+#include "comphelper/propagg.hxx"
#endif
#ifndef _COMPHELPER_PROPERTY_HXX_
-#include <comphelper/property.hxx>
+#include "comphelper/property.hxx"
#endif
#ifndef _CPPUHELPER_QUERYINTERFACE_HXX_
#include <cppuhelper/queryinterface.hxx>
@@ -75,7 +75,7 @@
#ifndef _COM_SUN_STAR_BEANS_PROPERTYATTRIBUTE_HPP_
#include <com/sun/star/beans/PropertyAttribute.hpp>
#endif
-
+#include <algorithm>
//.........................................................................
namespace comphelper
@@ -93,11 +93,13 @@ namespace comphelper
{
const Property* lcl_findPropertyByName( const Sequence< Property >& _rProps, const ::rtl::OUString& _rName )
{
- Property aSearch;
- aSearch.Name = _rName;
+ sal_Int32 nLen = _rProps.getLength();
+ const Property* pProperties = _rProps.getConstArray();
+ const Property* pResult = ::std::lower_bound(pProperties, pProperties + nLen,_rName, ::comphelper::PropertyStringLessFunctor());
+ if ( pResult && ( pResult == pProperties + nLen || pResult->Name != _rName) )
+ pResult = NULL;
- const void* pUntyped = _rProps.getConstArray();
- return static_cast< Property* >( bsearch( &aSearch, pUntyped, _rProps.getLength(), sizeof( Property ), &PropertyCompare ) );
+ return pResult;
}
}
//==================================================================
@@ -161,7 +163,9 @@ OPropertyArrayAggregationHelper::OPropertyArrayAggregationHelper(
pMergedProps = m_aProperties.getArray(); // reset, needed again below
// sortieren der Properties nach Namen
- qsort( (void*)pMergedProps, nMergedProps, sizeof( Property), &PropertyCompare);
+ ::std::sort( pMergedProps, pMergedProps+nMergedProps, PropertyCompareByName());
+
+ pMergedProps = m_aProperties.getArray();
// Positionen in der Map abgleichen
for ( nMPLoop = 0; nMPLoop < nMergedProps; ++nMPLoop, ++pMergedProps )
@@ -365,11 +369,9 @@ sal_Int32 OPropertyArrayAggregationHelper::fillHandles(
//------------------------------------------------------------------------------
::com::sun::star::uno::Any SAL_CALL OPropertySetAggregationHelper::queryInterface(const ::com::sun::star::uno::Type& _rType) throw( ::com::sun::star::uno::RuntimeException)
{
- ::com::sun::star::uno::Any aReturn;
-
- aReturn = OPropertyStateHelper::queryInterface(_rType);
+ ::com::sun::star::uno::Any aReturn = OPropertyStateHelper::queryInterface(_rType);
- if (!aReturn.hasValue())
+ if ( !aReturn.hasValue() )
aReturn = cppu::queryInterface(_rType
,static_cast< ::com::sun::star::beans::XPropertiesChangeListener*>(this)
,static_cast< ::com::sun::star::beans::XVetoableChangeListener*>(this)
@@ -384,7 +386,7 @@ void OPropertySetAggregationHelper::disposing()
{
osl::MutexGuard aGuard(rBHelper.rMutex);
- if (m_xAggregateSet.is() && m_bListening)
+ if ( m_xAggregateSet.is() && m_bListening )
{
// als einziger Listener anmelden
m_xAggregateMultiSet->removePropertiesChangeListener(this);
@@ -627,7 +629,10 @@ void SAL_CALL OPropertySetAggregationHelper::setPropertyValues(
{
OPropertyArrayAggregationHelper::PropertyOrigin ePropOrg = rPH.classifyProperty( *pNames );
if ( OPropertyArrayAggregationHelper::UNKNOWN_PROPERTY == ePropOrg )
- throw UnknownPropertyException( );
+ throw WrappedTargetException( ::rtl::OUString(), static_cast< XMultiPropertySet* >( this ), makeAny( UnknownPropertyException( ) ) );
+ // due to a flaw in the API design, this method is not allowed to throw an UnknownPropertyException
+ // so we wrap it into a WrappedTargetException
+ // #107545# - 2002-02-20 - fs@openoffice.org
if ( OPropertyArrayAggregationHelper::AGGREGATE_PROPERTY == ePropOrg )
++nAggCount;
diff --git a/comphelper/source/property/property.cxx b/comphelper/source/property/property.cxx
index f184eda12f29..6f319dced6cc 100644
--- a/comphelper/source/property/property.cxx
+++ b/comphelper/source/property/property.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: property.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: jl $ $Date: 2001-03-22 13:32:35 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:39 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -80,6 +80,8 @@
#include <com/sun/star/lang/IllegalArgumentException.hpp>
#endif
+#include <algorithm>
+
//.........................................................................
namespace comphelper
{
@@ -87,19 +89,6 @@ namespace comphelper
namespace starlang = ::com::sun::star::lang;
//------------------------------------------------------------------
-int
-#if defined( WNT )
- __cdecl
-#endif
-#if defined( ICC ) && defined( OS2 )
-_Optlink
-#endif
- PropertyCompare( const void* pFirst, const void* pSecond)
-{
- return ((starbeans::Property*)pFirst)->Name.compareTo(((starbeans::Property*)pSecond)->Name);
-}
-
-//------------------------------------------------------------------
void copyProperties(const staruno::Reference<starbeans::XPropertySet>& _rxSource,
const staruno::Reference<starbeans::XPropertySet>& _rxDest)
{
@@ -151,13 +140,11 @@ void RemoveProperty(staruno::Sequence<starbeans::Property>& _rProps, const rtl::
sal_Int32 nLen = _rProps.getLength();
// binaere Suche
- starbeans::Property aSearchDummy(_rPropName, 0, ::getCppuType(reinterpret_cast<sal_Int32*>(NULL))/*doesn't matter*/, 0);
const starbeans::Property* pProperties = _rProps.getConstArray();
- starbeans::Property* pResult = (starbeans::Property*) bsearch(&aSearchDummy, (void*)pProperties, nLen, sizeof(starbeans::Property),
- &PropertyCompare);
+ const starbeans::Property* pResult = ::std::lower_bound(pProperties, pProperties + nLen, _rPropName,PropertyStringLessFunctor());
// gefunden ?
- if (pResult)
+ if ( pResult && (pResult != pProperties + nLen) && (pResult->Name == _rPropName) )
{
OSL_ENSURE(pResult->Name.equals(_rPropName), "::RemoveProperty Properties nicht sortiert");
removeElementAt(_rProps, pResult - pProperties);
@@ -170,12 +157,11 @@ void ModifyPropertyAttributes(staruno::Sequence<starbeans::Property>& seqProps,
sal_Int32 nLen = seqProps.getLength();
// binaere Suche
- starbeans::Property aSearchDummy(sPropName, 0, ::getCppuType(reinterpret_cast<sal_Int32*>(NULL))/*doesn't matter*/, 0);
- starbeans::Property* pResult = (starbeans::Property*) bsearch(&aSearchDummy, (void*)seqProps.getArray(), nLen, sizeof(starbeans::Property),
- &PropertyCompare);
+ starbeans::Property* pProperties = seqProps.getArray();
+ starbeans::Property* pResult = ::std::lower_bound(pProperties, pProperties + nLen,sPropName, PropertyStringLessFunctor());
// gefunden ?
- if (pResult)
+ if ( pResult && (pResult != pProperties + nLen) && (pResult->Name == sPropName) )
{
pResult->Attributes |= nAddAttrib;
pResult->Attributes &= ~nRemoveAttrib;
diff --git a/comphelper/source/property/propertycontainer.cxx b/comphelper/source/property/propertycontainer.cxx
index 1276a9e27d06..6ab9b35b5da2 100644
--- a/comphelper/source/property/propertycontainer.cxx
+++ b/comphelper/source/property/propertycontainer.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: propertycontainer.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: fs $ $Date: 2002-11-12 16:04:57 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:39 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -469,15 +469,13 @@ void OPropertyContainer::getFastPropertyValue(Any& _rValue, sal_Int32 _nHandle)
OPropertyContainer::PropertiesIterator OPropertyContainer::searchHandle(sal_Int32 _nHandle)
{
PropertyDescriptionCompareByHandle aCompareOp;
- PropertyDescription aSearch;
- aSearch.nHandle = _nHandle;
// search a lower bound
PropertiesIterator aLowerBound = ::std::lower_bound(
m_aProperties.begin(),
m_aProperties.end(),
- aSearch,
- aCompareOp);
+ _nHandle,
+ PropertyDescriptionHandleCompare());
// check for identity
if ((aLowerBound != m_aProperties.end()) && aLowerBound->nHandle != _nHandle)
@@ -504,16 +502,6 @@ void OPropertyContainer::modifyAttributes(sal_Int32 _nHandle, sal_Int32 _nAddAtt
aPos->nHandle &= ~_nRemoveAttrib;
}
-//--------------------------------------------------------------------------
-// comparing two property instances
-struct PropertyCompareByName : public ::std::binary_function< Property, Property, sal_Bool >
-{
- bool operator() (const Property& x, const Property& y) const
- {
- return x.Name < y.Name ? true : false;
- }
-};
-
//..........................................................................
void OPropertyContainer::describeProperties(Sequence< Property >& _rProps) const
{
@@ -532,7 +520,7 @@ void OPropertyContainer::describeProperties(Sequence< Property >& _rProps) const
}
// as our property vector is sorted by handles, not by name, we have to sort aOwnProps
- qsort(aOwnProps.getArray(), aOwnProps.getLength(), sizeof(Property), PropertyCompare);
+ ::std::sort(aOwnProps.getArray(), aOwnProps.getArray() + aOwnProps.getLength(), PropertyCompareByName());
// unfortunally the STL merge function does not allow the output range to overlap one of the input ranges,
// so we need an extra sequence
@@ -553,41 +541,4 @@ void OPropertyContainer::describeProperties(Sequence< Property >& _rProps) const
} // namespace comphelper
//.........................................................................
-/*************************************************************************
- * history:
- * $Log: not supported by cvs2svn $
- * Revision 1.11 2002/08/14 15:10:09 fs
- * #102329# convertFastPropertyValue: when the value is stored in an Any, and the property type is some XInterface-derivee, allow for queryInterface-calls, too (necessary for Java-calls)
- *
- * Revision 1.10 2002/01/09 15:05:39 fs
- * #96068# uno_type_assignData instead of uno_type_copyData
- *
- * Revision 1.9 2001/09/27 11:14:04 hr
- * #65293#: includes
- *
- * Revision 1.8 2001/08/17 09:07:32 fs
- * #91038# convertFastPropertyValue: allow for assigning different XInterface derivees
- *
- * Revision 1.7 2001/06/12 06:05:20 fs
- * added some assertions
- *
- * Revision 1.6 2001/03/22 13:32:35 jl
- * OSL_ENSHURE replaced by OSL_ENSHURE
- *
- * Revision 1.5 2000/11/29 08:18:43 fs
- * arghhh ... build the correct attributes in registerMayBeVoidProperty now (hopefully ...)
- *
- * Revision 1.4 2000/11/19 10:24:07 fs
- * registerMayBeVoidProperty: don't corrupt _nAttributes anymore
- *
- * Revision 1.3 2000/10/13 12:10:21 oj
- * impl dtor to avoid wrong delete call
- *
- * Revision 1.2 2000/10/06 14:43:54 fs
- * uno_typ_equalData instead of uno_typ_equal
- *
- * Revision 1.1 2000/09/21 08:52:22 fs
- * base class for classes which are simple property containers
- *
- ************************************************************************/
diff --git a/comphelper/source/property/propstate.cxx b/comphelper/source/property/propstate.cxx
index 9f4fa47bdb00..78ca4557baa3 100644
--- a/comphelper/source/property/propstate.cxx
+++ b/comphelper/source/property/propstate.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: propstate.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: oj $ $Date: 2000-11-03 14:25:29 $
+ * last change: $Author: hr $ $Date: 2003-03-19 15:58:39 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -78,11 +78,9 @@ namespace comphelper
//------------------------------------------------------------------------------
::com::sun::star::uno::Any SAL_CALL OPropertyStateHelper::queryInterface(const ::com::sun::star::uno::Type& _rType) throw( ::com::sun::star::uno::RuntimeException)
{
- ::com::sun::star::uno::Any aReturn;
- // ask the base class
- aReturn = OPropertySetHelper::queryInterface(_rType);
+ ::com::sun::star::uno::Any aReturn = OPropertySetHelper::queryInterface(_rType);
// our own ifaces
- if (!aReturn.hasValue())
+ if ( !aReturn.hasValue() )
aReturn = ::cppu::queryInterface(_rType, static_cast< ::com::sun::star::beans::XPropertyState*>(this));
return aReturn;
diff --git a/comphelper/util/defs/wntmsci7 b/comphelper/util/defs/wntmsci7
new file mode 100644
index 000000000000..379cbc6b2a80
--- /dev/null
+++ b/comphelper/util/defs/wntmsci7
@@ -0,0 +1,2522 @@
+??0ClassData1@cppu@@QAE@J@Z
+??0Exception@uno@star@sun@com@@QAE@ABV01234@@Z
+??0NoSuchElementException@container@star@sun@com@@QAE@ABV01234@@Z
+??1Any@uno@star@sun@com@@QAE@XZ
+??1ClassData1@cppu@@QAE@XZ
+??1NoSuchElementException@container@star@sun@com@@QAE@XZ
+??1OUString@rtl@@QAE@XZ
+??_B?1???s_aCD@?$WeakImplHelper1@VXEnumeration@container@star@sun@com@@@$D@@9@51
+??_R0?AVException@uno@star@sun@com@@@8
+??_R0?AVNoSuchElementException@container@star@sun@com@@@8
+?hasMoreElements@OEnumerationByIndex@comphelper@@UAAEXZ
+?hasMoreElements@OEnumerationByName@comphelper@@UAAEXZ
+?nextElement@OEnumerationByIndex@comphelper@@UAA?AVAny@uno@star@sun@com@@XZ
+?nextElement@OEnumerationByName@comphelper@@UAA?AVAny@uno@star@sun@com@@XZ
+?s_aCD@?$WeakImplHelper1@VXEnumeration@container@star@sun@com@@@$E
+?s_aCD@?$WeakImplHelper1@VXEnumeration@container@star@sun@com@@@cppu@@0UClassData1@2@A
+_TI2?AVNoSuchElementException@container@star@sun@com@@
+cpp_acquire
+cpp_release
+??0BaseReference@uno@star@sun@com@@IAE@ABV01234@@Z
+??0IndexAccessIterator@comphelper@@QAE@V?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@@Z
+??1?$Reference@VXChild@container@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXIndexAccess@container@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$_Node_Alloc_Lock@$00$0A@@_STL@@QAE@XZ
+??1BaseReference@uno@star@sun@com@@IAE@XZ
+??_7IndexAccessIterator@comphelper@@6B@
+??_C@_0BO@NPIK@com?4sun?4star?4container?4XChild?$AA@
+??_C@_0CE@KPOK@com?4sun?4star?4container?4XIndexAcc@
+?Invalidate@IndexAccessIterator@comphelper@@UAEXXZ
+?Next@IndexAccessIterator@comphelper@@QAE?AV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?ShouldHandleElement@IndexAccessIterator@comphelper@@MAEEABV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@@Z
+?ShouldStepInto@IndexAccessIterator@comphelper@@MBEEABV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@@Z
+?_M_do_lock@?$_STL_mutex_spin@$0A@@_STL@@SAXPCK@Z
+?_M_insert_overflow@?$vector@JV?$allocator@J@_STL@@@_STL@@IAEXPAJABJI@Z
+?_S_chunk_alloc@?$D__A@$00$0A@@_STL@@CAPADIAAH@Z
+?_S_end_free@?$D__A@$00$0A@@_STL@@0PADA
+?_S_free_list@?$D__A@$00$0A@@_STL@@0RCRAV_Node_alloc_obj@2@C
+?_S_heap_size@?$D__A@$00$0A@@_STL@@0IA
+?_S_lock@?$_Node_Alloc_Lock@$00$0A@@_STL@@2U_STL_mutex_base@2@A
+?_S_start_free@?$D__A@$00$0A@@_STL@@0PADA
+?__last@?$_STL_mutex_spin@$0A@@_STL@@2IA
+?__max@?$_STL_mutex_spin@$0A@@_STL@@2IA
+?allocate@?$D__A@$00$0A@@_STL@@SAPAXI@Z
+?query@?$Reference@VXChild@container@star@sun@com@@@uno@star@sun@com@@SA?AV12345@ABVBaseReference@2345@@Z
+?query@?$Reference@VXChild@container@star@sun@com@@@uno@star@sun@com@@SA?AV12345@PAVXInterface@2345@@Z
+?query@?$Reference@VXIndexAccess@container@star@sun@com@@@uno@star@sun@com@@SA?AV12345@ABVBaseReference@2345@@Z
+?query@?$Reference@VXIndexAccess@container@star@sun@com@@@uno@star@sun@com@@SA?AV12345@PAVXInterface@2345@@Z
+?s_pType_com_sun_star_container_XChild@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXChild@container@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_container_XIndexAccess@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXIndexAccess@container@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?set@BaseReference@uno@star@sun@com@@QAAXPAVXInterface@2345@@Z
+??0?$ImplHelperBase2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@QAE@XZ
+??0?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
+??0?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4__UnoReference_Query@1234@@Z
+??0?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAE@PAVXInterface@1234@W4__UnoReference_Query@1234@@Z
+??0?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??0?$Sequence@V?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
+??0?$Sequence@V?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??0?$_Deque_base@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAE@ABV?$allocator@UAttachedObject_Impl@comphelper@@@1@I@Z
+??0?$_Deque_base@UAttacherIndex_Impl@comphelper@@V?$allocator@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@QAE@ABV?$allocator@UAttacherIndex_Impl@comphelper@@@1@I@Z
+??0?$_Deque_iterator_base@UAttachedObject_Impl@comphelper@@@_STL@@QAE@XZ
+??0?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAE@ABU01@@Z
+??0?$_Dq__It@UAttacherIndex_Impl@comphelper@@U?$_N_Tr@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@QAE@ABU01@@Z
+??0?$_STL_alloc_proxy@IUAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAE@ABV?$allocator@UAttachedObject_Impl@comphelper@@@1@I@Z
+??0?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAE@ABV01@@Z
+??0AllEventObject@script@star@sun@com@@QAE@XZ
+??0Any@uno@star@sun@com@@QAE@ABV01234@@Z
+??0AttacherAllListener_Impl@comphelper@@QAE@PAVImplEventAttacherManager@1@ABVOUString@rtl@@1@Z
+??0BaseReference@uno@star@sun@com@@IAE@PAVXInterface@1234@@Z
+??0CannotConvertException@script@star@sun@com@@QAE@ABV01234@@Z
+??0ClassData2@cppu@@QAE@J@Z
+??0Exception@uno@star@sun@com@@QAE@XZ
+??0IllegalArgumentException@lang@star@sun@com@@QAE@ABV01234@@Z
+??0ImplEventAttacherManager@comphelper@@QAE@ABV?$Reference@VXIntrospection@beans@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@3456@@Z
+??0OUString@rtl@@QAE@ABV01@@Z
+??0OWeakObject@cppu@@QAE@XZ
+??1?$Guard@VMutex@osl@@@osl@@QAE@XZ
+??1?$Reference@VXAllListener@script@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXEventAttacher@script@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXIdlClass@reflection@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXIdlMethod@reflection@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXIdlReflection@reflection@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXInitialization@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXIntrospection@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXMarkableStream@io@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXTypeConverter@script@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Sequence@UScriptEventDescriptor@script@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Sequence@V?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$WeakImplHelper1@VXAllListener@script@star@sun@com@@@cppu@@UAE@XZ
+??1?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@UAE@XZ
+??1?$_Deque_base@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAE@XZ
+??1?$_Deque_base@UAttacherIndex_Impl@comphelper@@V?$allocator@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@QAE@XZ
+??1?$_STL_alloc_proxy@IUAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAE@XZ
+??1?$_STL_alloc_proxy@IUAttacherIndex_Impl@comphelper@@V?$allocator@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@QAE@XZ
+??1?$_STL_alloc_proxy@PAPAUAttachedObject_Impl@comphelper@@PAU12@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAE@XZ
+??1?$_STL_alloc_proxy@PAPAUAttacherIndex_Impl@comphelper@@PAU12@V?$allocator@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@QAE@XZ
+??1?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@QAE@XZ
+??1?$allocator@UAttacherIndex_Impl@comphelper@@@_STL@@QAE@XZ
+??1?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAE@XZ
+??1?$deque@UAttacherIndex_Impl@comphelper@@V?$allocator@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@QAE@XZ
+??1AllEventObject@script@star@sun@com@@QAE@XZ
+??1AttachedObject_Impl@comphelper@@QAE@XZ
+??1AttacherAllListener_Impl@comphelper@@UAE@XZ
+??1AttacherIndex_Impl@comphelper@@QAE@XZ
+??1CannotConvertException@script@star@sun@com@@QAE@XZ
+??1ClassData2@cppu@@QAE@XZ
+??1IllegalArgumentException@lang@star@sun@com@@QAE@XZ
+??1ImplEventAttacherManager@comphelper@@UAE@XZ
+??1Mutex@osl@@QAE@XZ
+??1ScriptEvent@script@star@sun@com@@QAE@XZ
+??1ScriptEventDescriptor@script@star@sun@com@@QAE@XZ
+??1Type@uno@star@sun@com@@QAE@XZ
+??3@YAXPAX0@Z
+??3OWeakObject@cppu@@SAXPAX@Z
+??4?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAEAAV01@ABV01@@Z
+??D?$_Dq__It@UAttacherIndex_Impl@comphelper@@U?$_N_Tr@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@QBEAAUAttacherIndex_Impl@comphelper@@XZ
+??G?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QBE?AU01@H@Z
+??_7?$ImplHelperBase1@VXAllListener@script@star@sun@com@@@cppu@@6BXAllListener@script@star@sun@com@@@
+??_7?$ImplHelperBase1@VXAllListener@script@star@sun@com@@@cppu@@6BXTypeProvider@lang@star@sun@com@@@
+??_7?$ImplHelperBase2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@6BXEventAttacherManager@script@star@sun@com@@@
+??_7?$ImplHelperBase2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@6BXPersistObject@io@star@sun@com@@@
+??_7?$ImplHelperBase2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@6BXTypeProvider@lang@star@sun@com@@@
+??_7?$WeakImplHelper1@VXAllListener@script@star@sun@com@@@cppu@@6B@
+??_7?$WeakImplHelper1@VXAllListener@script@star@sun@com@@@cppu@@6BXAllListener@script@star@sun@com@@@
+??_7?$WeakImplHelper1@VXAllListener@script@star@sun@com@@@cppu@@6BXTypeProvider@lang@star@sun@com@@@
+??_7?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@6B@
+??_7?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@6BXEventAttacherManager@script@star@sun@com@@@
+??_7?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@6BXPersistObject@io@star@sun@com@@@
+??_7?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@6BXTypeProvider@lang@star@sun@com@@@
+??_7AttacherAllListener_Impl@comphelper@@6B@
+??_7AttacherAllListener_Impl@comphelper@@6BXAllListener@script@star@sun@com@@@
+??_7AttacherAllListener_Impl@comphelper@@6BXTypeProvider@lang@star@sun@com@@@
+??_7ImplEventAttacherManager@comphelper@@6B@
+??_7ImplEventAttacherManager@comphelper@@6BXEventAttacherManager@script@star@sun@com@@@
+??_7ImplEventAttacherManager@comphelper@@6BXPersistObject@io@star@sun@com@@@
+??_7ImplEventAttacherManager@comphelper@@6BXTypeProvider@lang@star@sun@com@@@
+??_7OWeakObject@cppu@@6B@
+??_7XAllListener@script@star@sun@com@@6B@
+??_7XEventAttacherManager@script@star@sun@com@@6B@
+??_7XPersistObject@io@star@sun@com@@6B@
+??_B?1???s_aCD@?$WeakImplHelper1@VXAllListener@script@star@sun@com@@@$D@@9@51
+??_B?1???s_aCD@?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@$D@@9@51
+??_C@_0BM@DBOO@com?4sun?4star?4uno?4XInterface?$AA@
+??_C@_0BP@NGJE@com?4sun?4star?4io?4XPersistObject?$AA@
+??_C@_0CA@CEAJ@com?4sun?4star?4io?4XMarkableStream?$AA@
+??_C@_0CB@CGCO@com?4sun?4star?4lang?4XEventListener@
+??_C@_0CB@OMIF@com?4sun?4star?4script?4XAllListener@
+??_C@_0CC@OKIO@com?4sun?4star?4beans?4XIntrospectio@
+??_C@_0CC@OOBK@com?4sun?4star?4lang?4XInitializatio@
+??_C@_0CD@BNNH@com?4sun?4star?4script?4XEventAttach@
+??_C@_0CD@GHM@com?4sun?4star?4script?4XTypeConvert@
+??_C@_0CH@EIEF@com?4sun?4star?4reflection?4XIdlRefl@
+??_C@_0CK@KPGJ@com?4sun?4star?4script?4XEventAttach@
+??_C@_0CK@OEKF@com?4sun?4star?4script?4ScriptEventD@
+??_G?$WeakImplHelper1@VXAllListener@script@star@sun@com@@@cppu@@UAEPAXI@Z
+??_G?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@UAEPAXI@Z
+??_GAttachedObject_Impl@comphelper@@QAEPAXI@Z
+??_GAttacherAllListener_Impl@comphelper@@UAEPAXI@Z
+??_GAttacherIndex_Impl@comphelper@@QAEPAXI@Z
+??_GImplEventAttacherManager@comphelper@@UAEPAXI@Z
+??_GOWeakObject@cppu@@MAEPAXI@Z
+??_R0?AVCannotConvertException@script@star@sun@com@@@8
+??_R0?AVIllegalArgumentException@lang@star@sun@com@@@8
+?_Construct@_STL@@YAXPAUAttachedObject_Impl@comphelper@@ABU23@@Z
+?_Construct@_STL@@YAXPAUAttacherIndex_Impl@comphelper@@ABU23@@Z
+?_Destroy@_STL@@YAXU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@0@Z
+?_Destroy@_STL@@YAXU?$_Dq__It@UAttacherIndex_Impl@comphelper@@U?$_N_Tr@UAttacherIndex_Impl@comphelper@@@_STL@@@1@0@Z
+?_M_advance@?$_Deque_iterator_base@UAttachedObject_Impl@comphelper@@@_STL@@QAEXH@Z
+?_M_advance@?$_Deque_iterator_base@UAttacherIndex_Impl@comphelper@@@_STL@@QAEXH@Z
+?_M_create_nodes@?$_Deque_base@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@IAEXPAPAUAttachedObject_Impl@comphelper@@0@Z
+?_M_create_nodes@?$_Deque_base@UAttacherIndex_Impl@comphelper@@V?$allocator@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@IAEXPAPAUAttacherIndex_Impl@comphelper@@0@Z
+?_M_decrement@?$_Deque_iterator_base@UAttachedObject_Impl@comphelper@@@_STL@@QAEXXZ
+?_M_decrement@?$_Deque_iterator_base@UAttacherIndex_Impl@comphelper@@@_STL@@QAEXXZ
+?_M_destroy_nodes@?$_Deque_base@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@IAEXPAPAUAttachedObject_Impl@comphelper@@0@Z
+?_M_increment@?$_Deque_iterator_base@UAttachedObject_Impl@comphelper@@@_STL@@QAEXXZ
+?_M_increment@?$_Deque_iterator_base@UAttacherIndex_Impl@comphelper@@@_STL@@QAEXXZ
+?_M_initialize_map@?$_Deque_base@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@IAEXI@Z
+?_M_initialize_map@?$_Deque_base@UAttacherIndex_Impl@comphelper@@V?$allocator@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@IAEXI@Z
+?_M_insert_aux@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@IAEXU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@2@U?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_C_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@2@1I@Z
+?_M_insert_aux@?$deque@UAttacherIndex_Impl@comphelper@@V?$allocator@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@IAE?AU?$_Dq__It@UAttacherIndex_Impl@comphelper@@U?$_N_Tr@UAttacherIndex_Impl@comphelper@@@_STL@@@2@U32@ABUAttacherIndex_Impl@comphelper@@@Z
+?_M_insert_aux_prepare@?$deque@UAttacherIndex_Impl@comphelper@@V?$allocator@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@IAE?AU?$_Dq__It@UAttacherIndex_Impl@comphelper@@U?$_N_Tr@UAttacherIndex_Impl@comphelper@@@_STL@@@2@U32@@Z
+?_M_insert_dispatch@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAEXU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@2@U?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_C_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@2@1U__false_type@@@Z
+?_M_new_elements_at_back@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@IAEXI@Z
+?_M_new_elements_at_front@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@IAEXI@Z
+?_M_pop_front_aux@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@IAEXXZ
+?_M_pop_front_aux@?$deque@UAttacherIndex_Impl@comphelper@@V?$allocator@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@IAEXXZ
+?_M_push_back_aux_v@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@IAEXABUAttachedObject_Impl@comphelper@@@Z
+?_M_push_back_aux_v@?$deque@UAttacherIndex_Impl@comphelper@@V?$allocator@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@IAEXABUAttacherIndex_Impl@comphelper@@@Z
+?_M_push_front_aux_v@?$deque@UAttacherIndex_Impl@comphelper@@V?$allocator@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@IAEXABUAttacherIndex_Impl@comphelper@@@Z
+?_M_reallocate_map@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@IAEXI_N@Z
+?_M_reallocate_map@?$deque@UAttacherIndex_Impl@comphelper@@V?$allocator@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@IAEXI_N@Z
+?_M_subtract@?$_Deque_iterator_base@UAttachedObject_Impl@comphelper@@@_STL@@QBEHABU12@@Z
+?_M_subtract@?$_Deque_iterator_base@UAttacherIndex_Impl@comphelper@@@_STL@@QBEHABU12@@Z
+?_S_refill@?$D__A@$00$0A@@_STL@@CAPAXI@Z
+?__copy@_STL@@YA?AU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@U21@00U_Ra__ItT@1@PAH@Z
+?__copy@_STL@@YA?AU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@U?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_C_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@0U21@U_Ra__ItT@1@PAH@Z
+?__copy@_STL@@YA?AU?$_Dq__It@UAttacherIndex_Impl@comphelper@@U?$_N_Tr@UAttacherIndex_Impl@comphelper@@@_STL@@@1@U21@00U_Ra__ItT@1@PAH@Z
+?__copy_backward@_STL@@YA?AU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@U21@00U_Ra__ItT@1@PAH@Z
+?__copy_backward@_STL@@YA?AU?$_Dq__It@UAttacherIndex_Impl@comphelper@@U?$_N_Tr@UAttacherIndex_Impl@comphelper@@@_STL@@@1@U21@00U_Ra__ItT@1@PAH@Z
+?__destroy@_STL@@YAXU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@0PAUAttachedObject_Impl@comphelper@@@Z
+?__destroy@_STL@@YAXU?$_Dq__It@UAttacherIndex_Impl@comphelper@@U?$_N_Tr@UAttacherIndex_Impl@comphelper@@@_STL@@@1@0PAUAttacherIndex_Impl@comphelper@@@Z
+?__destroy_aux@_STL@@YAXU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@0U__false_type@@@Z
+?__destroy_aux@_STL@@YAXU?$_Dq__It@UAttacherIndex_Impl@comphelper@@U?$_N_Tr@UAttacherIndex_Impl@comphelper@@@_STL@@@1@0U__false_type@@@Z
+?__uninitialized_copy@_STL@@YA?AU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@U21@00PAUAttachedObject_Impl@comphelper@@@Z
+?__uninitialized_copy@_STL@@YA?AU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@U?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_C_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@0U21@PAUAttachedObject_Impl@comphelper@@@Z
+?__uninitialized_copy_aux@_STL@@YA?AU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@U21@00U__false_type@@@Z
+?__uninitialized_copy_aux@_STL@@YA?AU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@U?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_C_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@0U21@U__false_type@@@Z
+?__uninitialized_copy_copy@_STL@@YA?AU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@U21@0U?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_C_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@10@Z
+?__uninitialized_copy_copy@_STL@@YA?AU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@U?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_C_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@0U21@11@Z
+?acquire@?$WeakImplHelper1@VXAllListener@script@star@sun@com@@@cppu@@UAAXXZ
+?acquire@?$WeakImplHelper1@VXAllListener@script@star@sun@com@@@cppu@@WBA@AAXXZ
+?acquire@?$WeakImplHelper1@VXAllListener@script@star@sun@com@@@cppu@@WM@AAXXZ
+?acquire@?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@UAAXXZ
+?acquire@?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@WBA@AAXXZ
+?acquire@?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@WBE@AAXXZ
+?acquire@?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@WM@AAXXZ
+?addScriptListener@ImplEventAttacherManager@comphelper@@UAAXABV?$Reference@VXScriptListener@script@star@sun@com@@@uno@star@sun@com@@@Z
+?approveFiring@AttacherAllListener_Impl@comphelper@@UAA?AVAny@uno@star@sun@com@@ABUAllEventObject@script@567@@Z
+?attach@ImplEventAttacherManager@comphelper@@UAAXJABV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@ABVAny@4567@@Z
+?attachAll_Impl@comphelper@@YAXPAVImplEventAttacherManager@1@JAAV?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@@Z
+?begin@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QBE?AU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_C_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@2@XZ
+?compareTo@OUString@rtl@@QBEJABV12@@Z
+?convertToEventReturn@AttacherAllListener_Impl@comphelper@@AAEXAAVAny@uno@star@sun@com@@ABVType@4567@@Z
+?copy@_STL@@YA?AU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@U21@00@Z
+?copy@_STL@@YA?AU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@U?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_C_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@0U21@@Z
+?copy@_STL@@YA?AU?$_Dq__It@UAttacherIndex_Impl@comphelper@@U?$_N_Tr@UAttacherIndex_Impl@comphelper@@@_STL@@@1@U21@00@Z
+?copy_backward@_STL@@YA?AU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@U21@00@Z
+?copy_backward@_STL@@YA?AU?$_Dq__It@UAttacherIndex_Impl@comphelper@@U?$_N_Tr@UAttacherIndex_Impl@comphelper@@@_STL@@@1@U21@00@Z
+?createEventAttacherManager@comphelper@@YA?AV?$Reference@VXEventAttacherManager@script@star@sun@com@@@uno@star@sun@com@@ABV?$Reference@VXIntrospection@beans@star@sun@com@@@3456@ABV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@3456@@Z
+?createEventAttacherManager@comphelper@@YA?AV?$Reference@VXEventAttacherManager@script@star@sun@com@@@uno@star@sun@com@@ABV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@3456@@Z
+?createFromAscii@OUString@rtl@@SA?AV12@PBD@Z
+?deallocate@?$D__A@$00$0A@@_STL@@SAXPAXI@Z
+?deallocate@?$_STL_alloc_proxy@IUAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAEXPAUAttachedObject_Impl@comphelper@@I@Z
+?deallocate@?$_STL_alloc_proxy@PAPAUAttachedObject_Impl@comphelper@@PAU12@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAEXPAPAUAttachedObject_Impl@comphelper@@I@Z
+?deallocate@?$allocator@PAUAttachedObject_Impl@comphelper@@@_STL@@QBEXPAPAUAttachedObject_Impl@comphelper@@I@Z
+?deallocate@?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@QBEXPAUAttachedObject_Impl@comphelper@@I@Z
+?deallocate@?$allocator@UAttacherIndex_Impl@comphelper@@@_STL@@QBEXPAUAttacherIndex_Impl@comphelper@@I@Z
+?detach@ImplEventAttacherManager@comphelper@@UAAXJABV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@@Z
+?detachAll_Impl@comphelper@@YAXPAVImplEventAttacherManager@1@JAAV?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@@Z
+?disposing@AttacherAllListener_Impl@comphelper@@UAAXABUEventObject@lang@star@sun@com@@@Z
+?end@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QBE?AU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_C_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@2@XZ
+?erase@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAE?AU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@2@U32@0@Z
+?erase@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAE?AU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@2@U32@@Z
+?erase@?$deque@UAttacherIndex_Impl@comphelper@@V?$allocator@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@QAE?AU?$_Dq__It@UAttacherIndex_Impl@comphelper@@U?$_N_Tr@UAttacherIndex_Impl@comphelper@@@_STL@@@2@U32@@Z
+?firing@AttacherAllListener_Impl@comphelper@@UAAXABUAllEventObject@script@star@sun@com@@@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@UScriptEventDescriptor@script@star@sun@com@@@2345@@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@V?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@@2345@@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@VAny@uno@star@sun@com@@@2345@@Z
+?getImplementationId@?$WeakImplHelper1@VXAllListener@script@star@sun@com@@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getImplementationId@?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getReflection@ImplEventAttacherManager@comphelper@@AAE?AV?$Reference@VXIdlReflection@reflection@star@sun@com@@@uno@star@sun@com@@XZ
+?getScriptEvents@ImplEventAttacherManager@comphelper@@UAA?AV?$Sequence@UScriptEventDescriptor@script@star@sun@com@@@uno@star@sun@com@@J@Z
+?getServiceName@ImplEventAttacherManager@comphelper@@UAA?AVOUString@rtl@@XZ
+?getTypeName@Type@uno@star@sun@com@@QBA?AVOUString@rtl@@XZ
+?getTypes@?$WeakImplHelper1@VXAllListener@script@star@sun@com@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?getTypes@?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?get_allocator@?$_Deque_base@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QBE?AV?$allocator@UAttachedObject_Impl@comphelper@@@2@XZ
+?insert@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@IAEXU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@2@U?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_C_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@2@1Uforward_iterator_tag@2@@Z
+?insert@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAEXU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@2@U?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_C_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@2@1@Z
+?insert@?$deque@UAttacherIndex_Impl@comphelper@@V?$allocator@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@QAE?AU?$_Dq__It@UAttacherIndex_Impl@comphelper@@U?$_N_Tr@UAttacherIndex_Impl@comphelper@@@_STL@@@2@U32@ABUAttacherIndex_Impl@comphelper@@@Z
+?insertEntry@ImplEventAttacherManager@comphelper@@UAAXJ@Z
+?query@?$Reference@VXEventAttacher@script@star@sun@com@@@uno@star@sun@com@@SA?AV12345@ABVBaseReference@2345@@Z
+?query@?$Reference@VXEventAttacher@script@star@sun@com@@@uno@star@sun@com@@SA?AV12345@PAVXInterface@2345@@Z
+?query@?$Reference@VXIdlReflection@reflection@star@sun@com@@@uno@star@sun@com@@SA?AV12345@ABVBaseReference@2345@@Z
+?query@?$Reference@VXIdlReflection@reflection@star@sun@com@@@uno@star@sun@com@@SA?AV12345@PAVXInterface@2345@@Z
+?query@?$Reference@VXInitialization@lang@star@sun@com@@@uno@star@sun@com@@SA?AV12345@ABVBaseReference@2345@@Z
+?query@?$Reference@VXInitialization@lang@star@sun@com@@@uno@star@sun@com@@SA?AV12345@PAVXInterface@2345@@Z
+?query@?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@SA?AV12345@ABVBaseReference@2345@@Z
+?query@?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@SA?AV12345@PAVXInterface@2345@@Z
+?query@?$Reference@VXIntrospection@beans@star@sun@com@@@uno@star@sun@com@@SA?AV12345@ABVBaseReference@2345@@Z
+?query@?$Reference@VXIntrospection@beans@star@sun@com@@@uno@star@sun@com@@SA?AV12345@PAVXInterface@2345@@Z
+?query@?$Reference@VXMarkableStream@io@star@sun@com@@@uno@star@sun@com@@SA?AV12345@ABVBaseReference@2345@@Z
+?query@?$Reference@VXMarkableStream@io@star@sun@com@@@uno@star@sun@com@@SA?AV12345@PAVXInterface@2345@@Z
+?query@?$Reference@VXTypeConverter@script@star@sun@com@@@uno@star@sun@com@@SA?AV12345@ABVBaseReference@2345@@Z
+?query@?$Reference@VXTypeConverter@script@star@sun@com@@@uno@star@sun@com@@SA?AV12345@PAVXInterface@2345@@Z
+?queryInterface@?$WeakImplHelper1@VXAllListener@script@star@sun@com@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper1@VXAllListener@script@star@sun@com@@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper1@VXAllListener@script@star@sun@com@@@cppu@@WM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@WM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?read@ImplEventAttacherManager@comphelper@@UAAXABV?$Reference@VXObjectInputStream@io@star@sun@com@@@uno@star@sun@com@@@Z
+?registerScriptEvent@ImplEventAttacherManager@comphelper@@UAAXJABUScriptEventDescriptor@script@star@sun@com@@@Z
+?registerScriptEvents@ImplEventAttacherManager@comphelper@@UAAXJABV?$Sequence@UScriptEventDescriptor@script@star@sun@com@@@uno@star@sun@com@@@Z
+?release@?$WeakImplHelper1@VXAllListener@script@star@sun@com@@@cppu@@UAAXXZ
+?release@?$WeakImplHelper1@VXAllListener@script@star@sun@com@@@cppu@@WBA@AAXXZ
+?release@?$WeakImplHelper1@VXAllListener@script@star@sun@com@@@cppu@@WM@AAXXZ
+?release@?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@UAAXXZ
+?release@?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@WBA@AAXXZ
+?release@?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@WBE@AAXXZ
+?release@?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@WM@AAXXZ
+?removeEntry@ImplEventAttacherManager@comphelper@@UAAXJ@Z
+?removeScriptListener@ImplEventAttacherManager@comphelper@@UAAXABV?$Reference@VXScriptListener@script@star@sun@com@@@uno@star@sun@com@@@Z
+?revokeScriptEvent@ImplEventAttacherManager@comphelper@@UAAXJABVOUString@rtl@@00@Z
+?revokeScriptEvents@ImplEventAttacherManager@comphelper@@UAAXJ@Z
+?s_aCD@?$WeakImplHelper1@VXAllListener@script@star@sun@com@@@$E
+?s_aCD@?$WeakImplHelper1@VXAllListener@script@star@sun@com@@@cppu@@0UClassData1@2@A
+?s_aCD@?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@$E
+?s_aCD@?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@0UClassData2@2@A
+?s_pType@?$Sequence@UScriptEventDescriptor@script@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType@?$Sequence@V?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType@?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_beans_XIntrospection@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXIntrospection@beans@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_io_XMarkableStream@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXMarkableStream@io@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_io_XPersistObject@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPersistObject@io@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_lang_XEventListener@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXEventListener@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_lang_XInitialization@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInitialization@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_reflection_XIdlReflection@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXIdlReflection@reflection@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_script_ScriptEventDescriptor@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUScriptEventDescriptor@script@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_script_XAllListener@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAllListener@script@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_script_XEventAttacher@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXEventAttacher@script@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_script_XEventAttacherManager@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXEventAttacherManager@script@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_script_XTypeConverter@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTypeConverter@script@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_uno_XInterface@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInterface@uno@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?setValue@Any@uno@star@sun@com@@QAAXPBXABVType@2345@@Z
+?setValue@Any@uno@star@sun@com@@QAAXPBXPAU_typelib_TypeDescriptionReference@@@Z
+?uninitialized_copy@_STL@@YA?AU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@U21@00@Z
+?uninitialized_copy@_STL@@YA?AU?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_N_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@U?$_Dq__It@UAttachedObject_Impl@comphelper@@U?$_C_Tr@UAttachedObject_Impl@comphelper@@@_STL@@@1@0U21@@Z
+?write@ImplEventAttacherManager@comphelper@@UAAXABV?$Reference@VXObjectOutputStream@io@star@sun@com@@@uno@star@sun@com@@@Z
+_TI2?AVCannotConvertException@script@star@sun@com@@
+_TI2?AVIllegalArgumentException@lang@star@sun@com@@
+_real@4@00000000000000000000
+_real@8@00000000000000000000
+cpp_queryInterface
+??0OInteractionRequest@comphelper@@QAE@ABVAny@uno@star@sun@com@@@Z
+??1?$WeakImplHelper1@VXInteractionRequest@task@star@sun@com@@@cppu@@UAE@XZ
+??1OInteractionRequest@comphelper@@UAE@XZ
+??_7?$ImplHelperBase1@VXInteractionRequest@task@star@sun@com@@@cppu@@6BXInteractionRequest@task@star@sun@com@@@
+??_7?$ImplHelperBase1@VXInteractionRequest@task@star@sun@com@@@cppu@@6BXTypeProvider@lang@star@sun@com@@@
+??_7?$WeakImplHelper1@VXInteractionRequest@task@star@sun@com@@@cppu@@6B@
+??_7?$WeakImplHelper1@VXInteractionRequest@task@star@sun@com@@@cppu@@6BXInteractionRequest@task@star@sun@com@@@
+??_7?$WeakImplHelper1@VXInteractionRequest@task@star@sun@com@@@cppu@@6BXTypeProvider@lang@star@sun@com@@@
+??_7OInteractionRequest@comphelper@@6B@
+??_7OInteractionRequest@comphelper@@6BXInteractionRequest@task@star@sun@com@@@
+??_7OInteractionRequest@comphelper@@6BXTypeProvider@lang@star@sun@com@@@
+??_7XInteractionRequest@task@star@sun@com@@6B@
+??_B?1???s_aCD@?$WeakImplHelper1@VXInteractionRequest@task@star@sun@com@@@$D@@9@51
+??_C@_0CG@MMLC@com?4sun?4star?4task?4XInteractionRe@
+??_C@_0CL@BFFE@com?4sun?4star?4task?4XInteractionCo@
+??_G?$WeakImplHelper1@VXInteractionRequest@task@star@sun@com@@@cppu@@UAEPAXI@Z
+??_GOInteractionRequest@comphelper@@UAEPAXI@Z
+?acquire@?$WeakImplHelper1@VXInteractionRequest@task@star@sun@com@@@cppu@@UAAXXZ
+?acquire@?$WeakImplHelper1@VXInteractionRequest@task@star@sun@com@@@cppu@@WBA@AAXXZ
+?acquire@?$WeakImplHelper1@VXInteractionRequest@task@star@sun@com@@@cppu@@WM@AAXXZ
+?addContinuation@OInteractionRequest@comphelper@@QAEXABV?$Reference@VXInteractionContinuation@task@star@sun@com@@@uno@star@sun@com@@@Z
+?clearContinuations@OInteractionRequest@comphelper@@QAEXXZ
+?getContinuations@OInteractionRequest@comphelper@@UAA?AV?$Sequence@V?$Reference@VXInteractionContinuation@task@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?getImplementationId@?$WeakImplHelper1@VXInteractionRequest@task@star@sun@com@@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getRequest@OInteractionRequest@comphelper@@UAA?AVAny@uno@star@sun@com@@XZ
+?getTypes@?$WeakImplHelper1@VXInteractionRequest@task@star@sun@com@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?queryInterface@?$WeakImplHelper1@VXInteractionRequest@task@star@sun@com@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper1@VXInteractionRequest@task@star@sun@com@@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper1@VXInteractionRequest@task@star@sun@com@@@cppu@@WM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@?$WeakImplHelper1@VXInteractionRequest@task@star@sun@com@@@cppu@@UAAXXZ
+?release@?$WeakImplHelper1@VXInteractionRequest@task@star@sun@com@@@cppu@@WBA@AAXXZ
+?release@?$WeakImplHelper1@VXInteractionRequest@task@star@sun@com@@@cppu@@WM@AAXXZ
+?s_aCD@?$WeakImplHelper1@VXInteractionRequest@task@star@sun@com@@@$E
+?s_aCD@?$WeakImplHelper1@VXInteractionRequest@task@star@sun@com@@@cppu@@0UClassData1@2@A
+?s_pType@?$Sequence@V?$Reference@VXInteractionContinuation@task@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_task_XInteractionContinuation@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInteractionContinuation@task@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_task_XInteractionRequest@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInteractionRequest@task@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+??0IllegalArgumentException@lang@star@sun@com@@QAE@XZ
+??1?$Sequence@C@uno@star@sun@com@@QAE@XZ
+??1?$Sequence@E@uno@star@sun@com@@QAE@XZ
+??1?$Sequence@F@uno@star@sun@com@@QAE@XZ
+??1?$Sequence@G@uno@star@sun@com@@QAE@XZ
+??1FontDescriptor@awt@star@sun@com@@QAE@XZ
+??8@YAEABVOUString@rtl@@0@Z
+??8BaseReference@uno@star@sun@com@@QBAEABV01234@@Z
+??8comphelper@@YAEABUFontDescriptor@awt@star@sun@com@@0@Z
+??_2uno@star@sun@com@@YAEABVAny@0123@AAC@Z
+??_2uno@star@sun@com@@YAEABVAny@0123@AAE@Z
+??_2uno@star@sun@com@@YAEABVAny@0123@AAF@Z
+??_2uno@star@sun@com@@YAEABVAny@0123@AAG@Z
+??_2uno@star@sun@com@@YAEABVAny@0123@AAJ@Z
+??_2uno@star@sun@com@@YAEABVAny@0123@AAK@Z
+??_2uno@star@sun@com@@YAEABVAny@0123@AAM@Z
+??_2uno@star@sun@com@@YAEABVAny@0123@AAN@Z
+??_2uno@star@sun@com@@YAEABVAny@0123@AAUDate@util@123@@Z
+??_2uno@star@sun@com@@YAEABVAny@0123@AAUDateTime@util@123@@Z
+??_2uno@star@sun@com@@YAEABVAny@0123@AAUTime@util@123@@Z
+??_2uno@star@sun@com@@YAEABVAny@0123@AAV?$Reference@VXInterface@uno@star@sun@com@@@0123@@Z
+??_2uno@star@sun@com@@YAEABVAny@0123@AAVOUString@rtl@@@Z
+??_C@_0BH@PFPL@com?4sun?4star?4util?4Date?$AA@
+??_C@_0BH@PJDI@com?4sun?4star?4util?4Time?$AA@
+??_C@_0BL@FCAJ@com?4sun?4star?4util?4DateTime?$AA@
+??_C@_0CA@HLBE@com?4sun?4star?4awt?4FontDescriptor?$AA@
+?compare@comphelper@@YAEABVAny@uno@star@sun@com@@0@Z
+?compare_impl@comphelper@@YAEABVType@uno@star@sun@com@@PBXABVAny@3456@@Z
+?getBOOL@comphelper@@YAEABVAny@uno@star@sun@com@@@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@C@2345@@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@E@2345@@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@F@2345@@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@G@2345@@Z
+?getDefaultFont@comphelper@@YA?AUFontDescriptor@awt@star@sun@com@@XZ
+?getDouble@comphelper@@YANABVAny@uno@star@sun@com@@@Z
+?getEnumAsINT32@comphelper@@YAJABVAny@uno@star@sun@com@@@Z
+?getFloat@comphelper@@YAMABVAny@uno@star@sun@com@@@Z
+?getINT16@comphelper@@YAFABVAny@uno@star@sun@com@@@Z
+?getINT32@comphelper@@YAJABVAny@uno@star@sun@com@@@Z
+?getSequenceElementType@comphelper@@YA?AVType@uno@star@sun@com@@ABV23456@@Z
+?getString@comphelper@@YA?AVOUString@rtl@@ABVAny@uno@star@sun@com@@@Z
+?isAssignableFrom@comphelper@@YAEABVType@uno@star@sun@com@@0@Z
+?s_pType@?$Sequence@C@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType@?$Sequence@E@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType@?$Sequence@F@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType@?$Sequence@G@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType@?$Sequence@J@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType@?$Sequence@K@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType@?$Sequence@VOUString@rtl@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_awt_FontDescriptor@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUFontDescriptor@awt@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_util_Date@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUDate@util@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_util_DateTime@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUDateTime@util@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_util_Time@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUTime@util@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?tryCompare@comphelper@@YAEPBXABVAny@uno@star@sun@com@@AAEAAD@Z
+??8comphelper@@YAEABUDate@util@star@sun@com@@0@Z
+??8comphelper@@YAEABUDateTime@util@star@sun@com@@0@Z
+??8comphelper@@YAEABUTime@util@star@sun@com@@0@Z
+??1?$Reference@VXNumberFormatTypes@util@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXNumberFormats@util@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXNumberFormatsSupplier@util@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??_C@_0CF@MAGC@com?4sun?4star?4util?4XNumberFormatT@
+?getNumberFormatDecimals@comphelper@@YA?AVAny@uno@star@sun@com@@ABV?$Reference@VXNumberFormats@util@star@sun@com@@@3456@J@Z
+?getNumberFormatType@comphelper@@YAFABV?$Reference@VXNumberFormats@util@star@sun@com@@@uno@star@sun@com@@J@Z
+?getNumberFormatType@comphelper@@YAFABV?$Reference@VXNumberFormatter@util@star@sun@com@@@uno@star@sun@com@@J@Z
+?getStandardFormat@comphelper@@YAJABV?$Reference@VXNumberFormatter@util@star@sun@com@@@uno@star@sun@com@@FABULocale@lang@456@@Z
+?makeAny@uno@star@sun@com@@YA?AVAny@1234@ABF@Z
+?query@?$Reference@VXNumberFormatTypes@util@star@sun@com@@@uno@star@sun@com@@SA?AV12345@ABVBaseReference@2345@@Z
+?query@?$Reference@VXNumberFormatTypes@util@star@sun@com@@@uno@star@sun@com@@SA?AV12345@PAVXInterface@2345@@Z
+?s_pType_com_sun_star_util_XNumberFormatTypes@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXNumberFormatTypes@util@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?findValue@comphelper@@YA?AV?$Sequence@F@uno@star@sun@com@@ABV?$Sequence@VOUString@rtl@@@3456@ABVOUString@rtl@@E@Z
+?isDerivedFrom@comphelper@@YAEABVType@uno@star@sun@com@@0@Z
+??1OString@rtl@@QAE@XZ
+??YOString@rtl@@QAE?AV01@ABV01@@Z
+?OStringToOUString@rtl@@YA?AVOUString@1@ABVOString@1@GK@Z
+?OUStringToOString@rtl@@YA?AVOString@1@ABVOUString@1@GK@Z
+?copy@OUString@rtl@@QBE?AV12@JJ@Z
+?getPathToSystemRegistry@comphelper@@YA?AVOUString@rtl@@XZ
+?getPathToUserRegistry@comphelper@@YA?AVOUString@rtl@@XZ
+?getToken@OUString@rtl@@QBE?AV12@JG@Z
+?valueOf@OString@rtl@@SA?AV12@D@Z
+?valueOf@OString@rtl@@SA?AV12@JF@Z
+?getProcessServiceFactory@comphelper@@YA?AV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@XZ
+?localProcessFactory@comphelper@@YA?AV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@ABV23456@E@Z
+?setProcessServiceFactory@comphelper@@YAXABV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@@Z
+??1?$Reference@VXRegistryKey@registry@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXSingleServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1Mapping@uno@star@sun@com@@QAE@XZ
+??_C@_0CD@NMEO@com?4sun?4star?4registry?4XRegistryK@
+??_C@_0CH@OMML@com?4sun?4star?4lang?4XMultiServiceF@
+??_C@_0CI@MPHO@com?4sun?4star?4lang?4XSingleService@
+?getComponentInstance@comphelper@@YA?AV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@0@Z
+?loadLibComponentFactory@comphelper@@YA?AV?$Reference@VXSingleServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@0ABV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@3456@ABV?$Reference@VXRegistryKey@registry@star@sun@com@@@3456@@Z
+?mapInterface@Mapping@uno@star@sun@com@@QBAXPAPAXPAXABVType@2345@@Z
+?s_pType_com_sun_star_lang_XMultiServiceFactory@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_lang_XSingleServiceFactory@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSingleServiceFactory@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_registry_XRegistryKey@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXRegistryKey@registry@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+??0?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@QAE@ABU?$less@J@1@ABV?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@1@@Z
+??0?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@QAE@ABU01@@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU01@@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@1@AB_N@Z
+??0Any@uno@star@sun@com@@QAE@XZ
+??0OPropertyAccessor@internal@comphelper@@QAE@XZ
+??0OPropertyArrayAggregationHelper@comphelper@@QAE@ABV?$Sequence@UProperty@beans@star@sun@com@@@uno@star@sun@com@@0PAVIPropertyInfoService@1@J@Z
+??0PropertyVetoException@beans@star@sun@com@@QAE@ABV01234@@Z
+??0UnknownPropertyException@beans@star@sun@com@@QAE@ABV01234@@Z
+??1?$Reference@VXFastPropertySet@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXMultiPropertySet@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXPropertiesChangeListener@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXPropertySetInfo@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXPropertyState@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXVetoableChangeListener@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Sequence@UProperty@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Sequence@VOUString@rtl@@@uno@star@sun@com@@QAE@XZ
+??1?$_STL_alloc_proxy@PAU?$_rbT__N@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@_STL@@U12@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@QAE@XZ
+??1?$_rbT__B@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@QAE@XZ
+??1?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@_STL@@QAE@XZ
+??1?$map@JUOPropertyAccessor@internal@comphelper@@U?$less@J@_STL@@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@5@@_STL@@QAE@XZ
+??1OPropertyArrayAggregationHelper@comphelper@@UAE@XZ
+??1PropertyVetoException@beans@star@sun@com@@QAE@XZ
+??1UnknownPropertyException@beans@star@sun@com@@QAE@XZ
+??A?$map@JUOPropertyAccessor@internal@comphelper@@U?$less@J@_STL@@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@5@@_STL@@QAEAAUOPropertyAccessor@internal@comphelper@@ABJ@Z
+??_7IPropertyArrayHelper@cppu@@6B@
+??_7OPropertyArrayAggregationHelper@comphelper@@6B@
+??_C@_0BM@LMLG@com?4sun?4star?4beans?4Property?$AA@
+??_C@_0CA@BHCN@com?4sun?4star?4beans?4XPropertySet?$AA@
+??_C@_0CC@OAPB@com?4sun?4star?4beans?4XPropertyStat@
+??_C@_0CE@CDIJ@com?4sun?4star?4beans?4XFastProperty@
+??_C@_0CF@CPJM@com?4sun?4star?4beans?4XMultiPropert@
+??_C@_0CL@CNKO@com?4sun?4star?4beans?4XVetoableChan@
+??_C@_0CN@OKEN@com?4sun?4star?4beans?4XPropertiesCh@
+??_EAny@uno@star@sun@com@@QAEPAXI@Z
+??_GIPropertyArrayHelper@cppu@@UAEPAXI@Z
+??_GOPropertyArrayAggregationHelper@comphelper@@UAEPAXI@Z
+??_R0?AVPropertyVetoException@beans@star@sun@com@@@8
+??_R0?AVUnknownPropertyException@beans@star@sun@com@@@8
+?_M_create_node@?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@IAEPAU?$_rbT__N@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@ABU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@2@@Z
+?_M_decrement@?$_Rb_global@_N@_STL@@SAXPAU_rbT__It@2@@Z
+?_M_erase@?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@AAEXPAU?$_rbT__N@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@Z
+?_M_insert@?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@2@PAU_rbT__NB@2@0ABU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@2@@Z
+?_Rb_tree_rotate_left@_STL@@YAXPAU_rbT__NB@1@AAPAU21@@Z
+?_Rb_tree_rotate_right@_STL@@YAXPAU_rbT__NB@1@AAPAU21@@Z
+?_Rebalance@?$_Rb_global@_N@_STL@@SAXPAU_rbT__NB@2@AAPAU32@@Z
+?addPropertiesChangeListener@OPropertySetAggregationHelper@comphelper@@UAAXABV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@ABV?$Reference@VXPropertiesChangeListener@beans@star@sun@com@@@4567@@Z
+?addPropertyChangeListener@OPropertySetAggregationHelper@comphelper@@UAAXABVOUString@rtl@@ABV?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?addVetoableChangeListener@OPropertySetAggregationHelper@comphelper@@UAAXABVOUString@rtl@@ABV?$Reference@VXVetoableChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?begin@?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@2@XZ
+?deallocate@?$allocator@U?$_rbT__N@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@_STL@@@_STL@@QBEXPAU?$_rbT__N@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@I@Z
+?destroy_node@?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@IAEXPAU?$_rbT__N@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@Z
+?disposing@OPropertySetAggregationHelper@comphelper@@MAAXXZ
+?disposing@OPropertySetAggregationHelper@comphelper@@UAAXABUEventObject@lang@star@sun@com@@@Z
+?end@?$map@JUOPropertyAccessor@internal@comphelper@@U?$less@J@_STL@@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@5@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@2@XZ
+?fillAggregatePropertyInfoByHandle@OPropertyArrayAggregationHelper@comphelper@@UBAEPAVOUString@rtl@@PAJJ@Z
+?fillHandles@OPropertyArrayAggregationHelper@comphelper@@UAAJPAJABV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@@Z
+?fillPropertyMembersByHandle@OPropertyArrayAggregationHelper@comphelper@@UAAEPAVOUString@rtl@@PAFJ@Z
+?find@?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@2@ABJ@Z
+?find@?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_C_Tr@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@2@ABJ@Z
+?findPropertyByName@OPropertyArrayAggregationHelper@comphelper@@IBEPAUProperty@beans@star@sun@com@@ABVOUString@rtl@@@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@UProperty@beans@star@sun@com@@@2345@@Z
+?getFastPropertyValue@OPropertySetAggregationHelper@comphelper@@MBAXAAVAny@uno@star@sun@com@@J@Z
+?getFastPropertyValue@OPropertySetAggregationHelper@comphelper@@UAA?AVAny@uno@star@sun@com@@J@Z
+?getHandleByName@OPropertyArrayAggregationHelper@comphelper@@UAAJABVOUString@rtl@@@Z
+?getOriginalHandle@OPropertySetAggregationHelper@comphelper@@IBEJJ@Z
+?getProperties@OPropertyArrayAggregationHelper@comphelper@@UAA?AV?$Sequence@UProperty@beans@star@sun@com@@@uno@star@sun@com@@XZ
+?getPropertyByName@OPropertyArrayAggregationHelper@comphelper@@UAA?AUProperty@beans@star@sun@com@@ABVOUString@rtl@@@Z
+?getPropertyDefault@OPropertySetAggregationHelper@comphelper@@UAA?AVAny@uno@star@sun@com@@ABVOUString@rtl@@@Z
+?getPropertyState@OPropertySetAggregationHelper@comphelper@@UAA?AW4PropertyState@beans@star@sun@com@@ABVOUString@rtl@@@Z
+?hasPropertyByName@OPropertyArrayAggregationHelper@comphelper@@UAAEABVOUString@rtl@@@Z
+?insert@?$map@JUOPropertyAccessor@internal@comphelper@@U?$less@J@_STL@@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@5@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@2@U32@ABU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@2@@Z
+?insert_unique@?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@2@U32@ABU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@2@@Z
+?insert_unique@?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@_N@2@ABU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@2@@Z
+?lower_bound@?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@2@ABJ@Z
+?lower_bound@?$map@JUOPropertyAccessor@internal@comphelper@@U?$less@J@_STL@@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@5@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@2@ABJ@Z
+?propertiesChange@OPropertySetAggregationHelper@comphelper@@UAAXABV?$Sequence@UPropertyChangeEvent@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?query@?$Reference@VXFastPropertySet@beans@star@sun@com@@@uno@star@sun@com@@SA?AV12345@ABVBaseReference@2345@@Z
+?query@?$Reference@VXFastPropertySet@beans@star@sun@com@@@uno@star@sun@com@@SA?AV12345@PAVXInterface@2345@@Z
+?query@?$Reference@VXMultiPropertySet@beans@star@sun@com@@@uno@star@sun@com@@SA?AV12345@ABVBaseReference@2345@@Z
+?query@?$Reference@VXMultiPropertySet@beans@star@sun@com@@@uno@star@sun@com@@SA?AV12345@PAVXInterface@2345@@Z
+?query@?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@SA?AV12345@ABVBaseReference@2345@@Z
+?query@?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@SA?AV12345@PAVXInterface@2345@@Z
+?query@?$Reference@VXPropertyState@beans@star@sun@com@@@uno@star@sun@com@@SA?AV12345@ABVBaseReference@2345@@Z
+?query@?$Reference@VXPropertyState@beans@star@sun@com@@@uno@star@sun@com@@SA?AV12345@PAVXInterface@2345@@Z
+?queryInterface@OPropertySetAggregationHelper@comphelper@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@cppu@@YA?AVAny@uno@star@sun@com@@ABVType@3456@PAVXPropertiesChangeListener@beans@456@PAVXVetoableChangeListener@9456@PAVXEventListener@lang@456@@Z
+?s_pType@?$Sequence@UProperty@beans@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_beans_Property@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUProperty@beans@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_beans_XFastPropertySet@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFastPropertySet@beans@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_beans_XMultiPropertySet@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXMultiPropertySet@beans@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_beans_XPropertiesChangeListener@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertiesChangeListener@beans@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_beans_XPropertySet@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertySet@beans@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_beans_XPropertyState@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertyState@beans@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_beans_XVetoableChangeListener@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXVetoableChangeListener@beans@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?setAggregation@OPropertySetAggregationHelper@comphelper@@IAEXABV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@@Z
+?setFastPropertyValue@OPropertySetAggregationHelper@comphelper@@UAAXJABVAny@uno@star@sun@com@@@Z
+?setPropertyToDefault@OPropertySetAggregationHelper@comphelper@@UAAXABVOUString@rtl@@@Z
+?setPropertyValues@OPropertySetAggregationHelper@comphelper@@UAAXABV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@ABV?$Sequence@VAny@uno@star@sun@com@@@4567@@Z
+?startListening@OPropertySetAggregationHelper@comphelper@@IAEXXZ
+?vetoableChange@OPropertySetAggregationHelper@comphelper@@UAAXABUPropertyChangeEvent@beans@star@sun@com@@@Z
+_TI2?AVPropertyVetoException@beans@star@sun@com@@
+_TI2?AVUnknownPropertyException@beans@star@sun@com@@
+??1Property@beans@star@sun@com@@QAE@XZ
+?ModifyPropertyAttributes@comphelper@@YAXAAV?$Sequence@UProperty@beans@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@FF@Z
+?PropertyCompare@comphelper@@YAHPBX0@Z
+?RemoveProperty@comphelper@@YAXAAV?$Sequence@UProperty@beans@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@@Z
+?copyProperties@comphelper@@YAXABV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@0@Z
+?hasProperty@comphelper@@YAEABVOUString@rtl@@ABV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?tryPropertyValue@comphelper@@YAEAAVAny@uno@star@sun@com@@0ABV23456@0ABVType@3456@@Z
+??0OPropertyChangeMultiplexer@comphelper@@QAE@PAVOPropertyChangeListener@1@ABV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@@Z
+??1?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$WeakImplHelper1@VXPropertyChangeListener@beans@star@sun@com@@@cppu@@UAE@XZ
+??1OPropertyChangeListener@comphelper@@UAE@XZ
+??1OPropertyChangeMultiplexer@comphelper@@EAE@XZ
+??_7?$ImplHelperBase1@VXPropertyChangeListener@beans@star@sun@com@@@cppu@@6BXPropertyChangeListener@beans@star@sun@com@@@
+??_7?$ImplHelperBase1@VXPropertyChangeListener@beans@star@sun@com@@@cppu@@6BXTypeProvider@lang@star@sun@com@@@
+??_7?$WeakImplHelper1@VXPropertyChangeListener@beans@star@sun@com@@@cppu@@6B@
+??_7?$WeakImplHelper1@VXPropertyChangeListener@beans@star@sun@com@@@cppu@@6BXPropertyChangeListener@beans@star@sun@com@@@
+??_7?$WeakImplHelper1@VXPropertyChangeListener@beans@star@sun@com@@@cppu@@6BXTypeProvider@lang@star@sun@com@@@
+??_7OPropertyChangeListener@comphelper@@6B@
+??_7OPropertyChangeMultiplexer@comphelper@@6B@
+??_7OPropertyChangeMultiplexer@comphelper@@6BXPropertyChangeListener@beans@star@sun@com@@@
+??_7OPropertyChangeMultiplexer@comphelper@@6BXTypeProvider@lang@star@sun@com@@@
+??_7XPropertyChangeListener@beans@star@sun@com@@6B@
+??_B?1???s_aCD@?$WeakImplHelper1@VXPropertyChangeListener@beans@star@sun@com@@@$D@@9@51
+??_C@_0CL@DKME@com?4sun?4star?4beans?4XPropertyChan@
+??_G?$WeakImplHelper1@VXPropertyChangeListener@beans@star@sun@com@@@cppu@@UAEPAXI@Z
+??_GOPropertyChangeListener@comphelper@@UAEPAXI@Z
+??_GOPropertyChangeMultiplexer@comphelper@@EAEPAXI@Z
+?acquire@?$WeakImplHelper1@VXPropertyChangeListener@beans@star@sun@com@@@cppu@@UAAXXZ
+?acquire@?$WeakImplHelper1@VXPropertyChangeListener@beans@star@sun@com@@@cppu@@WBA@AAXXZ
+?acquire@?$WeakImplHelper1@VXPropertyChangeListener@beans@star@sun@com@@@cppu@@WM@AAXXZ
+?addProperty@OPropertyChangeMultiplexer@comphelper@@QAEXABVOUString@rtl@@@Z
+?dispose@OPropertyChangeMultiplexer@comphelper@@QAEXXZ
+?disposing@OPropertyChangeMultiplexer@comphelper@@UAAXABUEventObject@lang@star@sun@com@@@Z
+?getImplementationId@?$WeakImplHelper1@VXPropertyChangeListener@beans@star@sun@com@@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getTypes@?$WeakImplHelper1@VXPropertyChangeListener@beans@star@sun@com@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?propertyChange@OPropertyChangeMultiplexer@comphelper@@UAAXABUPropertyChangeEvent@beans@star@sun@com@@@Z
+?queryInterface@?$WeakImplHelper1@VXPropertyChangeListener@beans@star@sun@com@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper1@VXPropertyChangeListener@beans@star@sun@com@@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper1@VXPropertyChangeListener@beans@star@sun@com@@@cppu@@WM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@?$WeakImplHelper1@VXPropertyChangeListener@beans@star@sun@com@@@cppu@@UAAXXZ
+?release@?$WeakImplHelper1@VXPropertyChangeListener@beans@star@sun@com@@@cppu@@WBA@AAXXZ
+?release@?$WeakImplHelper1@VXPropertyChangeListener@beans@star@sun@com@@@cppu@@WM@AAXXZ
+?s_aCD@?$WeakImplHelper1@VXPropertyChangeListener@beans@star@sun@com@@@$E
+?s_aCD@?$WeakImplHelper1@VXPropertyChangeListener@beans@star@sun@com@@@cppu@@0UClassData1@2@A
+?s_pType_com_sun_star_beans_XPropertyChangeListener@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?setAdapter@OPropertyChangeListener@comphelper@@IAEXPAVOPropertyChangeMultiplexer@2@@Z
+??0UnknownPropertyException@beans@star@sun@com@@QAE@XZ
+??1?$Sequence@W4PropertyState@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??_C@_0CB@HBKG@com?4sun?4star?4beans?4PropertyState@
+?firePropertyChange@OPropertyStateHelper@comphelper@@IAEXJABVAny@uno@star@sun@com@@0@Z
+?getPropertyDefault@OPropertyStateHelper@comphelper@@UAA?AVAny@uno@star@sun@com@@ABVOUString@rtl@@@Z
+?getPropertyDefaultByHandle@OPropertyStateHelper@comphelper@@UBE?AVAny@uno@star@sun@com@@J@Z
+?getPropertyState@OPropertyStateHelper@comphelper@@UAA?AW4PropertyState@beans@star@sun@com@@ABVOUString@rtl@@@Z
+?getPropertyStateByHandle@OPropertyStateHelper@comphelper@@UAE?AW4PropertyState@beans@star@sun@com@@J@Z
+?getPropertyStates@OPropertyStateHelper@comphelper@@UAA?AV?$Sequence@W4PropertyState@beans@star@sun@com@@@uno@star@sun@com@@ABV?$Sequence@VOUString@rtl@@@4567@@Z
+?getTypes@OPropertyStateHelper@comphelper@@MAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?queryInterface@OPropertyStateHelper@comphelper@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@cppu@@YA?AVAny@uno@star@sun@com@@ABVType@3456@PAVXPropertyState@beans@456@@Z
+?s_pType@?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType@?$Sequence@W4PropertyState@beans@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_beans_PropertyState@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBW4PropertyState@beans@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?setPropertyToDefault@OPropertyStateHelper@comphelper@@UAAXABVOUString@rtl@@@Z
+?setPropertyToDefaultByHandle@OPropertyStateHelper@comphelper@@UAEXJ@Z
+??0Exception@uno@star@sun@com@@QAE@ABVOUString@rtl@@ABV?$Reference@VXInterface@uno@star@sun@com@@@1234@@Z
+??0OPropertyContainer@comphelper@@IAE@AAU?$OBroadcastHelperVar@V?$OMultiTypeInterfaceContainerHelperVar@VType@uno@star@sun@com@@UhashType_Impl@cppu@@U?$equal_to@VType@uno@star@sun@com@@@_STL@@@cppu@@VType@uno@star@sun@com@@@cppu@@@Z
+??0Type@uno@star@sun@com@@QAE@ABV01234@@Z
+??1?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$_STL_alloc_proxy@PAUPropertyDescription@OPropertyContainer@comphelper@@U123@V?$allocator@UPropertyDescription@OPropertyContainer@comphelper@@@_STL@@@_STL@@QAE@XZ
+??1?$_STL_alloc_proxy@PAVAny@uno@star@sun@com@@V12345@V?$allocator@VAny@uno@star@sun@com@@@_STL@@@_STL@@QAE@XZ
+??1?$vector@VAny@uno@star@sun@com@@V?$allocator@VAny@uno@star@sun@com@@@_STL@@@_STL@@QAE@XZ
+??1OPropertyContainer@comphelper@@UAE@XZ
+??1OTypeCollection@cppu@@QAE@XZ
+??1PropertyDescription@OPropertyContainer@comphelper@@QAE@XZ
+??3Any@uno@star@sun@com@@SAXPAX0@Z
+??4Property@beans@star@sun@com@@QAEAAU01234@ABU01234@@Z
+??4PropertyDescription@OPropertyContainer@comphelper@@QAEAAU012@ABU012@@Z
+??_7OPropertyContainer@comphelper@@6BXFastPropertySet@beans@star@sun@com@@@
+??_7OPropertyContainer@comphelper@@6BXMultiPropertySet@beans@star@sun@com@@@
+??_7OPropertyContainer@comphelper@@6BXPropertySet@beans@star@sun@com@@@
+??_GOPropertyContainer@comphelper@@UAEPAXI@Z
+??_GPropertyDescription@OPropertyContainer@comphelper@@QAEPAXI@Z
+?_M_fill_insert@?$vector@UPropertyDescription@OPropertyContainer@comphelper@@V?$allocator@UPropertyDescription@OPropertyContainer@comphelper@@@_STL@@@_STL@@QAEXPAUPropertyDescription@OPropertyContainer@comphelper@@IABU345@@Z
+?_M_insert_overflow@?$vector@UPropertyDescription@OPropertyContainer@comphelper@@V?$allocator@UPropertyDescription@OPropertyContainer@comphelper@@@_STL@@@_STL@@IAEXPAUPropertyDescription@OPropertyContainer@comphelper@@ABU345@I@Z
+?_M_insert_overflow@?$vector@VAny@uno@star@sun@com@@V?$allocator@VAny@uno@star@sun@com@@@_STL@@@_STL@@IAEXPAVAny@uno@star@sun@com@@ABV34567@I@Z
+?_S_nsec_sleep@?$_STL_mutex_spin@$0A@@_STL@@SAXH@Z
+?__copy@_STL@@YAPAUPropertyDescription@OPropertyContainer@comphelper@@PAU234@00U_Ra__ItT@1@PAH@Z
+?__uninitialized_copy_aux@_STL@@YAPAUPropertyDescription@OPropertyContainer@comphelper@@PAU234@00U__false_type@@@Z
+?__uninitialized_copy_aux@_STL@@YAPAVAny@uno@star@sun@com@@PAV23456@00U__false_type@@@Z
+?__uninitialized_fill_n_aux@_STL@@YAPAUPropertyDescription@OPropertyContainer@comphelper@@PAU234@IABU234@U__false_type@@@Z
+?__uninitialized_fill_n_aux@_STL@@YAPAVAny@uno@star@sun@com@@PAV23456@IABV23456@U__false_type@@@Z
+?convertFastPropertyValue@OPropertyContainer@comphelper@@MAAEAAVAny@uno@star@sun@com@@0JABV34567@@Z
+?copy@_STL@@YAPAUProperty@beans@star@sun@com@@PBU23456@0PAU23456@@Z
+?describeProperties@OPropertyContainer@comphelper@@IBEXAAV?$Sequence@UProperty@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?getFastPropertyValue@OPropertyContainer@comphelper@@MBAXAAVAny@uno@star@sun@com@@J@Z
+?getTypes@OPropertyContainer@comphelper@@MAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?getTypes@OTypeCollection@cppu@@QAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?implPushBackProperty@OPropertyContainer@comphelper@@AAEXABUPropertyDescription@12@@Z
+?modifyAttributes@OPropertyContainer@comphelper@@IAEXJJJ@Z
+?queryInterface@OPropertySetHelper@cppu@@W3AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OPropertySetHelper@cppu@@W7AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?registerMayBeVoidProperty@OPropertyContainer@comphelper@@IAEXABVOUString@rtl@@JJPAVAny@uno@star@sun@com@@ABVType@6789@@Z
+?registerProperty@OPropertyContainer@comphelper@@IAEXABVOUString@rtl@@JJPAXABVType@uno@star@sun@com@@@Z
+?registerPropertyNoMember@OPropertyContainer@comphelper@@IAEXABVOUString@rtl@@JJABVType@uno@star@sun@com@@PAX@Z
+?resize@?$vector@UPropertyDescription@OPropertyContainer@comphelper@@V?$allocator@UPropertyDescription@OPropertyContainer@comphelper@@@_STL@@@_STL@@QAEXI@Z
+?searchHandle@OPropertyContainer@comphelper@@AAEPAUPropertyDescription@12@J@Z
+?setFastPropertyValue_NoBroadcast@OPropertyContainer@comphelper@@MAAXJABVAny@uno@star@sun@com@@@Z
+??5comphelper@@YAABV?$Reference@VXObjectInputStream@io@star@sun@com@@@uno@star@sun@com@@ABV12345@AAE@Z
+??5comphelper@@YAABV?$Reference@VXObjectInputStream@io@star@sun@com@@@uno@star@sun@com@@ABV12345@AAF@Z
+??5comphelper@@YAABV?$Reference@VXObjectInputStream@io@star@sun@com@@@uno@star@sun@com@@ABV12345@AAG@Z
+??5comphelper@@YAABV?$Reference@VXObjectInputStream@io@star@sun@com@@@uno@star@sun@com@@ABV12345@AAJ@Z
+??5comphelper@@YAABV?$Reference@VXObjectInputStream@io@star@sun@com@@@uno@star@sun@com@@ABV12345@AAK@Z
+??5comphelper@@YAABV?$Reference@VXObjectInputStream@io@star@sun@com@@@uno@star@sun@com@@ABV12345@AAUFontDescriptor@awt@345@@Z
+??5comphelper@@YAABV?$Reference@VXObjectInputStream@io@star@sun@com@@@uno@star@sun@com@@ABV12345@AAVOUString@rtl@@@Z
+??6comphelper@@YAABV?$Reference@VXObjectOutputStream@io@star@sun@com@@@uno@star@sun@com@@ABV12345@ABUFontDescriptor@awt@345@@Z
+??6comphelper@@YAABV?$Reference@VXObjectOutputStream@io@star@sun@com@@@uno@star@sun@com@@ABV12345@ABVOUString@rtl@@@Z
+??6comphelper@@YAABV?$Reference@VXObjectOutputStream@io@star@sun@com@@@uno@star@sun@com@@ABV12345@E@Z
+??6comphelper@@YAABV?$Reference@VXObjectOutputStream@io@star@sun@com@@@uno@star@sun@com@@ABV12345@F@Z
+??6comphelper@@YAABV?$Reference@VXObjectOutputStream@io@star@sun@com@@@uno@star@sun@com@@ABV12345@G@Z
+??6comphelper@@YAABV?$Reference@VXObjectOutputStream@io@star@sun@com@@@uno@star@sun@com@@ABV12345@J@Z
+??6comphelper@@YAABV?$Reference@VXObjectOutputStream@io@star@sun@com@@@uno@star@sun@com@@ABV12345@K@Z
+??0BufferSizeExceededException@io@star@sun@com@@QAE@ABV01234@@Z
+??0IOException@io@star@sun@com@@QAE@ABV01234@@Z
+??0IOException@io@star@sun@com@@QAE@ABVOUString@rtl@@ABV?$Reference@VXInterface@uno@star@sun@com@@@uno@234@@Z
+??0NotConnectedException@io@star@sun@com@@QAE@ABV01234@@Z
+??0OSLInputStreamWrapper@comphelper@@QAE@AAVFile@osl@@@Z
+??0OSLInputStreamWrapper@comphelper@@QAE@PAVFile@osl@@E@Z
+??1?$WeakImplHelper1@VXInputStream@io@star@sun@com@@@cppu@@UAE@XZ
+??1BufferSizeExceededException@io@star@sun@com@@QAE@XZ
+??1NotConnectedException@io@star@sun@com@@QAE@XZ
+??1OSLInputStreamWrapper@comphelper@@UAE@XZ
+??_7?$ImplHelperBase1@VXInputStream@io@star@sun@com@@@cppu@@6BXInputStream@io@star@sun@com@@@
+??_7?$ImplHelperBase1@VXInputStream@io@star@sun@com@@@cppu@@6BXTypeProvider@lang@star@sun@com@@@
+??_7?$WeakImplHelper1@VXInputStream@io@star@sun@com@@@cppu@@6B@
+??_7?$WeakImplHelper1@VXInputStream@io@star@sun@com@@@cppu@@6BXInputStream@io@star@sun@com@@@
+??_7?$WeakImplHelper1@VXInputStream@io@star@sun@com@@@cppu@@6BXTypeProvider@lang@star@sun@com@@@
+??_7OSLInputStreamWrapper@comphelper@@6B@
+??_7OSLInputStreamWrapper@comphelper@@6BXInputStream@io@star@sun@com@@@
+??_7OSLInputStreamWrapper@comphelper@@6BXTypeProvider@lang@star@sun@com@@@
+??_7XInputStream@io@star@sun@com@@6B@
+??_B?1???s_aCD@?$WeakImplHelper1@VXInputStream@io@star@sun@com@@@$D@@9@51
+??_B?1???s_aCD@?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@$D@@9@51
+??_C@_0BN@ONB@com?4sun?4star?4io?4XInputStream?$AA@
+??_G?$WeakImplHelper1@VXInputStream@io@star@sun@com@@@cppu@@UAEPAXI@Z
+??_GOSLInputStreamWrapper@comphelper@@UAEPAXI@Z
+??_R0?AVBufferSizeExceededException@io@star@sun@com@@@8
+??_R0?AVIOException@io@star@sun@com@@@8
+??_R0?AVNotConnectedException@io@star@sun@com@@@8
+?acquire@?$WeakImplHelper1@VXInputStream@io@star@sun@com@@@cppu@@UAAXXZ
+?acquire@?$WeakImplHelper1@VXInputStream@io@star@sun@com@@@cppu@@WBA@AAXXZ
+?acquire@?$WeakImplHelper1@VXInputStream@io@star@sun@com@@@cppu@@WM@AAXXZ
+?acquire@OSLInputStreamWrapper@comphelper@@UAAXXZ
+?acquire@OSLInputStreamWrapper@comphelper@@WBA@AAXXZ
+?acquire@OSLInputStreamWrapper@comphelper@@WM@AAXXZ
+?available@OSLInputStreamWrapper@comphelper@@UAAJXZ
+?closeInput@OSLInputStreamWrapper@comphelper@@UAAXXZ
+?closeOutput@OSLOutputStreamWrapper@comphelper@@UAAXXZ
+?flush@OSLOutputStreamWrapper@comphelper@@UAAXXZ
+?getImplementationId@?$WeakImplHelper1@VXInputStream@io@star@sun@com@@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getTypes@?$WeakImplHelper1@VXInputStream@io@star@sun@com@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?queryInterface@?$WeakImplHelper1@VXInputStream@io@star@sun@com@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper1@VXInputStream@io@star@sun@com@@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper1@VXInputStream@io@star@sun@com@@@cppu@@WM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OSLInputStreamWrapper@comphelper@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OSLInputStreamWrapper@comphelper@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OSLInputStreamWrapper@comphelper@@WM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?readBytes@OSLInputStreamWrapper@comphelper@@UAAJAAV?$Sequence@C@uno@star@sun@com@@J@Z
+?readSomeBytes@OSLInputStreamWrapper@comphelper@@UAAJAAV?$Sequence@C@uno@star@sun@com@@J@Z
+?release@?$WeakImplHelper1@VXInputStream@io@star@sun@com@@@cppu@@UAAXXZ
+?release@?$WeakImplHelper1@VXInputStream@io@star@sun@com@@@cppu@@WBA@AAXXZ
+?release@?$WeakImplHelper1@VXInputStream@io@star@sun@com@@@cppu@@WM@AAXXZ
+?release@OSLInputStreamWrapper@comphelper@@UAAXXZ
+?release@OSLInputStreamWrapper@comphelper@@WBA@AAXXZ
+?release@OSLInputStreamWrapper@comphelper@@WM@AAXXZ
+?s_aCD@?$WeakImplHelper1@VXInputStream@io@star@sun@com@@@$E
+?s_aCD@?$WeakImplHelper1@VXInputStream@io@star@sun@com@@@cppu@@0UClassData1@2@A
+?s_aCD@?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@$E
+?s_aCD@?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@0UClassData1@2@A
+?s_pType_com_sun_star_io_XInputStream@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInputStream@io@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?skipBytes@OSLInputStreamWrapper@comphelper@@UAAXJ@Z
+?writeBytes@OSLOutputStreamWrapper@comphelper@@UAAXABV?$Sequence@C@uno@star@sun@com@@@Z
+_TI3?AVBufferSizeExceededException@io@star@sun@com@@
+_TI3?AVNotConnectedException@io@star@sun@com@@
+??0NotConnectedException@io@star@sun@com@@QAE@ABVOUString@rtl@@ABV?$Reference@VXInterface@uno@star@sun@com@@@uno@234@@Z
+??0SequenceInputStream@comphelper@@QAE@ABV?$Sequence@C@uno@star@sun@com@@@Z
+??1SequenceInputStream@comphelper@@UAE@XZ
+??BOWeakObject@cppu@@QAA?AV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@XZ
+??_7SequenceInputStream@comphelper@@6B@
+??_7SequenceInputStream@comphelper@@6BXInputStream@io@star@sun@com@@@
+??_7SequenceInputStream@comphelper@@6BXTypeProvider@lang@star@sun@com@@@
+??_GSequenceInputStream@comphelper@@UAEPAXI@Z
+?available@SequenceInputStream@comphelper@@UAAJXZ
+?closeInput@SequenceInputStream@comphelper@@UAAXXZ
+?readBytes@SequenceInputStream@comphelper@@UAAJAAV?$Sequence@C@uno@star@sun@com@@J@Z
+?readSomeBytes@SequenceInputStream@comphelper@@UAAJAAV?$Sequence@C@uno@star@sun@com@@J@Z
+?skipBytes@SequenceInputStream@comphelper@@UAAXJ@Z
+??0OStreamSection@comphelper@@QAE@ABV?$Reference@VXDataInputStream@io@star@sun@com@@@uno@star@sun@com@@@Z
+??0OStreamSection@comphelper@@QAE@ABV?$Reference@VXDataOutputStream@io@star@sun@com@@@uno@star@sun@com@@J@Z
+??1?$Reference@VXDataInputStream@io@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXDataOutputStream@io@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1OStreamSection@comphelper@@QAE@XZ
+??_7XEventListener@lang@star@sun@com@@6B@
+??_7XInterface@uno@star@sun@com@@6B@
+??_7XTypeProvider@lang@star@sun@com@@6B@
+??_7XWeak@uno@star@sun@com@@6B@
+??_C@_0BP@FGMI@?$CD?$CD?$CD?5illegal?5index?5of?5sequence?$CB?$AA@
+??_C@_0DF@MHM@o?3?2SRC615?2wntmsci7?2inc?2com?1sun?1s@
+?getArray@?$Sequence@UScriptEventDescriptor@script@star@sun@com@@@uno@star@sun@com@@QAAPAUScriptEventDescriptor@script@345@XZ
+??_C@_0CC@CKEL@?4?4?2?4?4?2inc?2comphelper?1sequence?4hx@
+??_C@_0O@GFGN@invalid?5index?$AA@
+?getArray@?$Sequence@UProperty@beans@star@sun@com@@@uno@star@sun@com@@QAAPAUProperty@beans@345@XZ
+?realloc@?$Sequence@UProperty@beans@star@sun@com@@@uno@star@sun@com@@QAAXJ@Z
+??_C@_0DF@BAAP@o?3?2SRC616?2wntmsci7?2inc?2com?1sun?1s@
+??_C@_0DF@BLNO@o?3?2SRC617?2wntmsci7?2inc?2com?1sun?1s@
+?_disposing@OPropertyChangeListener@comphelper@@UAEXABUEventObject@lang@star@sun@com@@@Z
+?lock@OPropertyChangeMultiplexer@comphelper@@QAEXXZ
+?unlock@OPropertyChangeMultiplexer@comphelper@@QAEXXZ
+??_C@_0DF@HGGC@o?3?2SRC618?2wntmsci7?2inc?2com?1sun?1s@
+??0?$ImplHelperBase2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@QAE@XZ
+??0?$_STL_alloc_proxy@PAV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@V12345@V?$allocator@V?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE@ABV?$allocator@V?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@@1@PAV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@@Z
+??0OComposedPropertySet@comphelper@@QAE@ABV?$Sequence@V?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@PBVIPropertySetComposerCallback@1@@Z
+??0OComposedPropertySetInfo@comphelper@@QAE@ABV?$Sequence@UProperty@beans@star@sun@com@@@uno@star@sun@com@@@Z
+??1?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@UAE@XZ
+??1?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@UAE@XZ
+??1?$_STL_alloc_proxy@PAV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@V12345@V?$allocator@V?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE@XZ
+??1?$_Vector_base@V?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE@XZ
+??1?$allocator@V?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@QAE@XZ
+??1?$vector@V?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE@XZ
+??1OComposedPropertySet@comphelper@@MAE@XZ
+??1OComposedPropertySetInfo@comphelper@@UAE@XZ
+??_7?$ImplHelperBase1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@6BXPropertySetInfo@beans@star@sun@com@@@
+??_7?$ImplHelperBase1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@6BXTypeProvider@lang@star@sun@com@@@
+??_7?$ImplHelperBase2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@6BXPropertySet@beans@star@sun@com@@@
+??_7?$ImplHelperBase2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@6BXPropertyState@beans@star@sun@com@@@
+??_7?$ImplHelperBase2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@6BXTypeProvider@lang@star@sun@com@@@
+??_7?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@6B@
+??_7?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@6BXPropertySetInfo@beans@star@sun@com@@@
+??_7?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@6BXTypeProvider@lang@star@sun@com@@@
+??_7?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@6B@
+??_7?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@6BXPropertySet@beans@star@sun@com@@@
+??_7?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@6BXPropertyState@beans@star@sun@com@@@
+??_7?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@6BXTypeProvider@lang@star@sun@com@@@
+??_7OComposedPropertySet@comphelper@@6B@
+??_7OComposedPropertySet@comphelper@@6BXPropertySet@beans@star@sun@com@@@
+??_7OComposedPropertySet@comphelper@@6BXPropertyState@beans@star@sun@com@@@
+??_7OComposedPropertySet@comphelper@@6BXTypeProvider@lang@star@sun@com@@@
+??_7OComposedPropertySetInfo@comphelper@@6B@
+??_7OComposedPropertySetInfo@comphelper@@6BXPropertySetInfo@beans@star@sun@com@@@
+??_7OComposedPropertySetInfo@comphelper@@6BXTypeProvider@lang@star@sun@com@@@
+??_7XPropertySet@beans@star@sun@com@@6B@
+??_7XPropertySetInfo@beans@star@sun@com@@6B@
+??_7XPropertyState@beans@star@sun@com@@6B@
+??_B?1???s_aCD@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@$D@@9@51
+??_B?1???s_aCD@?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@$D@@9@51
+??_C@_0CE@INKL@com?4sun?4star?4beans?4XPropertySetI@
+??_G?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@UAEPAXI@Z
+??_G?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@UAEPAXI@Z
+??_GOComposedPropertySet@comphelper@@MAEPAXI@Z
+??_GOComposedPropertySetInfo@comphelper@@UAEPAXI@Z
+?_M_fill_insert@?$vector@V?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAEXPAV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@IABV34567@@Z
+?_M_insert_overflow@?$vector@V?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@IAEXPAV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@ABV34567@I@Z
+?__uninitialized_copy_aux@_STL@@YAPAV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@PAV23456@00U__false_type@@@Z
+?__uninitialized_fill_n_aux@_STL@@YAPAV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@PAV23456@IABV23456@U__false_type@@@Z
+?acquire@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@UAAXXZ
+?acquire@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@WBA@AAXXZ
+?acquire@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@WM@AAXXZ
+?acquire@?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@UAAXXZ
+?acquire@?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@WBA@AAXXZ
+?acquire@?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@WBE@AAXXZ
+?acquire@?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@WM@AAXXZ
+?addPropertyChangeListener@OComposedPropertySet@comphelper@@UAAXABVOUString@rtl@@ABV?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?addVetoableChangeListener@OComposedPropertySet@comphelper@@UAAXABVOUString@rtl@@ABV?$Reference@VXVetoableChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?compose@OComposedPropertySet@comphelper@@IAEXPBVIPropertySetComposerCallback@2@@Z
+?deallocate@?$allocator@V?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@QBEXPAV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@I@Z
+?erase@?$vector@V?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAEPAV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@PAV34567@0@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@W4PropertyState@beans@star@sun@com@@@2345@@Z
+?getImplementationId@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getImplementationId@?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getProperties@OComposedPropertySetInfo@comphelper@@UAA?AV?$Sequence@UProperty@beans@star@sun@com@@@uno@star@sun@com@@XZ
+?getPropertyByName@OComposedPropertySetInfo@comphelper@@UAA?AUProperty@beans@star@sun@com@@ABVOUString@rtl@@@Z
+?getPropertyDefault@OComposedPropertySet@comphelper@@UAA?AVAny@uno@star@sun@com@@ABVOUString@rtl@@@Z
+?getPropertySetInfo@OComposedPropertySet@comphelper@@UAA?AV?$Reference@VXPropertySetInfo@beans@star@sun@com@@@uno@star@sun@com@@XZ
+?getPropertyState@OComposedPropertySet@comphelper@@UAA?AW4PropertyState@beans@star@sun@com@@ABVOUString@rtl@@@Z
+?getPropertyStates@OComposedPropertySet@comphelper@@UAA?AV?$Sequence@W4PropertyState@beans@star@sun@com@@@uno@star@sun@com@@ABV?$Sequence@VOUString@rtl@@@4567@@Z
+?getPropertyValue@OComposedPropertySet@comphelper@@UAA?AVAny@uno@star@sun@com@@ABVOUString@rtl@@@Z
+?getTypes@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?getTypes@?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?hasPropertyByName@OComposedPropertySetInfo@comphelper@@UAAEABVOUString@rtl@@@Z
+?queryInterface@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@WM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@WM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@UAAXXZ
+?release@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@WBA@AAXXZ
+?release@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@WM@AAXXZ
+?release@?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@UAAXXZ
+?release@?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@WBA@AAXXZ
+?release@?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@WBE@AAXXZ
+?release@?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@WM@AAXXZ
+?removePropertyChangeListener@OComposedPropertySet@comphelper@@UAAXABVOUString@rtl@@ABV?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?removeVetoableChangeListener@OComposedPropertySet@comphelper@@UAAXABVOUString@rtl@@ABV?$Reference@VXVetoableChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?s_aCD@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@$E
+?s_aCD@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@0UClassData1@2@A
+?s_aCD@?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@$E
+?s_aCD@?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@0UClassData2@2@A
+?s_pType_com_sun_star_beans_XPropertySetInfo@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertySetInfo@beans@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?setPropertyToDefault@OComposedPropertySet@comphelper@@UAAXABVOUString@rtl@@@Z
+?setPropertyValue@OComposedPropertySet@comphelper@@UAAXABVOUString@rtl@@ABVAny@uno@star@sun@com@@@Z
+??_C@_0DF@HNLD@o?3?2SRC619?2wntmsci7?2inc?2com?1sun?1s@
+??_C@_0DF@GHPE@o?3?2SRC620?2wntmsci7?2inc?2com?1sun?1s@
+??0OSequenceOutputStream@comphelper@@QAE@AAV?$Sequence@C@uno@star@sun@com@@NJJ@Z
+??1?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@UAE@XZ
+??1OSequenceOutputStream@comphelper@@MAE@XZ
+??_7?$ImplHelperBase1@VXOutputStream@io@star@sun@com@@@cppu@@6BXOutputStream@io@star@sun@com@@@
+??_7?$ImplHelperBase1@VXOutputStream@io@star@sun@com@@@cppu@@6BXTypeProvider@lang@star@sun@com@@@
+??_7?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@6B@
+??_7?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@6BXOutputStream@io@star@sun@com@@@
+??_7?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@6BXTypeProvider@lang@star@sun@com@@@
+??_7OSequenceOutputStream@comphelper@@6B@
+??_7OSequenceOutputStream@comphelper@@6BXOutputStream@io@star@sun@com@@@
+??_7OSequenceOutputStream@comphelper@@6BXTypeProvider@lang@star@sun@com@@@
+??_7XOutputStream@io@star@sun@com@@6B@
+??_C@_0BO@PNKD@com?4sun?4star?4io?4XOutputStream?$AA@
+??_G?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@UAEPAXI@Z
+??_GOSequenceOutputStream@comphelper@@MAEPAXI@Z
+?acquire@?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@UAAXXZ
+?acquire@?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@WBA@AAXXZ
+?acquire@?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@WM@AAXXZ
+?closeOutput@OSequenceOutputStream@comphelper@@UAAXXZ
+?flush@OSequenceOutputStream@comphelper@@UAAXXZ
+?getImplementationId@?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getTypes@?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?queryInterface@?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@WM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@UAAXXZ
+?release@?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@WBA@AAXXZ
+?release@?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@WM@AAXXZ
+?s_pType_com_sun_star_io_XOutputStream@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXOutputStream@io@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?writeBytes@OSequenceOutputStream@comphelper@@UAAXABV?$Sequence@C@uno@star@sun@com@@@Z
+_real@8@3fff8000000000000000
+??_C@_0DF@GGCB@o?3?2TLS617?2wntmsci7?2inc?2com?1sun?1s@
+??_C@_0DF@GMCF@o?3?2SRC621?2wntmsci7?2inc?2com?1sun?1s@
+?__query@?$Reference@VXChild@container@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
+?__query@?$Reference@VXIndexAccess@container@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
+?set@BaseReference@uno@star@sun@com@@IAAEPAVXInterface@2345@@Z
+??_C@_0DF@HAFG@o?3?2SRC622?2wntmsci7?2inc?2com?1sun?1s@
+?__query@?$Reference@VXInitialization@lang@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
+?__query@?$Reference@VXIntrospection@beans@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
+?__query@?$Reference@VXMarkableStream@io@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
+?__query@?$Reference@VXNumberFormatTypes@util@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
+?__query@?$Reference@VXPropertyState@beans@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
+?__query@?$Reference@VXFastPropertySet@beans@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
+?__query@?$Reference@VXMultiPropertySet@beans@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
+?__query@?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
+??_C@_0DF@HLIH@o?3?2SRC623?2wntmsci7?2inc?2com?1sun?1s@
+??_C@_0DF@EILB@o?3?2SRC624?2wntmsci7?2inc?2com?1sun?1s@
+??_R0?AVRuntimeException@uno@star@sun@com@@@8
+??_C@_0DF@KHIN@o?3?2TFD624?2wntmsci7?2inc?2com?1sun?1s@
+??0?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
+??0IndexOutOfBoundsException@lang@star@sun@com@@QAE@ABV01234@@Z
+??0IndexOutOfBoundsException@lang@star@sun@com@@QAE@XZ
+??0IndexedPropertyValuesContainer@@QAE@XZ
+??1?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1IndexOutOfBoundsException@lang@star@sun@com@@QAE@XZ
+??1IndexedPropertyValuesContainer@@UAE@XZ
+??4?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
+??_7?$ImplHelperBase2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@6BXIndexContainer@container@star@sun@com@@@
+??_7?$ImplHelperBase2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@6BXServiceInfo@lang@star@sun@com@@@
+??_7?$ImplHelperBase2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@6BXTypeProvider@lang@star@sun@com@@@
+??_7IndexedPropertyValuesContainer@@6B@
+??_7IndexedPropertyValuesContainer@@6BXIndexContainer@container@star@sun@com@@@
+??_7IndexedPropertyValuesContainer@@6BXServiceInfo@lang@star@sun@com@@@
+??_7IndexedPropertyValuesContainer@@6BXTypeProvider@lang@star@sun@com@@@
+??_7XIndexContainer@container@star@sun@com@@6B@
+??_7XServiceInfo@lang@star@sun@com@@6B@
+??_B?1???s_aCD@?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@$D@@9@51
+??_C@_0BP@JCBM@com?4sun?4star?4lang?4XServiceInfo?$AA@
+??_C@_0CB@CIHO@com?4sun?4star?4beans?4PropertyValue@
+??_C@_0CH@LELL@com?4sun?4star?4container?4XIndexCon@
+??_GIndexedPropertyValuesContainer@@UAEPAXI@Z
+??_R0?AVIndexOutOfBoundsException@lang@star@sun@com@@@8
+?IndexedPropertyValuesContainer_createInstance@@YA?AV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@ABV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@2345@@Z
+?IndexedPropertyValuesContainer_getImplementationName@@YA?AVOUString@rtl@@XZ
+?IndexedPropertyValuesContainer_getSupportedServiceNames@@YA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
+?_M_insert_overflow@?$vector@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@IAEXPAV?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@ABV34567@I@Z
+?__uninitialized_copy_aux@_STL@@YAPAV?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@PAV23456@00U__false_type@@@Z
+?__uninitialized_fill_n_aux@_STL@@YAPAV?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@PAV23456@IABV23456@U__false_type@@@Z
+?acquire@?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@UAAXXZ
+?acquire@?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WBA@AAXXZ
+?acquire@?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WBE@AAXXZ
+?acquire@?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WM@AAXXZ
+?copy_backward@_STL@@YAPAV?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@PAV23456@00@Z
+?getByIndex@IndexedPropertyValuesContainer@@UAA?AVAny@uno@star@sun@com@@J@Z
+?getCount@IndexedPropertyValuesContainer@@UAAJXZ
+?getCppuType@@YAABVType@uno@star@sun@com@@PBUPropertyValue@beans@345@@Z
+?getElementType@IndexedPropertyValuesContainer@@UAA?AVType@uno@star@sun@com@@XZ
+?getImplementationId@?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getImplementationName@IndexedPropertyValuesContainer@@UAA?AVOUString@rtl@@XZ
+?getSupportedServiceNames@IndexedPropertyValuesContainer@@UAA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
+?getTypeLibType@Type@uno@star@sun@com@@QBAPAU_typelib_TypeDescriptionReference@@XZ
+?getTypes@?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?hasElements@IndexedPropertyValuesContainer@@UAAEXZ
+?insertByIndex@IndexedPropertyValuesContainer@@UAAXJABVAny@uno@star@sun@com@@@Z
+?queryInterface@?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@UAAXXZ
+?release@?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WBA@AAXXZ
+?release@?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WBE@AAXXZ
+?release@?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WM@AAXXZ
+?removeByIndex@IndexedPropertyValuesContainer@@UAAXJ@Z
+?replaceByIndex@IndexedPropertyValuesContainer@@UAAXJABVAny@uno@star@sun@com@@@Z
+?s_aCD@?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@$E
+?s_aCD@?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@0UClassData2@2@A
+?s_pType@?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_beans_PropertyValue@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUPropertyValue@beans@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_container_XIndexContainer@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXIndexContainer@container@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_lang_XServiceInfo@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXServiceInfo@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?supportsService@IndexedPropertyValuesContainer@@UAAEABVOUString@rtl@@@Z
+_TI2?AVIndexOutOfBoundsException@lang@star@sun@com@@
+??0?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??0?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@_STL@@QAE@ABU01@@Z
+??0?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@QAE@ABVOUString@rtl@@ABV?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU01@@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@1@AB_N@Z
+??0ElementExistException@container@star@sun@com@@QAE@ABV01234@@Z
+??0NamedPropertyValuesContainer@@QAE@XZ
+??0NoSuchElementException@container@star@sun@com@@QAE@XZ
+??1?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@UAE@XZ
+??1?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@QAE@XZ
+??1ElementExistException@container@star@sun@com@@QAE@XZ
+??1NamedPropertyValuesContainer@@UAE@XZ
+??_7?$ImplHelperBase2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@6BXNameContainer@container@star@sun@com@@@
+??_7?$ImplHelperBase2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@6BXServiceInfo@lang@star@sun@com@@@
+??_7?$ImplHelperBase2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@6BXTypeProvider@lang@star@sun@com@@@
+??_7?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@6B@
+??_7?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@6BXNameContainer@container@star@sun@com@@@
+??_7?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@6BXServiceInfo@lang@star@sun@com@@@
+??_7?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@6BXTypeProvider@lang@star@sun@com@@@
+??_7NamedPropertyValuesContainer@@6B@
+??_7NamedPropertyValuesContainer@@6BXNameContainer@container@star@sun@com@@@
+??_7NamedPropertyValuesContainer@@6BXServiceInfo@lang@star@sun@com@@@
+??_7NamedPropertyValuesContainer@@6BXTypeProvider@lang@star@sun@com@@@
+??_7XNameContainer@container@star@sun@com@@6B@
+??_B?1???s_aCD@?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@$D@@9@51
+??_C@_0CG@MIFK@com?4sun?4star?4container?4XNameCont@
+??_G?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@UAEPAXI@Z
+??_GNamedPropertyValuesContainer@@UAEPAXI@Z
+??_R0?AVElementExistException@container@star@sun@com@@@8
+?NamedPropertyValuesContainer_createInstance@@YA?AV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@ABV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@2345@@Z
+?NamedPropertyValuesContainer_getImplementationName@@YA?AVOUString@rtl@@XZ
+?NamedPropertyValuesContainer_getSupportedServiceNames@@YA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
+?_M_create_node@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@IAEPAU?$_rbT__N@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@ABU?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@2@@Z
+?_M_erase@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@AAEXPAU?$_rbT__N@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@Z
+?_M_increment@?$_Rb_global@_N@_STL@@SAXPAU_rbT__It@2@@Z
+?_M_insert@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@2@PAU_rbT__NB@2@0ABU?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@2@@Z
+?_Rebalance_for_erase@?$_Rb_global@_N@_STL@@SAPAU_rbT__NB@2@PAU32@AAPAU32@11@Z
+?acquire@?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@UAAXXZ
+?acquire@?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WBA@AAXXZ
+?acquire@?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WBE@AAXXZ
+?acquire@?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WM@AAXXZ
+?begin@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@2@XZ
+?destroy_node@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@IAEXPAU?$_rbT__N@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@Z
+?end@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@2@XZ
+?end@?$map@VOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@2@XZ
+?erase@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@QAEXU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@2@@Z
+?erase@?$map@VOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@@_STL@@QAEXU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@2@@Z
+?find@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@2@ABVOUString@rtl@@@Z
+?getByName@NamedPropertyValuesContainer@@UAA?AVAny@uno@star@sun@com@@ABVOUString@rtl@@@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@UPropertyValue@beans@star@sun@com@@@2345@@Z
+?getElementNames@NamedPropertyValuesContainer@@UAA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
+?getElementType@NamedPropertyValuesContainer@@UAA?AVType@uno@star@sun@com@@XZ
+?getImplementationId@?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getImplementationName@NamedPropertyValuesContainer@@UAA?AVOUString@rtl@@XZ
+?getSupportedServiceNames@NamedPropertyValuesContainer@@UAA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
+?getTypes@?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?hasByName@NamedPropertyValuesContainer@@UAAEABVOUString@rtl@@@Z
+?hasElements@NamedPropertyValuesContainer@@UAAEXZ
+?insert@?$map@VOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@2@U32@ABU?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@2@@Z
+?insertByName@NamedPropertyValuesContainer@@UAAXABVOUString@rtl@@ABVAny@uno@star@sun@com@@@Z
+?insert_unique@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@2@U32@ABU?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@2@@Z
+?insert_unique@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@_STL@@_N@2@ABU?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@2@@Z
+?lower_bound@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@2@ABVOUString@rtl@@@Z
+?queryInterface@?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@UAAXXZ
+?release@?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WBA@AAXXZ
+?release@?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WBE@AAXXZ
+?release@?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WM@AAXXZ
+?removeByName@NamedPropertyValuesContainer@@UAAXABVOUString@rtl@@@Z
+?replaceByName@NamedPropertyValuesContainer@@UAAXABVOUString@rtl@@ABVAny@uno@star@sun@com@@@Z
+?s_aCD@?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@$E
+?s_aCD@?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@0UClassData2@2@A
+?s_pType_com_sun_star_container_XNameContainer@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXNameContainer@container@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?supportsService@NamedPropertyValuesContainer@@UAAEABVOUString@rtl@@@Z
+_TI2?AVElementExistException@container@star@sun@com@@
+??H@YA?AVOUString@rtl@@ABV01@0@Z
+?concat@OUString@rtl@@QBE?AV12@ABV12@@Z
+component_getFactory
+component_getImplementationEnvironment
+component_writeInfo
+writeInfo
+??1?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@UAE@XZ
+??_7?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@6B@
+??_7?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@6BXIndexContainer@container@star@sun@com@@@
+??_7?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@6BXServiceInfo@lang@star@sun@com@@@
+??_7?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@6BXTypeProvider@lang@star@sun@com@@@
+??_7XElementAccess@container@star@sun@com@@6B@
+??_7XIndexAccess@container@star@sun@com@@6B@
+??_7XIndexReplace@container@star@sun@com@@6B@
+??_G?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@UAEPAXI@Z
+??_7XNameAccess@container@star@sun@com@@6B@
+??_7XNameReplace@container@star@sun@com@@6B@
+??_C@_0DF@EDGA@o?3?2SRC625?2wntmsci7?2inc?2com?1sun?1s@
+??_R0?AVInvalidRegistryException@registry@star@sun@com@@@8
+??0PropertySetHelper@comphelper@@QAE@PAVPropertySetInfo@1@@Z
+??1PropertySetHelper@comphelper@@UAE@XZ
+??_7PropertySetHelper@comphelper@@6BXMultiPropertySet@beans@star@sun@com@@@
+??_7PropertySetHelper@comphelper@@6BXPropertySet@beans@star@sun@com@@@
+??_7PropertySetHelper@comphelper@@6BXPropertyState@beans@star@sun@com@@@
+??_7XMultiPropertySet@beans@star@sun@com@@6B@
+??_GPropertySetHelper@comphelper@@UAEPAXI@Z
+?_getPropertyDefault@PropertySetHelper@comphelper@@MAE?AVAny@uno@star@sun@com@@PBUPropertyMapEntry@2@@Z
+?_getPropertyStates@PropertySetHelper@comphelper@@MAEXPAPBUPropertyMapEntry@2@PAW4PropertyState@beans@star@sun@com@@@Z
+?_setPropertyToDefault@PropertySetHelper@comphelper@@MAEXPBUPropertyMapEntry@2@@Z
+?addPropertiesChangeListener@PropertySetHelper@comphelper@@UAAXABV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@ABV?$Reference@VXPropertiesChangeListener@beans@star@sun@com@@@4567@@Z
+?addPropertyChangeListener@PropertySetHelper@comphelper@@UAAXABVOUString@rtl@@ABV?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?addVetoableChangeListener@PropertySetHelper@comphelper@@UAAXABVOUString@rtl@@ABV?$Reference@VXVetoableChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?end@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_C_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@2@XZ
+?find@PropertySetHelperImpl@comphelper@@QBEPAUPropertyMapEntry@2@ABVOUString@rtl@@@Z
+?firePropertiesChangeEvent@PropertySetHelper@comphelper@@UAAXABV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@ABV?$Reference@VXPropertiesChangeListener@beans@star@sun@com@@@4567@@Z
+?getPropertyDefault@PropertySetHelper@comphelper@@UAA?AVAny@uno@star@sun@com@@ABVOUString@rtl@@@Z
+?getPropertySetInfo@PropertySetHelper@comphelper@@UAA?AV?$Reference@VXPropertySetInfo@beans@star@sun@com@@@uno@star@sun@com@@XZ
+?getPropertySetInfo@PropertySetHelper@comphelper@@W7AA?AV?$Reference@VXPropertySetInfo@beans@star@sun@com@@@uno@star@sun@com@@XZ
+?getPropertyState@PropertySetHelper@comphelper@@UAA?AW4PropertyState@beans@star@sun@com@@ABVOUString@rtl@@@Z
+?getPropertyStates@PropertySetHelper@comphelper@@UAA?AV?$Sequence@W4PropertyState@beans@star@sun@com@@@uno@star@sun@com@@ABV?$Sequence@VOUString@rtl@@@4567@@Z
+?getPropertyValue@PropertySetHelper@comphelper@@UAA?AVAny@uno@star@sun@com@@ABVOUString@rtl@@@Z
+?getPropertyValues@PropertySetHelper@comphelper@@UAA?AV?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@ABV?$Sequence@VOUString@rtl@@@4567@@Z
+?removePropertiesChangeListener@PropertySetHelper@comphelper@@UAAXABV?$Reference@VXPropertiesChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?removePropertyChangeListener@PropertySetHelper@comphelper@@UAAXABVOUString@rtl@@ABV?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?removeVetoableChangeListener@PropertySetHelper@comphelper@@UAAXABVOUString@rtl@@ABV?$Reference@VXVetoableChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?setPropertyToDefault@PropertySetHelper@comphelper@@UAAXABVOUString@rtl@@@Z
+?setPropertyValue@PropertySetHelper@comphelper@@UAAXABVOUString@rtl@@ABVAny@uno@star@sun@com@@@Z
+?setPropertyValues@PropertySetHelper@comphelper@@UAAXABV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@ABV?$Sequence@VAny@uno@star@sun@com@@@4567@@Z
+??0?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@_STL@@QAE@ABU01@@Z
+??0?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@QAE@ABVOUString@rtl@@ABQAUPropertyMapEntry@comphelper@@@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@_STL@@U12@@_STL@@QAE@ABU01@@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@_STL@@U12@@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@1@0@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU01@@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@1@AB_N@Z
+??0PropertyMapImpl@comphelper@@QAE@XZ
+??0PropertySetInfo@comphelper@@QAE@PAUPropertyMapEntry@1@@Z
+??0PropertySetInfo@comphelper@@QAE@XZ
+??1?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@QAE@XZ
+??1PropertyMapImpl@comphelper@@UAE@XZ
+??1PropertySetInfo@comphelper@@UAE@XZ
+??E?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@_STL@@QAE?AU01@H@Z
+??_7PropertyMapImpl@comphelper@@6B@
+??_7PropertySetInfo@comphelper@@6B@
+??_7PropertySetInfo@comphelper@@6BXPropertySetInfo@beans@star@sun@com@@@
+??_7PropertySetInfo@comphelper@@6BXTypeProvider@lang@star@sun@com@@@
+??_G?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@QAEPAXI@Z
+??_GPropertyMapImpl@comphelper@@UAEPAXI@Z
+??_GPropertySetInfo@comphelper@@UAEPAXI@Z
+?_M_create_node@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@IAEPAU?$_rbT__N@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@ABU?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@2@@Z
+?_M_empty_initialize@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@AAEXXZ
+?_M_erase@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@AAEXPAU?$_rbT__N@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@Z
+?_M_insert@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@2@PAU_rbT__NB@2@0ABU?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@2@@Z
+?__distance@_STL@@YAXU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@1@0AAIU_In__ItT@1@@Z
+?add@PropertyMapImpl@comphelper@@QAEXPAUPropertyMapEntry@2@@Z
+?add@PropertySetInfo@comphelper@@QAEXPAUPropertyMapEntry@2@@Z
+?begin@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@2@XZ
+?deallocate@?$_STL_alloc_proxy@PAU?$_rbT__N@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@_STL@@U12@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@_STL@@QAEXPAU?$_rbT__N@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@I@Z
+?destroy_node@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@IAEXPAU?$_rbT__N@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@Z
+?distance@_STL@@YAXU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@1@0AAI@Z
+?end@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@2@XZ
+?erase@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@QAEXU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@2@0@Z
+?erase@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@QAEXU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@2@@Z
+?find@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@2@ABVOUString@rtl@@@Z
+?getProperties@PropertyMapImpl@comphelper@@QAE?AV?$Sequence@UProperty@beans@star@sun@com@@@uno@star@sun@com@@XZ
+?getProperties@PropertySetInfo@comphelper@@UAA?AV?$Sequence@UProperty@beans@star@sun@com@@@uno@star@sun@com@@XZ
+?getPropertyByName@PropertyMapImpl@comphelper@@QAE?AUProperty@beans@star@sun@com@@ABVOUString@rtl@@@Z
+?getPropertyByName@PropertySetInfo@comphelper@@UAA?AUProperty@beans@star@sun@com@@ABVOUString@rtl@@@Z
+?getPropertyMap@PropertyMapImpl@comphelper@@QBEPBV?$map@VOUString@rtl@@PAUPropertyMapEntry@comphelper@@UUStringLess@4@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@_STL@@@_STL@@XZ
+?getPropertyMap@PropertySetInfo@comphelper@@QBEPBV?$map@VOUString@rtl@@PAUPropertyMapEntry@comphelper@@UUStringLess@4@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@_STL@@@_STL@@XZ
+?hasPropertyByName@PropertyMapImpl@comphelper@@QAEEABVOUString@rtl@@@Z
+?hasPropertyByName@PropertySetInfo@comphelper@@UAAEABVOUString@rtl@@@Z
+?insert@?$map@VOUString@rtl@@PAUPropertyMapEntry@comphelper@@UUStringLess@4@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@_STL@@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@2@U32@ABU?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@2@@Z
+?insert_unique@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@2@U32@ABU?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@2@@Z
+?insert_unique@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@_STL@@_N@2@ABU?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@2@@Z
+?lower_bound@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@2@ABVOUString@rtl@@@Z
+?remove@PropertyMapImpl@comphelper@@QAEXABVOUString@rtl@@@Z
+?remove@PropertySetInfo@comphelper@@QAEXABVOUString@rtl@@@Z
+?upper_bound@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@2@ABVOUString@rtl@@@Z
+?__query@?$Reference@VXChild@container@star@sun@com@@@uno@star@sun@com@@CAPAVXChild@container@345@PAVXInterface@2345@@Z
+?__query@?$Reference@VXIndexAccess@container@star@sun@com@@@uno@star@sun@com@@CAPAVXIndexAccess@container@345@PAVXInterface@2345@@Z
+?set@?$Reference@VXIndexAccess@container@star@sun@com@@@uno@star@sun@com@@QAAEPAVXIndexAccess@container@345@@Z
+?set@?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAAEPAVXInterface@2345@@Z
+??0?$_STL_alloc_proxy@PAPAUAttachedObject_Impl@comphelper@@PAU12@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAE@ABV?$allocator@UAttachedObject_Impl@comphelper@@@1@PAPAUAttachedObject_Impl@comphelper@@@Z
+??8BaseReference@uno@star@sun@com@@QBAEPAVXInterface@1234@@Z
+??_C@_0DF@FPBD@o?3?2SRC626?2wntmsci7?2inc?2com?1sun?1s@
+?__query@?$Reference@VXInitialization@lang@star@sun@com@@@uno@star@sun@com@@CAPAVXInitialization@lang@345@PAVXInterface@2345@@Z
+?__query@?$Reference@VXMarkableStream@io@star@sun@com@@@uno@star@sun@com@@CAPAVXMarkableStream@io@345@PAVXInterface@2345@@Z
+?set@?$Reference@VXEventAttacher@script@star@sun@com@@@uno@star@sun@com@@QAAEPAVXEventAttacher@script@345@@Z
+?set@?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@QAAEPAVXEventListener@lang@345@@Z
+?set@?$Reference@VXTypeConverter@script@star@sun@com@@@uno@star@sun@com@@QAAEPAVXTypeConverter@script@345@@Z
+?__query@?$Reference@VXNumberFormatTypes@util@star@sun@com@@@uno@star@sun@com@@CAPAVXNumberFormatTypes@util@345@PAVXInterface@2345@@Z
+?set@?$Reference@VXSingleServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QAAEPAVXSingleServiceFactory@lang@345@@Z
+?__query@?$Reference@VXPropertyState@beans@star@sun@com@@@uno@star@sun@com@@CAPAVXPropertyState@beans@345@PAVXInterface@2345@@Z
+?set@?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@QAAEPAVXPropertySet@beans@345@@Z
+?__query@?$Reference@VXFastPropertySet@beans@star@sun@com@@@uno@star@sun@com@@CAPAVXFastPropertySet@beans@345@PAVXInterface@2345@@Z
+?__query@?$Reference@VXMultiPropertySet@beans@star@sun@com@@@uno@star@sun@com@@CAPAVXMultiPropertySet@beans@345@PAVXInterface@2345@@Z
+?__query@?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@CAPAVXPropertySet@beans@345@PAVXInterface@2345@@Z
+?set@?$Reference@VXMultiPropertySet@beans@star@sun@com@@@uno@star@sun@com@@QAAEPAVXMultiPropertySet@beans@345@@Z
+?set@?$Reference@VXPropertyState@beans@star@sun@com@@@uno@star@sun@com@@QAAEPAVXPropertyState@beans@345@@Z
+??0?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@_STL@@QAE@ABU01@@Z
+??0?$_STL_alloc_proxy@PAU?$_rbT__N@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@_STL@@U12@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@1@PAU?$_rbT__N@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@1@@Z
+??0?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@QAE@ABVOUString@rtl@@ABVAny@uno@star@sun@com@@@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU01@@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@1@AB_N@Z
+??0NameContainer@comphelper@@QAE@VType@uno@star@sun@com@@@Z
+??1?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@UAE@XZ
+??1?$_STL_alloc_proxy@PAU?$_rbT__N@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@_STL@@U12@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@_STL@@QAE@XZ
+??1?$_rbT__B@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@_STL@@QAE@XZ
+??1?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@_STL@@QAE@XZ
+??1?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@QAE@XZ
+??1NameContainer@comphelper@@UAE@XZ
+??1NameContainerImpl@comphelper@@QAE@XZ
+??_7?$ImplHelperBase1@VXNameContainer@container@star@sun@com@@@cppu@@6BXNameContainer@container@star@sun@com@@@
+??_7?$ImplHelperBase1@VXNameContainer@container@star@sun@com@@@cppu@@6BXTypeProvider@lang@star@sun@com@@@
+??_7?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@6B@
+??_7?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@6BXNameContainer@container@star@sun@com@@@
+??_7?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@6BXTypeProvider@lang@star@sun@com@@@
+??_7NameContainer@comphelper@@6B@
+??_7NameContainer@comphelper@@6BXNameContainer@container@star@sun@com@@@
+??_7NameContainer@comphelper@@6BXTypeProvider@lang@star@sun@com@@@
+??_B?1???s_aCD@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@$D@@9@51
+??_G?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@UAEPAXI@Z
+??_GNameContainer@comphelper@@UAEPAXI@Z
+?NameContainer_createInstance@comphelper@@YA?AV?$Reference@VXNameContainer@container@star@sun@com@@@uno@star@sun@com@@VType@3456@@Z
+?_M_create_node@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@IAEPAU?$_rbT__N@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@ABU?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@2@@Z
+?_M_empty_initialize@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@AAEXXZ
+?_M_erase@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@AAEXPAU?$_rbT__N@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@Z
+?_M_insert@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@2@PAU_rbT__NB@2@0ABU?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@2@@Z
+?acquire@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@UAAXXZ
+?acquire@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@WBA@AAXXZ
+?acquire@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@WM@AAXXZ
+?begin@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@2@XZ
+?deallocate@?$allocator@U?$_rbT__N@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@_STL@@@_STL@@QBEXPAU?$_rbT__N@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@I@Z
+?destroy_node@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@IAEXPAU?$_rbT__N@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@Z
+?end@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@2@XZ
+?erase@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@QAEXU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@2@@Z
+?erase@?$map@VOUString@rtl@@VAny@uno@star@sun@com@@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@_STL@@@_STL@@QAEXU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@2@@Z
+?find@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@2@ABVOUString@rtl@@@Z
+?getByName@NameContainer@comphelper@@UAA?AVAny@uno@star@sun@com@@ABVOUString@rtl@@@Z
+?getElementNames@NameContainer@comphelper@@UAA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
+?getElementType@NameContainer@comphelper@@UAA?AVType@uno@star@sun@com@@XZ
+?getImplementationId@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getTypes@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?hasByName@NameContainer@comphelper@@UAAEABVOUString@rtl@@@Z
+?hasElements@NameContainer@comphelper@@UAAEXZ
+?insert@?$map@VOUString@rtl@@VAny@uno@star@sun@com@@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@_STL@@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@2@U32@ABU?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@2@@Z
+?insertByName@NameContainer@comphelper@@UAAXABVOUString@rtl@@ABVAny@uno@star@sun@com@@@Z
+?insert_unique@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@2@U32@ABU?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@2@@Z
+?insert_unique@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@_STL@@_N@2@ABU?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@2@@Z
+?lower_bound@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_S1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@2@ABVOUString@rtl@@@Z
+?queryInterface@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@WM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@UAAXXZ
+?release@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@WBA@AAXXZ
+?release@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@WM@AAXXZ
+?removeByName@NameContainer@comphelper@@UAAXABVOUString@rtl@@@Z
+?replaceByName@NameContainer@comphelper@@UAAXABVOUString@rtl@@ABVAny@uno@star@sun@com@@@Z
+?s_aCD@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@$E
+?s_aCD@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@0UClassData1@2@A
+??0GenericPropertySet@comphelper@@QAE@PAVPropertySetInfo@1@@Z
+??1GenericPropertySet@comphelper@@UAE@XZ
+??_7GenericPropertySet@comphelper@@6BOWeakObject@cppu@@@
+??_7GenericPropertySet@comphelper@@6BXAggregation@uno@star@sun@com@@@
+??_7GenericPropertySet@comphelper@@6BXMultiPropertySet@beans@star@sun@com@@@
+??_7GenericPropertySet@comphelper@@6BXPropertySet@beans@star@sun@com@@@
+??_7GenericPropertySet@comphelper@@6BXPropertyState@beans@star@sun@com@@@
+??_7GenericPropertySet@comphelper@@6BXServiceInfo@lang@star@sun@com@@@
+??_7GenericPropertySet@comphelper@@6BXTypeProvider@lang@star@sun@com@@@
+??_7OWeakAggObject@cppu@@6BOWeakObject@1@@
+??_7OWeakAggObject@cppu@@6BXAggregation@uno@star@sun@com@@@
+??_7XAggregation@uno@star@sun@com@@6B@
+??_C@_0BO@INCD@com?4sun?4star?4uno?4XAggregation?$AA@
+??_C@_0CA@FEI@com?4sun?4star?4lang?4XTypeProvider?$AA@
+??_EGenericPropertySet@comphelper@@WBM@AEPAXI@Z
+??_GGenericPropertySet@comphelper@@UAEPAXI@Z
+??_GOWeakAggObject@cppu@@MAEPAXI@Z
+?GenericPropertySet_CreateInstance@comphelper@@YA?AV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@PAVPropertySetInfo@1@@Z
+?_getPropertyValues@GenericPropertySet@comphelper@@MAEXPAPBUPropertyMapEntry@2@PAVAny@uno@star@sun@com@@@Z
+?_setPropertyValues@GenericPropertySet@comphelper@@MAEXPAPBUPropertyMapEntry@2@PBVAny@uno@star@sun@com@@@Z
+?acquire@GenericPropertySet@comphelper@@UAAXXZ
+?acquire@GenericPropertySet@comphelper@@WBE@AAXXZ
+?acquire@GenericPropertySet@comphelper@@WBI@AAXXZ
+?acquire@GenericPropertySet@comphelper@@WBM@AAXXZ
+?acquire@GenericPropertySet@comphelper@@WCA@AAXXZ
+?acquire@GenericPropertySet@comphelper@@WCE@AAXXZ
+?acquire@GenericPropertySet@comphelper@@WM@AAXXZ
+?acquire@OWeakAggObject@cppu@@WM@AAXXZ
+?getImplementationId@GenericPropertySet@comphelper@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getImplementationName@GenericPropertySet@comphelper@@UAA?AVOUString@rtl@@XZ
+?getSupportedServiceNames@GenericPropertySet@comphelper@@UAA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
+?getTypes@GenericPropertySet@comphelper@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?queryAggregation@GenericPropertySet@comphelper@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@GenericPropertySet@comphelper@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@GenericPropertySet@comphelper@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@GenericPropertySet@comphelper@@WBI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@GenericPropertySet@comphelper@@WBM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@GenericPropertySet@comphelper@@WCA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@GenericPropertySet@comphelper@@WCE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@GenericPropertySet@comphelper@@WM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OWeakAggObject@cppu@@WM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@GenericPropertySet@comphelper@@UAAXXZ
+?release@GenericPropertySet@comphelper@@WBE@AAXXZ
+?release@GenericPropertySet@comphelper@@WBI@AAXXZ
+?release@GenericPropertySet@comphelper@@WBM@AAXXZ
+?release@GenericPropertySet@comphelper@@WCA@AAXXZ
+?release@GenericPropertySet@comphelper@@WCE@AAXXZ
+?release@GenericPropertySet@comphelper@@WM@AAXXZ
+?release@OWeakAggObject@cppu@@WM@AAXXZ
+?s_pType_com_sun_star_lang_XTypeProvider@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTypeProvider@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_uno_XAggregation@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAggregation@uno@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?supportsService@GenericPropertySet@comphelper@@UAAEABVOUString@rtl@@@Z
+??_C@_0DF@FEMC@o?3?2SRC627?2wntmsci7?2inc?2com?1sun?1s@
+??_C@_0DF@DJHO@o?3?2SRC628?2wntmsci7?2inc?2com?1sun?1s@
+?add@PropertyMapImpl@comphelper@@QAEXPAUPropertyMapEntry@2@J@Z
+?add@PropertySetInfo@comphelper@@QAEXPAUPropertyMapEntry@2@J@Z
+??_C@_0DF@DCKP@o?3?2SRC629?2wntmsci7?2inc?2com?1sun?1s@
+??_C@_0DF@KCPP@o?3?2SRC630?2wntmsci7?2inc?2com?1sun?1s@
+??_C@_0DF@KJCO@o?3?2SRC631?2wntmsci7?2inc?2com?1sun?1s@
+??_C@_0DF@KNMA@o?3?2TFU630?2wntmsci7?2inc?2com?1sun?1s@
+??_C@_0DF@LFFN@o?3?2SRC632?2wntmsci7?2inc?2com?1sun?1s@
+?getToken@OUString@rtl@@QBE?AV12@JGAAJ@Z
+??_C@_0DF@LOIM@o?3?2SRC633?2wntmsci7?2inc?2com?1sun?1s@
+??0OPropertyChangeMultiplexer@comphelper@@QAE@PAVOPropertyChangeListener@1@ABV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@E@Z
+?acquire@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@WBE@AAXXZ
+?queryInterface@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@WBE@AAXXZ
+?acquire@?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WBI@AAXXZ
+?queryInterface@?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WBI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WBI@AAXXZ
+?acquire@?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WBI@AAXXZ
+?queryInterface@?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WBI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@WBI@AAXXZ
+??_C@_0DF@IGGL@o?3?2SRC635?2wntmsci7?2inc?2com?1sun?1s@
+?acquire@?$WeakImplHelper1@VXAllListener@script@star@sun@com@@@cppu@@WBE@AAXXZ
+?acquire@?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@WBI@AAXXZ
+?queryInterface@?$WeakImplHelper1@VXAllListener@script@star@sun@com@@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@WBI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@?$WeakImplHelper1@VXAllListener@script@star@sun@com@@@cppu@@WBE@AAXXZ
+?release@?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@WBI@AAXXZ
+?acquire@?$WeakImplHelper1@VXInteractionRequest@task@star@sun@com@@@cppu@@WBE@AAXXZ
+?queryInterface@?$WeakImplHelper1@VXInteractionRequest@task@star@sun@com@@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@?$WeakImplHelper1@VXInteractionRequest@task@star@sun@com@@@cppu@@WBE@AAXXZ
+??1Directory@osl@@QAE@XZ
+?close@Directory@osl@@QAE?AW4RC@FileBase@2@XZ
+??_EGenericPropertySet@comphelper@@WCA@AEPAXI@Z
+?acquire@GenericPropertySet@comphelper@@WBA@AAXXZ
+?acquire@GenericPropertySet@comphelper@@WCI@AAXXZ
+?acquire@OWeakAggObject@cppu@@WBA@AAXXZ
+?queryInterface@GenericPropertySet@comphelper@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@GenericPropertySet@comphelper@@WCI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OWeakAggObject@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@GenericPropertySet@comphelper@@WBA@AAXXZ
+?release@GenericPropertySet@comphelper@@WCI@AAXXZ
+?release@OWeakAggObject@cppu@@WBA@AAXXZ
+?acquire@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@WBE@AAXXZ
+?queryInterface@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@WBE@AAXXZ
+?acquire@?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@WBI@AAXXZ
+?queryInterface@?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@WBI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@WBI@AAXXZ
+?acquire@?$WeakImplHelper1@VXPropertyChangeListener@beans@star@sun@com@@@cppu@@WBE@AAXXZ
+?queryInterface@?$WeakImplHelper1@VXPropertyChangeListener@beans@star@sun@com@@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@?$WeakImplHelper1@VXPropertyChangeListener@beans@star@sun@com@@@cppu@@WBE@AAXXZ
+??0OPropertyContainer@comphelper@@IAE@AAU?$OBroadcastHelperVar@VOMultiTypeInterfaceContainerHelper@cppu@@VType@uno@star@sun@com@@@cppu@@@Z
+?acquire@OSLInputStreamWrapper@comphelper@@WBE@AAXXZ
+?queryInterface@OSLInputStreamWrapper@comphelper@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@OSLInputStreamWrapper@comphelper@@WBE@AAXXZ
+?acquire@?$WeakImplHelper1@VXInputStream@io@star@sun@com@@@cppu@@WBE@AAXXZ
+?acquire@?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@WBE@AAXXZ
+?queryInterface@?$WeakImplHelper1@VXInputStream@io@star@sun@com@@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@?$WeakImplHelper1@VXInputStream@io@star@sun@com@@@cppu@@WBE@AAXXZ
+?release@?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@WBE@AAXXZ
+??_C@_0DF@GJFH@o?3?2TFD635?2wntmsci7?2inc?2com?1sun?1s@
+??_C@_0DF@JKBI@o?3?2SRC636?2wntmsci7?2inc?2com?1sun?1s@
+??_C@_0DF@CKLG@o?3?2CFG636?2wntmsci7?2inc?2com?1sun?1s@
+??_C@_0DF@HFCE@o?3?2TFD636?2wntmsci7?2inc?2com?1sun?1s@
+?decode@Uri@rtl@@SA?AVOUString@2@ABV32@W4rtl_UriDecodeMechanism@@G@Z
+??_C@_0DF@JBMJ@o?3?2SRC637?2wntmsci7?2inc?2com?1sun?1s@
+??_C@_0DF@PMHF@o?3?2SRC638?2wntmsci7?2inc?2com?1sun?1s@
+??0?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@_STL@@QAE@ABU01@@Z
+??0?$_STL_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@_STL@@U12@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@1@PAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@1@@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU01@@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@1@AB_N@Z
+??1?$_Rb_tree_base@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@_STL@@QAE@XZ
+??1?$_STL_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@_STL@@U12@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@_STL@@QAE@XZ
+?_M_create_node@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@IAEPAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@ABU?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@2@@Z
+?_M_decrement@?$_Rb_global@_N@_STL@@SAXPAU_Rb_tree_base_iterator@2@@Z
+?_M_empty_initialize@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@AAEXXZ
+?_M_erase@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@AAEXPAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@Z
+?_M_increment@?$_Rb_global@_N@_STL@@SAXPAU_Rb_tree_base_iterator@2@@Z
+?_M_insert@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@2@@Z
+?_Rb_tree_rotate_left@_STL@@YAXPAU_Rb_tree_node_base@1@AAPAU21@@Z
+?_Rb_tree_rotate_right@_STL@@YAXPAU_Rb_tree_node_base@1@AAPAU21@@Z
+?_Rebalance@?$_Rb_global@_N@_STL@@SAXPAU_Rb_tree_node_base@2@AAPAU32@@Z
+?_Rebalance_for_erase@?$_Rb_global@_N@_STL@@SAPAU_Rb_tree_node_base@2@PAU32@AAPAU32@11@Z
+?begin@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@2@XZ
+?deallocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@_STL@@@_STL@@QBEXPAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@I@Z
+?destroy_node@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@IAEXPAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@Z
+?end@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@2@XZ
+?erase@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@QAEXU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@2@@Z
+?erase@?$map@VOUString@rtl@@VAny@uno@star@sun@com@@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@_STL@@@_STL@@QAEXU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@2@@Z
+?find@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@2@ABVOUString@rtl@@@Z
+?insert@?$map@VOUString@rtl@@VAny@uno@star@sun@com@@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@_STL@@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@2@U32@ABU?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@2@@Z
+?insert_unique@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@2@U32@ABU?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@2@@Z
+?insert_unique@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@_STL@@_N@2@ABU?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@2@@Z
+?lower_bound@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@2@ABVOUString@rtl@@@Z
+??0?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@_STL@@QAE@ABU01@@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU01@@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@1@AB_N@Z
+?_M_create_node@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@IAEPAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@ABU?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@2@@Z
+?_M_erase@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@AAEXPAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@Z
+?_M_insert@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@2@@Z
+?begin@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@2@XZ
+?destroy_node@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@IAEXPAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@Z
+?end@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@2@XZ
+?end@?$map@VOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@2@XZ
+?erase@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@QAEXU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@2@@Z
+?erase@?$map@VOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@@_STL@@QAEXU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@2@@Z
+?find@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@2@ABVOUString@rtl@@@Z
+?insert@?$map@VOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@2@U32@ABU?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@2@@Z
+?insert_unique@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@2@U32@ABU?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@2@@Z
+?insert_unique@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@_STL@@_N@2@ABU?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@2@@Z
+?lower_bound@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@2@ABVOUString@rtl@@@Z
+??0?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAE@ABU01@@Z
+??0?$_Deque_iterator@UAttacherIndex_Impl@comphelper@@U?$_Nonconst_traits@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@QAE@ABU01@@Z
+??D?$_Deque_iterator@UAttacherIndex_Impl@comphelper@@U?$_Nonconst_traits@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@QBEAAUAttacherIndex_Impl@comphelper@@XZ
+??G?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QBE?AU01@H@Z
+?_Destroy@_STL@@YAXU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@0@Z
+?_Destroy@_STL@@YAXU?$_Deque_iterator@UAttacherIndex_Impl@comphelper@@U?$_Nonconst_traits@UAttacherIndex_Impl@comphelper@@@_STL@@@1@0@Z
+?_M_insert_aux@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@IAEXU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@2@U?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Const_traits@UAttachedObject_Impl@comphelper@@@_STL@@@2@1I@Z
+?_M_insert_aux@?$deque@UAttacherIndex_Impl@comphelper@@V?$allocator@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@IAE?AU?$_Deque_iterator@UAttacherIndex_Impl@comphelper@@U?$_Nonconst_traits@UAttacherIndex_Impl@comphelper@@@_STL@@@2@U32@ABUAttacherIndex_Impl@comphelper@@@Z
+?_M_insert_aux_prepare@?$deque@UAttacherIndex_Impl@comphelper@@V?$allocator@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@IAE?AU?$_Deque_iterator@UAttacherIndex_Impl@comphelper@@U?$_Nonconst_traits@UAttacherIndex_Impl@comphelper@@@_STL@@@2@U32@@Z
+?_M_insert_dispatch@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAEXU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@2@U?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Const_traits@UAttachedObject_Impl@comphelper@@@_STL@@@2@1U__false_type@@@Z
+?__copy@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U21@00Urandom_access_iterator_tag@1@PAH@Z
+?__copy@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Const_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@0U21@Urandom_access_iterator_tag@1@PAH@Z
+?__copy@_STL@@YA?AU?$_Deque_iterator@UAttacherIndex_Impl@comphelper@@U?$_Nonconst_traits@UAttacherIndex_Impl@comphelper@@@_STL@@@1@U21@00Urandom_access_iterator_tag@1@PAH@Z
+?__copy_backward@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U21@00Urandom_access_iterator_tag@1@PAH@Z
+?__copy_backward@_STL@@YA?AU?$_Deque_iterator@UAttacherIndex_Impl@comphelper@@U?$_Nonconst_traits@UAttacherIndex_Impl@comphelper@@@_STL@@@1@U21@00Urandom_access_iterator_tag@1@PAH@Z
+?__destroy@_STL@@YAXU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@0PAUAttachedObject_Impl@comphelper@@@Z
+?__destroy@_STL@@YAXU?$_Deque_iterator@UAttacherIndex_Impl@comphelper@@U?$_Nonconst_traits@UAttacherIndex_Impl@comphelper@@@_STL@@@1@0PAUAttacherIndex_Impl@comphelper@@@Z
+?__destroy_aux@_STL@@YAXU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@0U__false_type@@@Z
+?__destroy_aux@_STL@@YAXU?$_Deque_iterator@UAttacherIndex_Impl@comphelper@@U?$_Nonconst_traits@UAttacherIndex_Impl@comphelper@@@_STL@@@1@0U__false_type@@@Z
+?__uninitialized_copy@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U21@00PAUAttachedObject_Impl@comphelper@@@Z
+?__uninitialized_copy@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Const_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@0U21@PAUAttachedObject_Impl@comphelper@@@Z
+?__uninitialized_copy_aux@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U21@00U__false_type@@@Z
+?__uninitialized_copy_aux@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Const_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@0U21@U__false_type@@@Z
+?__uninitialized_copy_copy@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U21@0U?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Const_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@10@Z
+?__uninitialized_copy_copy@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Const_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@0U21@11@Z
+?begin@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QBE?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Const_traits@UAttachedObject_Impl@comphelper@@@_STL@@@2@XZ
+?copy@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U21@00@Z
+?copy@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Const_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@0U21@@Z
+?copy@_STL@@YA?AU?$_Deque_iterator@UAttacherIndex_Impl@comphelper@@U?$_Nonconst_traits@UAttacherIndex_Impl@comphelper@@@_STL@@@1@U21@00@Z
+?copy_backward@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U21@00@Z
+?copy_backward@_STL@@YA?AU?$_Deque_iterator@UAttacherIndex_Impl@comphelper@@U?$_Nonconst_traits@UAttacherIndex_Impl@comphelper@@@_STL@@@1@U21@00@Z
+?end@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QBE?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Const_traits@UAttachedObject_Impl@comphelper@@@_STL@@@2@XZ
+?erase@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAE?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@2@U32@0@Z
+?erase@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAE?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@2@U32@@Z
+?erase@?$deque@UAttacherIndex_Impl@comphelper@@V?$allocator@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@QAE?AU?$_Deque_iterator@UAttacherIndex_Impl@comphelper@@U?$_Nonconst_traits@UAttacherIndex_Impl@comphelper@@@_STL@@@2@U32@@Z
+?insert@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@IAEXU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@2@U?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Const_traits@UAttachedObject_Impl@comphelper@@@_STL@@@2@1Uforward_iterator_tag@2@@Z
+?insert@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAEXU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@2@U?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Const_traits@UAttachedObject_Impl@comphelper@@@_STL@@@2@1@Z
+?insert@?$deque@UAttacherIndex_Impl@comphelper@@V?$allocator@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@QAE?AU?$_Deque_iterator@UAttacherIndex_Impl@comphelper@@U?$_Nonconst_traits@UAttacherIndex_Impl@comphelper@@@_STL@@@2@U32@ABUAttacherIndex_Impl@comphelper@@@Z
+?uninitialized_copy@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U21@00@Z
+?uninitialized_copy@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Const_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@0U21@@Z
+?end@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@2@XZ
+??0?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@_STL@@QAE@ABU01@@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@_STL@@U12@@_STL@@QAE@ABU01@@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@_STL@@U12@@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@1@0@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU01@@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@1@AB_N@Z
+??E?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@_STL@@QAE?AU01@H@Z
+?_M_create_node@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@IAEPAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@ABU?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@2@@Z
+?_M_empty_initialize@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@AAEXXZ
+?_M_erase@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@AAEXPAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@Z
+?_M_insert@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@2@@Z
+?__distance@_STL@@YAXU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@1@0AAIUinput_iterator_tag@1@@Z
+?begin@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@2@XZ
+?deallocate@?$_STL_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@_STL@@U12@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@_STL@@QAEXPAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@I@Z
+?destroy_node@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@IAEXPAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@Z
+?distance@_STL@@YAXU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@1@0AAI@Z
+?end@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@2@XZ
+?erase@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@QAEXU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@2@0@Z
+?erase@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@QAEXU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@2@@Z
+?find@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@2@ABVOUString@rtl@@@Z
+?insert@?$map@VOUString@rtl@@PAUPropertyMapEntry@comphelper@@UUStringLess@4@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@_STL@@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@2@U32@ABU?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@2@@Z
+?insert_unique@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@2@U32@ABU?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@2@@Z
+?insert_unique@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@_STL@@_N@2@ABU?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@2@@Z
+?lower_bound@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@2@ABVOUString@rtl@@@Z
+?upper_bound@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@2@ABVOUString@rtl@@@Z
+??0?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@QAE@ABU?$less@J@1@ABV?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@1@@Z
+??0?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@QAE@ABU01@@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU01@@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@1@AB_N@Z
+??1?$_Rb_tree_base@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@QAE@XZ
+??1?$_STL_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@_STL@@U12@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@QAE@XZ
+?_M_create_node@?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@IAEPAU?$_Rb_tree_node@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@ABU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@2@@Z
+?_M_erase@?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@AAEXPAU?$_Rb_tree_node@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@Z
+?_M_insert@?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@2@@Z
+?begin@?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@2@XZ
+?deallocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@_STL@@@_STL@@QBEXPAU?$_Rb_tree_node@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@I@Z
+?destroy_node@?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@IAEXPAU?$_Rb_tree_node@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@Z
+?end@?$map@JUOPropertyAccessor@internal@comphelper@@U?$less@J@_STL@@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@5@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@2@XZ
+?find@?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@2@ABJ@Z
+?find@?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Const_traits@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@2@ABJ@Z
+?insert@?$map@JUOPropertyAccessor@internal@comphelper@@U?$less@J@_STL@@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@5@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@2@U32@ABU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@2@@Z
+?insert_unique@?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@2@U32@ABU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@2@@Z
+?insert_unique@?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@_N@2@ABU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@2@@Z
+?lower_bound@?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@2@ABJ@Z
+?lower_bound@?$map@JUOPropertyAccessor@internal@comphelper@@U?$less@J@_STL@@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@5@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@2@ABJ@Z
+?__copy@_STL@@YAPAUPropertyDescription@OPropertyContainer@comphelper@@PAU234@00Urandom_access_iterator_tag@1@PAH@Z
+??0?$_Ht_It@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@QAE@PBU?$_hT__N@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@1@PBV?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@1@@Z
+??0?$_Ht_It@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@_STL@@QAE@PBU?$_hT__N@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@1@PBV?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@1@@Z
+??0?$_Vector_base@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@1@@Z
+??0?$_Vector_base@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@_STL@@@_STL@@QAE@IABV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@1@@Z
+??0MasterPropertySetInfo@comphelper@@QAE@PAUPropertyInfo@1@@Z
+??0MasterPropertySetInfo@comphelper@@QAE@XZ
+??1?$_STL_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@_STL@@@_STL@@QAE@XZ
+??1?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@_STL@@QAE@XZ
+??1?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@QAE@XZ
+??1?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@_STL@@@_STL@@QAE@XZ
+??1MasterPropertySetInfo@comphelper@@UAE@XZ
+??_7MasterPropertySetInfo@comphelper@@6BOWeakObject@cppu@@@
+??_7MasterPropertySetInfo@comphelper@@6BXPropertySetInfo@beans@star@sun@com@@@
+??_C@_0BH@DCJF@com?4sun?4star?4uno?4XWeak?$AA@
+??_G?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@QAEPAXI@Z
+??_GMasterPropertySetInfo@comphelper@@UAEPAXI@Z
+?_M_allocate_and_copy@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@_STL@@@_STL@@IAEPAPAXIPAPAX0@Z
+?_M_delete_node@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@AAEXPAU?$_hT__N@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@Z
+?_M_initialize_buckets@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@AAEXI@Z
+?_M_insert_overflow@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@_STL@@@_STL@@IAEXPAPAXABQAXI@Z
+?_M_list@?$_Stl_prime@_N@_STL@@2QBKB
+?_M_new_node@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@AAEPAU?$_hT__N@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@ABU?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@2@@Z
+?_M_skip_to_next@?$_hT__It@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@QAEPAU?$_hT__N@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@XZ
+?__copy@_STL@@YAPAPAXPAPAX00U_Ra__ItT@1@PAH@Z
+?__copy_backward@_STL@@YAPAPAXPAPAX00U_Ra__ItT@1@PAH@Z
+?__lower_bound@_STL@@YAPBIPBI0ABIPAH@Z
+?acquire@MasterPropertySetInfo@comphelper@@UAAXXZ
+?acquire@MasterPropertySetInfo@comphelper@@W3AAXXZ
+?add@MasterPropertySetInfo@comphelper@@QAEXAAV?$hash_map@VOUString@rtl@@PAUPropertyInfo@comphelper@@UOUStringHash@2@UeqFunc@4@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@_STL@@@_STL@@E@Z
+?add@MasterPropertySetInfo@comphelper@@QAEXPAUPropertyInfo@2@JE@Z
+?begin@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_It@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@2@XZ
+?begin@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_It@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@2@XZ
+?copy@_STL@@YAPAPAXPAPAX00@Z
+?deallocate@?$_STL_alloc_proxy@IU?$_hT__N@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@QAEXPAU?$_hT__N@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@I@Z
+?deallocate@?$allocator@U?$_hT__N@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@_STL@@@_STL@@QBEXPAU?$_hT__N@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@I@Z
+?find@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_It@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@2@ABVOUString@rtl@@@Z
+?getProperties@MasterPropertySetInfo@comphelper@@UAA?AV?$Sequence@UProperty@beans@star@sun@com@@@uno@star@sun@com@@XZ
+?getPropertyByName@MasterPropertySetInfo@comphelper@@UAA?AUProperty@beans@star@sun@com@@ABVOUString@rtl@@@Z
+?get_allocator@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@_STL@@@_STL@@QBE?AV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@XZ
+?hasPropertyByName@MasterPropertySetInfo@comphelper@@UAAEABVOUString@rtl@@@Z
+?queryInterface@MasterPropertySetInfo@comphelper@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@MasterPropertySetInfo@comphelper@@W3AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@cppu@@YA?AVAny@uno@star@sun@com@@ABVType@3456@PAVXInterface@3456@PAVXWeak@3456@PAVXPropertySetInfo@beans@456@@Z
+?release@MasterPropertySetInfo@comphelper@@UAAXXZ
+?release@MasterPropertySetInfo@comphelper@@W3AAXXZ
+?remove@MasterPropertySetInfo@comphelper@@QAEXABVOUString@rtl@@@Z
+?resize@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@QAEXI@Z
+?s_pType_com_sun_star_uno_XWeak@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXWeak@uno@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+??0?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@QAE@ABU01@@Z
+??0?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@QAE@ABEABQAUSlaveData@comphelper@@@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU01@@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@1@AB_N@Z
+??0MasterPropertySet@comphelper@@QAE@PAVMasterPropertySetInfo@1@PAVIMutex@vos@@@Z
+??0SlaveData@comphelper@@QAE@PAVChainablePropertySet@1@@Z
+??1MasterPropertySet@comphelper@@UAE@XZ
+??_7MasterPropertySet@comphelper@@6BXMultiPropertySet@beans@star@sun@com@@@
+??_7MasterPropertySet@comphelper@@6BXPropertySet@beans@star@sun@com@@@
+??_7MasterPropertySet@comphelper@@6BXPropertyState@beans@star@sun@com@@@
+??_GMasterPropertySet@comphelper@@UAEPAXI@Z
+?_M_create_node@?$_Rb_tree@EU?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@IAEPAU?$_rbT__N@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@ABU?$pair@$$CBEPAUSlaveData@comphelper@@@2@@Z
+?_M_empty_initialize@?$_Rb_tree@EU?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@AAEXXZ
+?_M_erase@?$_Rb_tree@EU?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@AAEXPAU?$_rbT__N@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@Z
+?_M_insert@?$_Rb_tree@EU?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@2@PAU_rbT__NB@2@0ABU?$pair@$$CBEPAUSlaveData@comphelper@@@2@@Z
+?_getPropertyDefault@MasterPropertySet@comphelper@@MAE?AVAny@uno@star@sun@com@@ABUPropertyInfo@2@@Z
+?_getPropertyState@MasterPropertySet@comphelper@@MAEXABUPropertyInfo@2@AAW4PropertyState@beans@star@sun@com@@@Z
+?_postGetPropertyState@MasterPropertySet@comphelper@@MAEXXZ
+?_preGetPropertyState@MasterPropertySet@comphelper@@MAEXXZ
+?_setPropertyToDefault@MasterPropertySet@comphelper@@MAEXABUPropertyInfo@2@@Z
+?addPropertiesChangeListener@MasterPropertySet@comphelper@@UAAXABV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@ABV?$Reference@VXPropertiesChangeListener@beans@star@sun@com@@@4567@@Z
+?addPropertyChangeListener@MasterPropertySet@comphelper@@UAAXABVOUString@rtl@@ABV?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?addVetoableChangeListener@MasterPropertySet@comphelper@@UAAXABVOUString@rtl@@ABV?$Reference@VXVetoableChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?begin@?$_Rb_tree@EU?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@2@XZ
+?destroy_node@?$_Rb_tree@EU?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@IAEXPAU?$_rbT__N@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@Z
+?end@?$_Rb_tree@EU?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@2@XZ
+?end@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_It@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@2@XZ
+?end@?$map@EPAUSlaveData@comphelper@@U?$less@E@_STL@@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@2@XZ
+?firePropertiesChangeEvent@MasterPropertySet@comphelper@@UAAXABV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@ABV?$Reference@VXPropertiesChangeListener@beans@star@sun@com@@@4567@@Z
+?getPropertyDefault@MasterPropertySet@comphelper@@UAA?AVAny@uno@star@sun@com@@ABVOUString@rtl@@@Z
+?getPropertySetInfo@MasterPropertySet@comphelper@@UAA?AV?$Reference@VXPropertySetInfo@beans@star@sun@com@@@uno@star@sun@com@@XZ
+?getPropertySetInfo@MasterPropertySet@comphelper@@W7AA?AV?$Reference@VXPropertySetInfo@beans@star@sun@com@@@uno@star@sun@com@@XZ
+?getPropertyState@MasterPropertySet@comphelper@@UAA?AW4PropertyState@beans@star@sun@com@@ABVOUString@rtl@@@Z
+?getPropertyStates@MasterPropertySet@comphelper@@UAA?AV?$Sequence@W4PropertyState@beans@star@sun@com@@@uno@star@sun@com@@ABV?$Sequence@VOUString@rtl@@@4567@@Z
+?getPropertyValue@MasterPropertySet@comphelper@@UAA?AVAny@uno@star@sun@com@@ABVOUString@rtl@@@Z
+?getPropertyValues@MasterPropertySet@comphelper@@UAA?AV?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@ABV?$Sequence@VOUString@rtl@@@4567@@Z
+?insert@?$map@EPAUSlaveData@comphelper@@U?$less@E@_STL@@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@2@U32@ABU?$pair@$$CBEPAUSlaveData@comphelper@@@2@@Z
+?insert_unique@?$_Rb_tree@EU?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@2@U32@ABU?$pair@$$CBEPAUSlaveData@comphelper@@@2@@Z
+?insert_unique@?$_Rb_tree@EU?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@_N@2@ABU?$pair@$$CBEPAUSlaveData@comphelper@@@2@@Z
+?lockMutex@MasterPropertySet@comphelper@@IAEXXZ
+?lower_bound@?$_Rb_tree@EU?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_S1st@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@2@ABE@Z
+?lower_bound@?$map@EPAUSlaveData@comphelper@@U?$less@E@_STL@@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@2@ABE@Z
+?registerSlave@MasterPropertySet@comphelper@@QAEXPAVChainablePropertySet@2@@Z
+?removePropertiesChangeListener@MasterPropertySet@comphelper@@UAAXABV?$Reference@VXPropertiesChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?removePropertyChangeListener@MasterPropertySet@comphelper@@UAAXABVOUString@rtl@@ABV?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?removeVetoableChangeListener@MasterPropertySet@comphelper@@UAAXABVOUString@rtl@@ABV?$Reference@VXVetoableChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?setPropertyToDefault@MasterPropertySet@comphelper@@UAAXABVOUString@rtl@@@Z
+?setPropertyValue@MasterPropertySet@comphelper@@UAAXABVOUString@rtl@@ABVAny@uno@star@sun@com@@@Z
+?setPropertyValues@MasterPropertySet@comphelper@@UAAXABV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@ABV?$Sequence@VAny@uno@star@sun@com@@@4567@@Z
+?unlockMutex@MasterPropertySet@comphelper@@IAEXXZ
+??0?$_Vector_base@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@1@@Z
+??0?$_Vector_base@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@_STL@@@_STL@@QAE@IABV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@1@@Z
+??0ChainablePropertySetInfo@comphelper@@QAE@PAUPropertyInfo@1@@Z
+??0ChainablePropertySetInfo@comphelper@@QAE@XZ
+??1?$_STL_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@_STL@@@_STL@@QAE@XZ
+??1?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@_STL@@QAE@XZ
+??1?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@QAE@XZ
+??1?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@_STL@@@_STL@@QAE@XZ
+??1ChainablePropertySetInfo@comphelper@@UAE@XZ
+??_7ChainablePropertySetInfo@comphelper@@6BOWeakObject@cppu@@@
+??_7ChainablePropertySetInfo@comphelper@@6BXPropertySetInfo@beans@star@sun@com@@@
+??_G?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@QAEPAXI@Z
+??_GChainablePropertySetInfo@comphelper@@UAEPAXI@Z
+?_M_acquire_lock@_STL_mutex_base@_STL@@QAEXXZ
+?_M_allocate_and_copy@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@_STL@@@_STL@@IAEPAPAXIPAPAX0@Z
+?_M_delete_node@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@_STL@@AAEXPAU?$_hT__N@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@Z
+?_M_initialize_buckets@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@_STL@@AAEXI@Z
+?_M_insert_overflow@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@_STL@@@_STL@@IAEXPAPAXABQAXI@Z
+?_M_new_node@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@_STL@@AAEPAU?$_hT__N@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@ABU?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@2@@Z
+?_M_release_lock@_STL_mutex_base@_STL@@QAEXXZ
+?_M_skip_to_next@?$_hT__It@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@_STL@@QAEPAU?$_hT__N@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@XZ
+?acquire@ChainablePropertySetInfo@comphelper@@UAAXXZ
+?acquire@ChainablePropertySetInfo@comphelper@@W3AAXXZ
+?add@ChainablePropertySetInfo@comphelper@@QAEXPAUPropertyInfo@2@J@Z
+?deallocate@?$_STL_alloc_proxy@IU?$_hT__N@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@_STL@@QAEXPAU?$_hT__N@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@I@Z
+?find@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_It@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@2@ABVOUString@rtl@@@Z
+?getProperties@ChainablePropertySetInfo@comphelper@@UAA?AV?$Sequence@UProperty@beans@star@sun@com@@@uno@star@sun@com@@XZ
+?getPropertyByName@ChainablePropertySetInfo@comphelper@@UAA?AUProperty@beans@star@sun@com@@ABVOUString@rtl@@@Z
+?get_allocator@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@_STL@@@_STL@@QBE?AV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@XZ
+?hasPropertyByName@ChainablePropertySetInfo@comphelper@@UAAEABVOUString@rtl@@@Z
+?queryInterface@ChainablePropertySetInfo@comphelper@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@ChainablePropertySetInfo@comphelper@@W3AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@ChainablePropertySetInfo@comphelper@@UAAXXZ
+?release@ChainablePropertySetInfo@comphelper@@W3AAXXZ
+?remove@ChainablePropertySetInfo@comphelper@@QAEXABVOUString@rtl@@@Z
+?resize@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@_STL@@QAEXI@Z
+??0ChainablePropertySet@comphelper@@QAE@PAVChainablePropertySetInfo@1@PAVIMutex@vos@@@Z
+??1ChainablePropertySet@comphelper@@UAE@XZ
+??_7ChainablePropertySet@comphelper@@6BXMultiPropertySet@beans@star@sun@com@@@
+??_7ChainablePropertySet@comphelper@@6BXPropertySet@beans@star@sun@com@@@
+??_7ChainablePropertySet@comphelper@@6BXPropertyState@beans@star@sun@com@@@
+??_GChainablePropertySet@comphelper@@UAEPAXI@Z
+?_getPropertyDefault@ChainablePropertySet@comphelper@@MAE?AVAny@uno@star@sun@com@@ABUPropertyInfo@2@@Z
+?_getPropertyState@ChainablePropertySet@comphelper@@MAEXABUPropertyInfo@2@AAW4PropertyState@beans@star@sun@com@@@Z
+?_postGetPropertyState@ChainablePropertySet@comphelper@@MAEXXZ
+?_preGetPropertyState@ChainablePropertySet@comphelper@@MAEXXZ
+?_setPropertyToDefault@ChainablePropertySet@comphelper@@MAEXABUPropertyInfo@2@@Z
+?addPropertiesChangeListener@ChainablePropertySet@comphelper@@UAAXABV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@ABV?$Reference@VXPropertiesChangeListener@beans@star@sun@com@@@4567@@Z
+?addPropertyChangeListener@ChainablePropertySet@comphelper@@UAAXABVOUString@rtl@@ABV?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?addVetoableChangeListener@ChainablePropertySet@comphelper@@UAAXABVOUString@rtl@@ABV?$Reference@VXVetoableChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?firePropertiesChangeEvent@ChainablePropertySet@comphelper@@UAAXABV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@ABV?$Reference@VXPropertiesChangeListener@beans@star@sun@com@@@4567@@Z
+?getPropertyDefault@ChainablePropertySet@comphelper@@UAA?AVAny@uno@star@sun@com@@ABVOUString@rtl@@@Z
+?getPropertySetInfo@ChainablePropertySet@comphelper@@UAA?AV?$Reference@VXPropertySetInfo@beans@star@sun@com@@@uno@star@sun@com@@XZ
+?getPropertySetInfo@ChainablePropertySet@comphelper@@W7AA?AV?$Reference@VXPropertySetInfo@beans@star@sun@com@@@uno@star@sun@com@@XZ
+?getPropertyState@ChainablePropertySet@comphelper@@UAA?AW4PropertyState@beans@star@sun@com@@ABVOUString@rtl@@@Z
+?getPropertyStates@ChainablePropertySet@comphelper@@UAA?AV?$Sequence@W4PropertyState@beans@star@sun@com@@@uno@star@sun@com@@ABV?$Sequence@VOUString@rtl@@@4567@@Z
+?getPropertyValue@ChainablePropertySet@comphelper@@UAA?AVAny@uno@star@sun@com@@ABVOUString@rtl@@@Z
+?getPropertyValues@ChainablePropertySet@comphelper@@UAA?AV?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@ABV?$Sequence@VOUString@rtl@@@4567@@Z
+?lockMutex@ChainablePropertySet@comphelper@@IAEXXZ
+?removePropertiesChangeListener@ChainablePropertySet@comphelper@@UAAXABV?$Reference@VXPropertiesChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?removePropertyChangeListener@ChainablePropertySet@comphelper@@UAAXABVOUString@rtl@@ABV?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?removeVetoableChangeListener@ChainablePropertySet@comphelper@@UAAXABVOUString@rtl@@ABV?$Reference@VXVetoableChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
+?setPropertyToDefault@ChainablePropertySet@comphelper@@UAAXABVOUString@rtl@@@Z
+?setPropertyValue@ChainablePropertySet@comphelper@@UAAXABVOUString@rtl@@ABVAny@uno@star@sun@com@@@Z
+?setPropertyValues@ChainablePropertySet@comphelper@@UAAXABV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@ABV?$Sequence@VAny@uno@star@sun@com@@@4567@@Z
+?unlockMutex@ChainablePropertySet@comphelper@@IAEXXZ
+??_C@_0BG@KCAE@com?4sun?4star?4awt?4Size?$AA@
+??_C@_0BH@KNH@com?4sun?4star?4awt?4Point?$AA@
+??_C@_0BI@GFND@com?4sun?4star?4text?4XText?$AA@
+??_C@_0BJ@DOPM@com?4sun?4star?4awt?4XBitmap?$AA@
+??_C@_0BJ@FJKN@com?4sun?4star?4table?4XCell?$AA@
+??_C@_0BJ@IEN@com?4sun?4star?4lang?4Locale?$AA@
+??_C@_0BL@IHGD@com?4sun?4star?4style?4TabStop?$AA@
+??_C@_0BL@LHNK@com?4sun?4star?4awt?4FontSlant?$AA@
+??_C@_0BM@DPFB@com?4sun?4star?4text?4XFootnote?$AA@
+??_C@_0BN@DGCE@com?4sun?4star?4text?4XTextField?$AA@
+??_C@_0BN@EKFN@com?4sun?4star?4text?4XTextTable?$AA@
+??_C@_0BN@NCAE@com?4sun?4star?4text?4XTextFrame?$AA@
+??_C@_0BN@NMMG@com?4sun?4star?4text?4XTextRange?$AA@
+??_C@_0BN@PHGH@com?4sun?4star?4style?4BreakType?$AA@
+??_C@_0BO@BOPM@com?4sun?4star?4table?4BorderLine?$AA@
+??_C@_0BO@JFNC@com?4sun?4star?4text?4GraphicCrop?$AA@
+??_C@_0BP@FIJA@com?4sun?4star?4text?4XTextSection?$AA@
+??_C@_0BP@HALC@com?4sun?4star?4text?4XTextContent?$AA@
+??_C@_0BP@HKDI@com?4sun?4star?4style?4LineSpacing?$AA@
+??_C@_0BP@HNAG@com?4sun?4star?4drawing?4ColorMode?$AA@
+??_C@_0BP@IDHA@com?4sun?4star?4text?4WrapTextMode?$AA@
+??_C@_0BP@NAPK@com?4sun?4star?4text?4XTextColumns?$AA@
+??_C@_0BP@OBMJ@com?4sun?4star?4table?4TableBorder?$AA@
+??_C@_0CA@FPMO@com?4sun?4star?4table?4ShadowFormat?$AA@
+??_C@_0CB@FIHD@com?4sun?4star?4style?4DropCapFormat@
+??_C@_0CB@KBG@com?4sun?4star?4text?4XDocumentIndex@
+??_C@_0CC@BFGI@com?4sun?4star?4text?4SectionFileLin@
+??_C@_0CD@GMPD@com?4sun?4star?4style?4PageStyleLayo@
+??_C@_0CD@OODA@com?4sun?4star?4style?4GraphicLocati@
+??_C@_0CE@GEEC@com?4sun?4star?4container?4XNameRepl@
+??_C@_0CF@JBAL@com?4sun?4star?4text?4XDocumentIndex@
+??_C@_0CF@LAHG@com?4sun?4star?4container?4XIndexRep@
+??_C@_0CF@OPBM@com?4sun?4star?4style?4VerticalAlign@
+??_C@_0CG@LCFC@com?4sun?4star?4text?4XDependentText@
+??_C@_0CH@KOCH@com?4sun?4star?4text?4TableColumnSep@
+??_C@_0CH@LMOF@com?4sun?4star?4i18n?4XForbiddenChar@
+??_C@_0CI@BPL@com?4sun?4star?4text?4TextContentAnc@
+?GenerateCppuType@comphelper@@YAXGAAPBVType@uno@star@sun@com@@@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@UPoint@awt@star@sun@com@@@2345@@Z
+?s_pType@?$Sequence@UPoint@awt@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType@?$Sequence@UTabStop@style@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType@?$Sequence@UTableColumnSeparator@text@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType@?$Sequence@V?$Reference@VXDependentTextField@text@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType@?$Sequence@V?$Reference@VXDocumentIndexMark@text@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType@?$Sequence@V?$Sequence@UPoint@awt@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType@?$Sequence@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType@?$Sequence@W4TextContentAnchorType@text@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_awt_FontSlant@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBW4FontSlant@awt@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_awt_Point@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUPoint@awt@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_awt_Size@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUSize@awt@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_awt_XBitmap@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXBitmap@awt@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_container_XIndexReplace@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXIndexReplace@container@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_container_XNameReplace@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXNameReplace@container@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_drawing_ColorMode@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBW4ColorMode@drawing@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_i18n_XForbiddenCharacters@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXForbiddenCharacters@i18n@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_lang_Locale@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBULocale@lang@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_style_BreakType@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBW4BreakType@style@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_style_DropCapFormat@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUDropCapFormat@style@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_style_GraphicLocation@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBW4GraphicLocation@style@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_style_LineSpacing@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBULineSpacing@style@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_style_PageStyleLayout@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBW4PageStyleLayout@style@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_style_TabStop@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUTabStop@style@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_style_VerticalAlignment@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBW4VerticalAlignment@style@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_table_BorderLine@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUBorderLine@table@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_table_ShadowFormat@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUShadowFormat@table@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_table_TableBorder@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUTableBorder@table@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_table_XCell@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXCell@table@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_text_GraphicCrop@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUGraphicCrop@text@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_text_SectionFileLink@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUSectionFileLink@text@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_text_TableColumnSeparator@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUTableColumnSeparator@text@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_text_TextContentAnchorType@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBW4TextContentAnchorType@text@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_text_WrapTextMode@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBW4WrapTextMode@text@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_text_XDependentTextField@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDependentTextField@text@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_text_XDocumentIndex@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDocumentIndex@text@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_text_XDocumentIndexMark@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDocumentIndexMark@text@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_text_XFootnote@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFootnote@text@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_text_XText@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXText@text@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_text_XTextColumns@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTextColumns@text@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_text_XTextContent@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTextContent@text@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_text_XTextField@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTextField@text@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_text_XTextFrame@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTextFrame@text@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_text_XTextRange@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTextRange@text@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_text_XTextSection@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTextSection@text@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_text_XTextTable@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTextTable@text@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?find_or_insert@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@QAEAAU?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@2@ABU32@@Z
+?find_or_insert@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@_STL@@QAEAAU?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@2@ABU32@@Z
+?implCheckIndex@ImplEventAttacherManager@comphelper@@AAE?AU?$_Dq__It@UAttacherIndex_Impl@comphelper@@U?$_N_Tr@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@J@Z
+??_C@_0DF@PJMM@o?3?2SRC640?2wntmsci7?2inc?2com?1sun?1s@
+?implCheckIndex@ImplEventAttacherManager@comphelper@@AAE?AU?$_Deque_iterator@UAttacherIndex_Impl@comphelper@@U?$_Nonconst_traits@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@J@Z
+??0?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@QAE@PBU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@1@PBV?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@1@@Z
+??0?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@_STL@@QAE@PBU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@1@PBV?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@1@@Z
+?_M_delete_node@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@AAEXPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@Z
+?_M_initialize_buckets@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@AAEXI@Z
+?_M_new_node@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@AAEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@ABU?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@2@@Z
+?_M_skip_to_next@?$_Hashtable_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@QAEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@XZ
+?__copy@_STL@@YAPAPAXPAPAX00Urandom_access_iterator_tag@1@PAH@Z
+?__copy_backward@_STL@@YAPAPAXPAPAX00Urandom_access_iterator_tag@1@PAH@Z
+?begin@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@2@XZ
+?begin@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@2@XZ
+?deallocate@?$_STL_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@QAEXPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@I@Z
+?deallocate@?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@_STL@@@_STL@@QBEXPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@I@Z
+?find@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@2@ABVOUString@rtl@@@Z
+?resize@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@QAEXI@Z
+??0?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@QAE@ABU01@@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU01@@Z
+??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@1@AB_N@Z
+?_M_create_node@?$_Rb_tree@EU?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@IAEPAU?$_Rb_tree_node@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@ABU?$pair@$$CBEPAUSlaveData@comphelper@@@2@@Z
+?_M_empty_initialize@?$_Rb_tree@EU?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@AAEXXZ
+?_M_erase@?$_Rb_tree@EU?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@AAEXPAU?$_Rb_tree_node@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@Z
+?_M_insert@?$_Rb_tree@EU?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBEPAUSlaveData@comphelper@@@2@@Z
+?begin@?$_Rb_tree@EU?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@2@XZ
+?destroy_node@?$_Rb_tree@EU?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@IAEXPAU?$_Rb_tree_node@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@Z
+?end@?$_Rb_tree@EU?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@2@XZ
+?end@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@2@XZ
+?end@?$map@EPAUSlaveData@comphelper@@U?$less@E@_STL@@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@2@XZ
+?insert@?$map@EPAUSlaveData@comphelper@@U?$less@E@_STL@@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@2@U32@ABU?$pair@$$CBEPAUSlaveData@comphelper@@@2@@Z
+?insert_unique@?$_Rb_tree@EU?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@2@U32@ABU?$pair@$$CBEPAUSlaveData@comphelper@@@2@@Z
+?insert_unique@?$_Rb_tree@EU?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@_N@2@ABU?$pair@$$CBEPAUSlaveData@comphelper@@@2@@Z
+?lower_bound@?$_Rb_tree@EU?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@2@ABE@Z
+?lower_bound@?$map@EPAUSlaveData@comphelper@@U?$less@E@_STL@@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@2@ABE@Z
+?_M_delete_node@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@_STL@@AAEXPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@Z
+?_M_initialize_buckets@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@_STL@@AAEXI@Z
+?_M_new_node@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@_STL@@AAEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@ABU?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@2@@Z
+?_M_skip_to_next@?$_Hashtable_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@_STL@@QAEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@XZ
+?deallocate@?$_STL_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@_STL@@QAEXPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@I@Z
+?find@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@2@ABVOUString@rtl@@@Z
+?resize@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@_STL@@QAEXI@Z
+??_7NameContainer@comphelper@@6BOWeakObject@cppu@@@
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXNameContainer@container@star@sun@com@@@2345@@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTypeProvider@lang@star@sun@com@@@2345@@Z
+?s_cd@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@0Uclass_data1@2@A
+??_7IndexedPropertyValuesContainer@@6BOWeakObject@cppu@@@
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXIndexContainer@container@star@sun@com@@@2345@@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXServiceInfo@lang@star@sun@com@@@2345@@Z
+?s_cd@?$WeakImplHelper2@VXIndexContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@0Uclass_data2@2@A
+??_7NamedPropertyValuesContainer@@6BOWeakObject@cppu@@@
+?s_cd@?$WeakImplHelper2@VXNameContainer@container@star@sun@com@@VXServiceInfo@lang@345@@cppu@@0Uclass_data2@2@A
+??_7AttacherAllListener_Impl@comphelper@@6BOWeakObject@cppu@@@
+??_7ImplEventAttacherManager@comphelper@@6BOWeakObject@cppu@@@
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAllListener@script@star@sun@com@@@2345@@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXEventAttacherManager@script@star@sun@com@@@2345@@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPersistObject@io@star@sun@com@@@2345@@Z
+?s_cd@?$WeakImplHelper1@VXAllListener@script@star@sun@com@@@cppu@@0Uclass_data1@2@A
+?s_cd@?$WeakImplHelper2@VXEventAttacherManager@script@star@sun@com@@VXPersistObject@io@345@@cppu@@0Uclass_data2@2@A
+??_7OInteractionRequest@comphelper@@6BOWeakObject@cppu@@@
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInteractionRequest@task@star@sun@com@@@2345@@Z
+?s_cd@?$WeakImplHelper1@VXInteractionRequest@task@star@sun@com@@@cppu@@0Uclass_data1@2@A
+??_7PropertySetInfo@comphelper@@6BOWeakObject@cppu@@@
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertySetInfo@beans@star@sun@com@@@2345@@Z
+?s_cd@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@0Uclass_data1@2@A
+??_7OComposedPropertySet@comphelper@@6BOWeakObject@cppu@@@
+??_7OComposedPropertySetInfo@comphelper@@6BOWeakObject@cppu@@@
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertySet@beans@star@sun@com@@@2345@@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertyState@beans@star@sun@com@@@2345@@Z
+?s_cd@?$WeakImplHelper2@VXPropertySet@beans@star@sun@com@@VXPropertyState@2345@@cppu@@0Uclass_data2@2@A
+??_7OPropertyChangeMultiplexer@comphelper@@6BOWeakObject@cppu@@@
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@2345@@Z
+?s_cd@?$WeakImplHelper1@VXPropertyChangeListener@beans@star@sun@com@@@cppu@@0Uclass_data1@2@A
+??_7OSLInputStreamWrapper@comphelper@@6BOWeakObject@cppu@@@
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInputStream@io@star@sun@com@@@2345@@Z
+?s_cd@?$WeakImplHelper1@VXInputStream@io@star@sun@com@@@cppu@@0Uclass_data1@2@A
+??_7OSequenceOutputStream@comphelper@@6BOWeakObject@cppu@@@
+??_7SequenceInputStream@comphelper@@6BOWeakObject@cppu@@@
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXOutputStream@io@star@sun@com@@@2345@@Z
+?s_cd@?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@0Uclass_data1@2@A
+??_C@_0DF@PCBN@o?3?2SRC641?2wntmsci7?2inc?2com?1sun?1s@
+?cpp_acquire@uno@star@sun@com@@YAXPAX@Z
+?cpp_release@uno@star@sun@com@@YAXPAX@Z
+?cpp_queryInterface@uno@star@sun@com@@YAPAXPAXPAU_typelib_TypeDescriptionReference@@@Z
+?find_or_insert@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@QAEAAU?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@2@ABU32@@Z
+?find_or_insert@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@_STL@@QAEAAU?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@2@ABU32@@Z
+??_C@_0CB@LFIN@com?4sun?4star?4text?4PageNumberType@
+?s_pType_com_sun_star_text_PageNumberType@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBW4PageNumberType@text@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?available@OStreamSection@comphelper@@QAEJXZ
+??_C@_0DF@DMMH@o?3?2SRC650?2wntmsci7?2inc?2com?1sun?1s@
+??_C@_0DF@NCBP@o?3?2SRX641?2wntmsci7?2inc?2com?1sun?1s@
+??_C@_0DF@MOGM@o?3?2SRX642?2wntmsci7?2inc?2com?1sun?1s@
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@VOUString@rtl@@@2345@@Z
+??0?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
+??0AnyCompare@@QAE@V?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@ABULocale@lang@345@@Z
+??0AnyCompareFactory@@QAE@V?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@@Z
+??1?$Reference@VXAnyCompare@ucb@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$WeakImplHelper1@VXAnyCompare@ucb@star@sun@com@@@cppu@@UAE@XZ
+??1?$WeakImplHelper3@VXAnyCompareFactory@ucb@star@sun@com@@VXInitialization@lang@345@VXServiceInfo@7345@@cppu@@UAE@XZ
+??1AnyCompare@@UAE@XZ
+??1AnyCompareFactory@@UAE@XZ
+??_7AnyCompare@@6BOWeakObject@cppu@@@
+??_7AnyCompare@@6BXAnyCompare@ucb@star@sun@com@@@
+??_7AnyCompare@@6BXTypeProvider@lang@star@sun@com@@@
+??_7AnyCompareFactory@@6BOWeakObject@cppu@@@
+??_7AnyCompareFactory@@6BXAnyCompareFactory@ucb@star@sun@com@@@
+??_7AnyCompareFactory@@6BXInitialization@lang@star@sun@com@@@
+??_7AnyCompareFactory@@6BXServiceInfo@lang@star@sun@com@@@
+??_7AnyCompareFactory@@6BXTypeProvider@lang@star@sun@com@@@
+??_C@_0BL@NMNE@com?4sun?4star?4i18n?4Collator?$AA@
+??_C@_0BM@BIKD@com?4sun?4star?4i18n?4XCollator?$AA@
+??_C@_0BN@KKAP@com?4sun?4star?4ucb?4XAnyCompare?$AA@
+??_C@_0CE@JKEN@com?4sun?4star?4ucb?4XAnyCompareFact@
+??_GAnyCompare@@UAEPAXI@Z
+??_GAnyCompareFactory@@UAEPAXI@Z
+?AnyCompareFactory_createInstance@@YA?AV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@ABV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@2345@@Z
+?AnyCompareFactory_getImplementationName@@YA?AVOUString@rtl@@XZ
+?AnyCompareFactory_getSupportedServiceNames@@YA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
+?acquire@?$WeakImplHelper1@VXAnyCompare@ucb@star@sun@com@@@cppu@@UAAXXZ
+?acquire@?$WeakImplHelper1@VXAnyCompare@ucb@star@sun@com@@@cppu@@WBA@AAXXZ
+?acquire@?$WeakImplHelper1@VXAnyCompare@ucb@star@sun@com@@@cppu@@WBE@AAXXZ
+?acquire@?$WeakImplHelper3@VXAnyCompareFactory@ucb@star@sun@com@@VXInitialization@lang@345@VXServiceInfo@7345@@cppu@@UAAXXZ
+?acquire@?$WeakImplHelper3@VXAnyCompareFactory@ucb@star@sun@com@@VXInitialization@lang@345@VXServiceInfo@7345@@cppu@@WBA@AAXXZ
+?acquire@?$WeakImplHelper3@VXAnyCompareFactory@ucb@star@sun@com@@VXInitialization@lang@345@VXServiceInfo@7345@@cppu@@WBE@AAXXZ
+?acquire@?$WeakImplHelper3@VXAnyCompareFactory@ucb@star@sun@com@@VXInitialization@lang@345@VXServiceInfo@7345@@cppu@@WBI@AAXXZ
+?acquire@?$WeakImplHelper3@VXAnyCompareFactory@ucb@star@sun@com@@VXInitialization@lang@345@VXServiceInfo@7345@@cppu@@WBM@AAXXZ
+?compare@AnyCompare@@UAAFABVAny@uno@star@sun@com@@0@Z
+?createAnyCompareByName@AnyCompareFactory@@UAA?AV?$Reference@VXAnyCompare@ucb@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAnyCompare@ucb@star@sun@com@@@2345@@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAnyCompareFactory@ucb@star@sun@com@@@2345@@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInitialization@lang@star@sun@com@@@2345@@Z
+?getImplementationId@?$WeakImplHelper1@VXAnyCompare@ucb@star@sun@com@@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getImplementationId@?$WeakImplHelper3@VXAnyCompareFactory@ucb@star@sun@com@@VXInitialization@lang@345@VXServiceInfo@7345@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getImplementationName@AnyCompareFactory@@UAA?AVOUString@rtl@@XZ
+?getSupportedServiceNames@AnyCompareFactory@@UAA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
+?getTypes@?$WeakImplHelper1@VXAnyCompare@ucb@star@sun@com@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?getTypes@?$WeakImplHelper3@VXAnyCompareFactory@ucb@star@sun@com@@VXInitialization@lang@345@VXServiceInfo@7345@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?initialize@AnyCompareFactory@@UAAXABV?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@@Z
+?queryInterface@?$WeakImplHelper1@VXAnyCompare@ucb@star@sun@com@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper1@VXAnyCompare@ucb@star@sun@com@@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper1@VXAnyCompare@ucb@star@sun@com@@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper3@VXAnyCompareFactory@ucb@star@sun@com@@VXInitialization@lang@345@VXServiceInfo@7345@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper3@VXAnyCompareFactory@ucb@star@sun@com@@VXInitialization@lang@345@VXServiceInfo@7345@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper3@VXAnyCompareFactory@ucb@star@sun@com@@VXInitialization@lang@345@VXServiceInfo@7345@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper3@VXAnyCompareFactory@ucb@star@sun@com@@VXInitialization@lang@345@VXServiceInfo@7345@@cppu@@WBI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper3@VXAnyCompareFactory@ucb@star@sun@com@@VXInitialization@lang@345@VXServiceInfo@7345@@cppu@@WBM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@?$WeakImplHelper1@VXAnyCompare@ucb@star@sun@com@@@cppu@@UAAXXZ
+?release@?$WeakImplHelper1@VXAnyCompare@ucb@star@sun@com@@@cppu@@WBA@AAXXZ
+?release@?$WeakImplHelper1@VXAnyCompare@ucb@star@sun@com@@@cppu@@WBE@AAXXZ
+?release@?$WeakImplHelper3@VXAnyCompareFactory@ucb@star@sun@com@@VXInitialization@lang@345@VXServiceInfo@7345@@cppu@@UAAXXZ
+?release@?$WeakImplHelper3@VXAnyCompareFactory@ucb@star@sun@com@@VXInitialization@lang@345@VXServiceInfo@7345@@cppu@@WBA@AAXXZ
+?release@?$WeakImplHelper3@VXAnyCompareFactory@ucb@star@sun@com@@VXInitialization@lang@345@VXServiceInfo@7345@@cppu@@WBE@AAXXZ
+?release@?$WeakImplHelper3@VXAnyCompareFactory@ucb@star@sun@com@@VXInitialization@lang@345@VXServiceInfo@7345@@cppu@@WBI@AAXXZ
+?release@?$WeakImplHelper3@VXAnyCompareFactory@ucb@star@sun@com@@VXInitialization@lang@345@VXServiceInfo@7345@@cppu@@WBM@AAXXZ
+?s_cd@?$WeakImplHelper1@VXAnyCompare@ucb@star@sun@com@@@cppu@@0Uclass_data1@2@A
+?s_cd@?$WeakImplHelper3@VXAnyCompareFactory@ucb@star@sun@com@@VXInitialization@lang@345@VXServiceInfo@7345@@cppu@@0Uclass_data3@2@A
+?s_pType_com_sun_star_i18n_XCollator@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXCollator@i18n@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_ucb_XAnyCompare@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAnyCompare@ucb@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_ucb_XAnyCompareFactory@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAnyCompareFactory@ucb@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?supportsService@AnyCompareFactory@@UAAEABVOUString@rtl@@@Z
+??_C@_0BP@CMIO@com?4sun?4star?4text?4WritingMode2?$AA@
+?s_pType_com_sun_star_text_WritingMode2@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBW4WritingMode2@text@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+??0?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@_STL@@U12@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@1@PAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@1@@Z
+??1?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@_STL@@U12@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@_STL@@QAE@XZ
+??_G?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@QAEPAXI@Z
+?_M_find@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@ABVOUString@rtl@@@Z
+?_M_insert@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@4@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@2@0@Z
+?deallocate@?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@_STL@@U12@V?$allocator@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@@_STL@@QAEXPAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@VAny@uno@star@sun@com@@@_STL@@@2@I@Z
+?_M_insert_overflow@?$vector@JV?$allocator@J@_STL@@@_STL@@IAEXPAJABJABU__true_type@2@I_N@Z
+?_Construct@_STL@@YAXPAV?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@ABV23456@@Z
+?_M_insert_overflow@?$vector@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@IAEXPAV?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@ABV34567@ABU__false_type@2@I_N@Z
+?__copy_backward_ptrs@_STL@@YAPAV?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@PAV23456@00ABU__false_type@1@@Z
+?__uninitialized_copy@_STL@@YAPAV?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@PAV23456@00ABU__false_type@1@@Z
+?__uninitialized_fill_n@_STL@@YAPAV?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@PAV23456@IABV23456@ABU__false_type@1@@Z
+??_G?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@QAEPAXI@Z
+?_M_find@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@ABVOUString@rtl@@@Z
+?_M_insert@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@4@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@2@0@Z
+?deallocate@?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@U12@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@_STL@@QAEXPAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@I@Z
+??0?$_STLP_alloc_proxy@IUAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAE@ABV?$allocator@UAttachedObject_Impl@comphelper@@@1@I@Z
+??0?$_STLP_alloc_proxy@PAPAUAttachedObject_Impl@comphelper@@PAU12@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAE@ABV?$allocator@UAttachedObject_Impl@comphelper@@@1@PAPAUAttachedObject_Impl@comphelper@@@Z
+??1?$_STLP_alloc_proxy@IUAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAE@XZ
+??1?$_STLP_alloc_proxy@IUAttacherIndex_Impl@comphelper@@V?$allocator@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@QAE@XZ
+??1?$_STLP_alloc_proxy@PAPAUAttachedObject_Impl@comphelper@@PAU12@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAE@XZ
+??1?$_STLP_alloc_proxy@PAPAUAttacherIndex_Impl@comphelper@@PAU12@V?$allocator@UAttacherIndex_Impl@comphelper@@@_STL@@@_STL@@QAE@XZ
+?_M_insert_dispatch@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAEXU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@2@U?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Const_traits@UAttachedObject_Impl@comphelper@@@_STL@@@2@1ABU__false_type@2@@Z
+?__copy@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U21@00ABUrandom_access_iterator_tag@1@PAH@Z
+?__copy@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Const_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@0U21@ABUrandom_access_iterator_tag@1@PAH@Z
+?__copy@_STL@@YA?AU?$_Deque_iterator@UAttacherIndex_Impl@comphelper@@U?$_Nonconst_traits@UAttacherIndex_Impl@comphelper@@@_STL@@@1@U21@00ABUrandom_access_iterator_tag@1@PAH@Z
+?__copy_aux@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U21@00ABU__false_type@1@@Z
+?__copy_aux@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Const_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@0U21@ABU__false_type@1@@Z
+?__copy_aux@_STL@@YA?AU?$_Deque_iterator@UAttacherIndex_Impl@comphelper@@U?$_Nonconst_traits@UAttacherIndex_Impl@comphelper@@@_STL@@@1@U21@00ABU__false_type@1@@Z
+?__copy_backward@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U21@00ABUrandom_access_iterator_tag@1@PAH@Z
+?__copy_backward@_STL@@YA?AU?$_Deque_iterator@UAttacherIndex_Impl@comphelper@@U?$_Nonconst_traits@UAttacherIndex_Impl@comphelper@@@_STL@@@1@U21@00ABUrandom_access_iterator_tag@1@PAH@Z
+?__copy_backward_aux@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U21@00ABU__false_type@1@@Z
+?__copy_backward_aux@_STL@@YA?AU?$_Deque_iterator@UAttacherIndex_Impl@comphelper@@U?$_Nonconst_traits@UAttacherIndex_Impl@comphelper@@@_STL@@@1@U21@00ABU__false_type@1@@Z
+?__destroy_aux@_STL@@YAXU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@0ABU__false_type@1@@Z
+?__destroy_aux@_STL@@YAXU?$_Deque_iterator@UAttacherIndex_Impl@comphelper@@U?$_Nonconst_traits@UAttacherIndex_Impl@comphelper@@@_STL@@@1@0ABU__false_type@1@@Z
+?__uninitialized_copy@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U21@00ABU__false_type@1@@Z
+?__uninitialized_copy@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Const_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@0U21@ABU__false_type@1@@Z
+?__uninitialized_copy_copy@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U21@0U?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Const_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@10U__false_type@1@@Z
+?__uninitialized_copy_copy@_STL@@YA?AU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@U?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Const_traits@UAttachedObject_Impl@comphelper@@@_STL@@@1@0U21@11U__false_type@1@@Z
+?deallocate@?$_STLP_alloc_proxy@IUAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAEXPAUAttachedObject_Impl@comphelper@@I@Z
+?deallocate@?$_STLP_alloc_proxy@PAPAUAttachedObject_Impl@comphelper@@PAU12@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QAEXPAPAUAttachedObject_Impl@comphelper@@I@Z
+?insert@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@IAEXU?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Nonconst_traits@UAttachedObject_Impl@comphelper@@@_STL@@@2@U?$_Deque_iterator@UAttachedObject_Impl@comphelper@@U?$_Const_traits@UAttachedObject_Impl@comphelper@@@_STL@@@2@1ABUforward_iterator_tag@2@@Z
+??1?$_STLP_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@_STL@@@_STL@@QAE@XZ
+??1?$_Vector_base@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@_STL@@@_STL@@QAE@XZ
+?_M_find@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@ABEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@ABVOUString@rtl@@@Z
+?_M_insert_overflow@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@_STL@@@_STL@@IAEXPAPAXABQAXABU__true_type@2@I_N@Z
+?__copy_aux@_STL@@YAPAPAXPAPAX00ABU__true_type@1@@Z
+?__copy_trivial_backward@_STL@@YAPAXPBX0PAX@Z
+?__lower_bound@_STL@@YAPBIPBI0ABIU?$less@I@1@PAH@Z
+?deallocate@?$_STLP_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@@_STL@@QAEXPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@2@I@Z
+?uninitialized_fill_n@_STL@@YAPAPAXPAPAXIABQAX@Z
+?_M_insert@?$_Rb_tree@EU?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBEPAUSlaveData@comphelper@@@2@0@Z
+?_M_lower_bound@?$_Rb_tree@EU?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@ABE@Z
+?deallocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@_STL@@@_STL@@QBEXPAU?$_Rb_tree_node@U?$pair@$$CBEPAUSlaveData@comphelper@@@_STL@@@2@I@Z
+??1?$_STLP_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@_STL@@@_STL@@QAE@XZ
+??1?$_Vector_base@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@_STL@@@_STL@@QAE@XZ
+?_M_find@?$hashtable@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@UeqFunc@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@_STL@@ABEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@ABVOUString@rtl@@@Z
+?_M_insert_overflow@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@_STL@@@_STL@@IAEXPAPAXABQAXABU__true_type@2@I_N@Z
+?deallocate@?$_STLP_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@@_STL@@QAEXPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@2@I@Z
+?_M_find@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@ABVOUString@rtl@@@Z
+?_M_insert@?$_Rb_tree@VOUString@rtl@@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@UUStringLess@comphelper@@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@4@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@2@0@Z
+?__distance@_STL@@YAHABU?$_Rb_tree_iterator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@1@0ABUinput_iterator_tag@1@@Z
+?deallocate@?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@_STL@@U12@V?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@@_STL@@QAEXPAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@I@Z
+?deallocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@_STL@@@_STL@@QBEXPAU?$_Rb_tree_node@U?$pair@$$CBVOUString@rtl@@PAUPropertyMapEntry@comphelper@@@_STL@@@2@I@Z
+??0?$_STLP_alloc_proxy@PAV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@V12345@V?$allocator@V?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE@ABV?$allocator@V?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@@1@PAV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@@Z
+??1?$_STLP_alloc_proxy@PAV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@V12345@V?$allocator@V?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE@XZ
+?_M_insert_overflow@?$vector@V?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@IAEXPAV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@ABV34567@ABU__false_type@2@I_N@Z
+?__uninitialized_copy@_STL@@YAPAV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@PAV23456@00ABU__false_type@1@@Z
+?__uninitialized_fill_n@_STL@@YAPAV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@PAV23456@IABV23456@ABU__false_type@1@@Z
+??1?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@_STL@@U12@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@QAE@XZ
+?_M_find@?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@ABJ@Z
+?_M_insert@?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@2@0@Z
+?_M_lower_bound@?$_Rb_tree@JU?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@U?$_Select1st@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@ABJ@Z
+?deallocate@?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@_STL@@U12@V?$allocator@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@@_STL@@QAEXPAU?$_Rb_tree_node@U?$pair@$$CBJUOPropertyAccessor@internal@comphelper@@@_STL@@@2@I@Z
+??1?$_STLP_alloc_proxy@PAUPropertyDescription@OPropertyContainer@comphelper@@U123@V?$allocator@UPropertyDescription@OPropertyContainer@comphelper@@@_STL@@@_STL@@QAE@XZ
+??1?$_STLP_alloc_proxy@PAVAny@uno@star@sun@com@@V12345@V?$allocator@VAny@uno@star@sun@com@@@_STL@@@_STL@@QAE@XZ
+?_M_insert_overflow@?$vector@UPropertyDescription@OPropertyContainer@comphelper@@V?$allocator@UPropertyDescription@OPropertyContainer@comphelper@@@_STL@@@_STL@@IAEXPAUPropertyDescription@OPropertyContainer@comphelper@@ABU345@ABU__false_type@2@I_N@Z
+?_M_insert_overflow@?$vector@VAny@uno@star@sun@com@@V?$allocator@VAny@uno@star@sun@com@@@_STL@@@_STL@@IAEXPAVAny@uno@star@sun@com@@ABV34567@ABU__false_type@2@I_N@Z
+?__copy@_STL@@YAPAUPropertyDescription@OPropertyContainer@comphelper@@PAU234@00ABUrandom_access_iterator_tag@1@PAH@Z
+?__copy_aux@_STL@@YAPAUProperty@beans@star@sun@com@@PBU23456@0PAU23456@ABU__true_type@1@@Z
+?__uninitialized_copy@_STL@@YAPAUPropertyDescription@OPropertyContainer@comphelper@@PAU234@00ABU__false_type@1@@Z
+?__uninitialized_copy@_STL@@YAPAVAny@uno@star@sun@com@@PAV23456@00ABU__false_type@1@@Z
+?__uninitialized_fill_n@_STL@@YAPAUPropertyDescription@OPropertyContainer@comphelper@@PAU234@IABU234@ABU__false_type@1@@Z
+?__uninitialized_fill_n@_STL@@YAPAVAny@uno@star@sun@com@@PAV23456@IABV23456@ABU__false_type@1@@Z
+??_C@_0DF@DHBG@o?3?2SRC651?2wntmsci7?2inc?2com?1sun?1s@
+?__default_constructed@_STL@@YA?AVAny@uno@star@sun@com@@PAV23456@@Z
+?__default_constructed_aux@_STL@@YA?AVAny@uno@star@sun@com@@PAV23456@ABU__false_type@1@@Z
+?__default_constructed@_STL@@YA?AV?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@PAV23456@@Z
+?__default_constructed_aux@_STL@@YA?AV?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@PAV23456@ABU__false_type@1@@Z
+?get_allocator@?$deque@UAttachedObject_Impl@comphelper@@V?$allocator@UAttachedObject_Impl@comphelper@@@_STL@@@_STL@@QBE?AV?$allocator@UAttachedObject_Impl@comphelper@@@2@XZ
+??0?$_STLP_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyData@comphelper@@@_STL@@@_STL@@@_STL@@QAE@ABV01@@Z
+??0?$_STLP_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBVOUString@rtl@@PAUPropertyInfo@comphelper@@@_STL@@@_STL@@@_STL@@QAE@ABV01@@Z
+??_C@_0DF@CLGF@o?3?2SRC652?2wntmsci7?2inc?2com?1sun?1s@
+??_C@_0DF@CALE@o?3?2SRC653?2wntmsci7?2inc?2com?1sun?1s@
+??_C@_0DF@BDIC@o?3?2SRC654?2wntmsci7?2inc?2com?1sun?1s@
+?getNumberFormatProperty@comphelper@@YA?AVAny@uno@star@sun@com@@ABV?$Reference@VXNumberFormatter@util@star@sun@com@@@3456@JABVOUString@rtl@@@Z
+?set@?$Reference@VXNumberFormats@util@star@sun@com@@@uno@star@sun@com@@QAAEPAVXNumberFormats@util@345@@Z
+?set@?$Reference@VXNumberFormatsSupplier@util@star@sun@com@@@uno@star@sun@com@@QAAEPAVXNumberFormatsSupplier@util@345@@Z
+??_C@_0DF@BIFD@o?3?2SRC655?2wntmsci7?2inc?2com?1sun?1s@
+??0OAccessibleImplementationAccess@comphelper@@IAE@XZ
+??1?$Reference@VXUnoTunnel@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1OAccImpl_Impl@comphelper@@QAE@XZ
+??1OAccessibleImplementationAccess@comphelper@@MAE@XZ
+??_7OAccessibleImplementationAccess@comphelper@@6BXTypeProvider@lang@star@sun@com@@@
+??_7OAccessibleImplementationAccess@comphelper@@6BXUnoTunnel@lang@star@sun@com@@@
+??_C@_0BN@FDFM@com?4sun?4star?4lang?4XUnoTunnel?$AA@
+??_GOAccessibleImplementationAccess@comphelper@@MAEPAXI@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXUnoTunnel@lang@star@sun@com@@@2345@@Z
+?getImplementation@OAccessibleImplementationAccess@comphelper@@SAPAV12@ABV?$Reference@VXAccessibleContext@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@@Z
+?getImplementationId@?$ImplHelper1@VXUnoTunnel@lang@star@sun@com@@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getSomething@OAccessibleImplementationAccess@comphelper@@MAA_JABV?$Sequence@C@uno@star@sun@com@@@Z
+?getTypes@?$ImplHelper1@VXUnoTunnel@lang@star@sun@com@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?getUnoTunnelImplementationId@OAccessibleImplementationAccess@comphelper@@CAABV?$Sequence@C@uno@star@sun@com@@XZ
+?implGetAccessibleParent@OAccessibleImplementationAccess@comphelper@@IBE?AV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@XZ
+?queryInterface@?$ImplHelper1@VXUnoTunnel@lang@star@sun@com@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$ImplHelper1@VXUnoTunnel@lang@star@sun@com@@@cppu@@W3AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?s_cd@?$ImplHelper1@VXUnoTunnel@lang@star@sun@com@@@cppu@@0Uclass_data1@2@A
+?s_pType_com_sun_star_lang_XUnoTunnel@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXUnoTunnel@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?setAccessibleParent@OAccessibleImplementationAccess@comphelper@@IAEXABV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@@Z
+?setAccessibleParent@OAccessibleImplementationAccess@comphelper@@SAEABV?$Reference@VXAccessibleContext@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@ABV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@4567@@Z
+?setForeignControlledState@OAccessibleImplementationAccess@comphelper@@SAEABV?$Reference@VXAccessibleContext@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@FE@Z
+?setStateBit@OAccessibleImplementationAccess@comphelper@@IAEXFE@Z
+?implGetForeignControlledStates@OAccessibleImplementationAccess@comphelper@@IBE_JXZ
+??_C@_0DF@ECA@o?3?2SRC656?2wntmsci7?2inc?2com?1sun?1s@
+??0OAccessibleComponentHelper@comphelper@@IAE@XZ
+??0OAccessibleExtendedComponentHelper@comphelper@@IAE@XZ
+??0OCommonAccessibleComponent@comphelper@@IAE@XZ
+??1?$ClearableGuard@VMutex@osl@@@osl@@QAE@XZ
+??1?$Reference@VXAccessibleComponent@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXAccessibleContext@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ
+??1OAccessibleComponentHelper@comphelper@@UAE@XZ
+??1OAccessibleExtendedComponentHelper@comphelper@@UAE@XZ
+??1OCommonAccessibleComponent@comphelper@@UAE@XZ
+??1OContextEntryGuard@comphelper@@QAE@XZ
+??_7OAccessibleComponentHelper@comphelper@@6BOWeakObject@cppu@@@
+??_7OAccessibleComponentHelper@comphelper@@6BWeakAggComponentImplHelperBase@cppu@@@
+??_7OAccessibleComponentHelper@comphelper@@6BXAccessibleComponent@accessibility@star@sun@com@drafts@@@
+??_7OAccessibleComponentHelper@comphelper@@6BXAccessibleContext@accessibility@star@sun@com@drafts@@@
+??_7OAccessibleComponentHelper@comphelper@@6BXAccessibleEventBroadcaster@accessibility@star@sun@com@drafts@@@
+??_7OAccessibleComponentHelper@comphelper@@6BXAggregation@uno@star@sun@com@@@
+??_7OAccessibleComponentHelper@comphelper@@6BXTypeProvider@lang@star@sun@com@@?$ImplHelper1@VXAccessibleComponent@accessibility@star@sun@com@drafts@@@cppu@@@
+??_7OAccessibleComponentHelper@comphelper@@6BXTypeProvider@lang@star@sun@com@@OCommonAccessibleComponent@1@@
+??_7OAccessibleExtendedComponentHelper@comphelper@@6BOWeakObject@cppu@@@
+??_7OAccessibleExtendedComponentHelper@comphelper@@6BWeakAggComponentImplHelperBase@cppu@@@
+??_7OAccessibleExtendedComponentHelper@comphelper@@6BXAccessibleContext@accessibility@star@sun@com@drafts@@@
+??_7OAccessibleExtendedComponentHelper@comphelper@@6BXAccessibleEventBroadcaster@accessibility@star@sun@com@drafts@@@
+??_7OAccessibleExtendedComponentHelper@comphelper@@6BXAccessibleExtendedComponent@accessibility@star@sun@com@drafts@@@
+??_7OAccessibleExtendedComponentHelper@comphelper@@6BXAggregation@uno@star@sun@com@@@
+??_7OAccessibleExtendedComponentHelper@comphelper@@6BXTypeProvider@lang@star@sun@com@@?$ImplHelper1@VXAccessibleExtendedComponent@accessibility@star@sun@com@drafts@@@cppu@@@
+??_7OAccessibleExtendedComponentHelper@comphelper@@6BXTypeProvider@lang@star@sun@com@@OCommonAccessibleComponent@1@@
+??_7OCommonAccessibleComponent@comphelper@@6BOWeakObject@cppu@@@
+??_7OCommonAccessibleComponent@comphelper@@6BWeakAggComponentImplHelperBase@cppu@@@
+??_7OCommonAccessibleComponent@comphelper@@6BXAccessibleContext@accessibility@star@sun@com@drafts@@@
+??_7OCommonAccessibleComponent@comphelper@@6BXAccessibleEventBroadcaster@accessibility@star@sun@com@drafts@@@
+??_7OCommonAccessibleComponent@comphelper@@6BXAggregation@uno@star@sun@com@@@
+??_7OCommonAccessibleComponent@comphelper@@6BXTypeProvider@lang@star@sun@com@@@
+??_C@_0DF@PKAL@drafts?4com?4sun?4star?4accessibilit@
+??_C@_0DH@ICAO@drafts?4com?4sun?4star?4accessibilit@
+??_C@_0DO@CLMG@drafts?4com?4sun?4star?4accessibilit@
+??_C@_0DP@LKGL@drafts?4com?4sun?4star?4accessibilit@
+??_GOAccessibleComponentHelper@comphelper@@UAEPAXI@Z
+??_GOAccessibleExtendedComponentHelper@comphelper@@UAEPAXI@Z
+??_GOCommonAccessibleComponent@comphelper@@UAEPAXI@Z
+?acquire@?$WeakAggComponentImplHelper2@VXAccessibleContext@accessibility@star@sun@com@drafts@@VXAccessibleEventBroadcaster@23456@@cppu@@UAAXXZ
+?acquire@?$WeakAggComponentImplHelper2@VXAccessibleContext@accessibility@star@sun@com@drafts@@VXAccessibleEventBroadcaster@23456@@cppu@@WBA@AAXXZ
+?acquire@?$WeakAggComponentImplHelper2@VXAccessibleContext@accessibility@star@sun@com@drafts@@VXAccessibleEventBroadcaster@23456@@cppu@@WBI@AAXXZ
+?acquire@?$WeakAggComponentImplHelper2@VXAccessibleContext@accessibility@star@sun@com@drafts@@VXAccessibleEventBroadcaster@23456@@cppu@@WCM@AAXXZ
+?acquire@?$WeakAggComponentImplHelper2@VXAccessibleContext@accessibility@star@sun@com@drafts@@VXAccessibleEventBroadcaster@23456@@cppu@@WDA@AAXXZ
+?acquire@?$WeakAggComponentImplHelper2@VXAccessibleContext@accessibility@star@sun@com@drafts@@VXAccessibleEventBroadcaster@23456@@cppu@@WDE@AAXXZ
+?acquire@OAccessibleComponentHelper@comphelper@@UAAXXZ
+?acquire@OAccessibleComponentHelper@comphelper@@WBA@AAXXZ
+?acquire@OAccessibleComponentHelper@comphelper@@WBI@AAXXZ
+?acquire@OAccessibleComponentHelper@comphelper@@WCM@AAXXZ
+?acquire@OAccessibleComponentHelper@comphelper@@WDA@AAXXZ
+?acquire@OAccessibleComponentHelper@comphelper@@WDE@AAXXZ
+?acquire@OAccessibleComponentHelper@comphelper@@WEA@AAXXZ
+?acquire@OAccessibleComponentHelper@comphelper@@WEE@AAXXZ
+?acquire@OAccessibleExtendedComponentHelper@comphelper@@UAAXXZ
+?acquire@OAccessibleExtendedComponentHelper@comphelper@@WBA@AAXXZ
+?acquire@OAccessibleExtendedComponentHelper@comphelper@@WBI@AAXXZ
+?acquire@OAccessibleExtendedComponentHelper@comphelper@@WCM@AAXXZ
+?acquire@OAccessibleExtendedComponentHelper@comphelper@@WDA@AAXXZ
+?acquire@OAccessibleExtendedComponentHelper@comphelper@@WDE@AAXXZ
+?acquire@OAccessibleExtendedComponentHelper@comphelper@@WEA@AAXXZ
+?acquire@OAccessibleExtendedComponentHelper@comphelper@@WEE@AAXXZ
+?concatSequences@comphelper@@YA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@ABV23456@0@Z
+?contains@OAccessibleComponentHelper@comphelper@@UAAEABUPoint@awt@star@sun@com@@@Z
+?contains@OAccessibleExtendedComponentHelper@comphelper@@UAAEABUPoint@awt@star@sun@com@@@Z
+?contains@OCommonAccessibleComponent@comphelper@@IAAEABUPoint@awt@star@sun@com@@@Z
+?getBounds@OAccessibleComponentHelper@comphelper@@UAA?AURectangle@awt@star@sun@com@@XZ
+?getBounds@OAccessibleExtendedComponentHelper@comphelper@@UAA?AURectangle@awt@star@sun@com@@XZ
+?getBounds@OCommonAccessibleComponent@comphelper@@IAA?AURectangle@awt@star@sun@com@@XZ
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessibleComponent@accessibility@star@sun@com@drafts@@@2345@@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessibleContext@accessibility@star@sun@com@drafts@@@2345@@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessibleEventBroadcaster@accessibility@star@sun@com@drafts@@@2345@@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessibleExtendedComponent@accessibility@star@sun@com@drafts@@@2345@@Z
+?getImplementationId@?$WeakAggComponentImplHelper2@VXAccessibleContext@accessibility@star@sun@com@drafts@@VXAccessibleEventBroadcaster@23456@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getImplementationId@OAccessibleComponentHelper@comphelper@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getImplementationId@OAccessibleComponentHelper@comphelper@@WBE@AA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getImplementationId@OAccessibleExtendedComponentHelper@comphelper@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getImplementationId@OAccessibleExtendedComponentHelper@comphelper@@WBE@AA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getLocation@OAccessibleComponentHelper@comphelper@@UAA?AUPoint@awt@star@sun@com@@XZ
+?getLocation@OAccessibleExtendedComponentHelper@comphelper@@UAA?AUPoint@awt@star@sun@com@@XZ
+?getLocation@OCommonAccessibleComponent@comphelper@@IAA?AUPoint@awt@star@sun@com@@XZ
+?getLocationOnScreen@OAccessibleComponentHelper@comphelper@@UAA?AUPoint@awt@star@sun@com@@XZ
+?getLocationOnScreen@OAccessibleExtendedComponentHelper@comphelper@@UAA?AUPoint@awt@star@sun@com@@XZ
+?getLocationOnScreen@OCommonAccessibleComponent@comphelper@@IAA?AUPoint@awt@star@sun@com@@XZ
+?getSize@OAccessibleComponentHelper@comphelper@@UAA?AUSize@awt@star@sun@com@@XZ
+?getSize@OAccessibleExtendedComponentHelper@comphelper@@UAA?AUSize@awt@star@sun@com@@XZ
+?getSize@OCommonAccessibleComponent@comphelper@@IAA?AUSize@awt@star@sun@com@@XZ
+?getTypes@?$ImplHelper1@VXAccessibleComponent@accessibility@star@sun@com@drafts@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?getTypes@?$ImplHelper1@VXAccessibleExtendedComponent@accessibility@star@sun@com@drafts@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?getTypes@?$WeakAggComponentImplHelper2@VXAccessibleContext@accessibility@star@sun@com@drafts@@VXAccessibleEventBroadcaster@23456@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?getTypes@OAccessibleComponentHelper@comphelper@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?getTypes@OAccessibleComponentHelper@comphelper@@WBE@AA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?getTypes@OAccessibleExtendedComponentHelper@comphelper@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?getTypes@OAccessibleExtendedComponentHelper@comphelper@@WBE@AA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?queryAggregation@?$WeakAggComponentImplHelper2@VXAccessibleContext@accessibility@star@sun@com@drafts@@VXAccessibleEventBroadcaster@23456@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$ImplHelper1@VXAccessibleComponent@accessibility@star@sun@com@drafts@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$ImplHelper1@VXAccessibleExtendedComponent@accessibility@star@sun@com@drafts@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakAggComponentImplHelper2@VXAccessibleContext@accessibility@star@sun@com@drafts@@VXAccessibleEventBroadcaster@23456@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakAggComponentImplHelper2@VXAccessibleContext@accessibility@star@sun@com@drafts@@VXAccessibleEventBroadcaster@23456@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakAggComponentImplHelper2@VXAccessibleContext@accessibility@star@sun@com@drafts@@VXAccessibleEventBroadcaster@23456@@cppu@@WBI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakAggComponentImplHelper2@VXAccessibleContext@accessibility@star@sun@com@drafts@@VXAccessibleEventBroadcaster@23456@@cppu@@WCM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakAggComponentImplHelper2@VXAccessibleContext@accessibility@star@sun@com@drafts@@VXAccessibleEventBroadcaster@23456@@cppu@@WDA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakAggComponentImplHelper2@VXAccessibleContext@accessibility@star@sun@com@drafts@@VXAccessibleEventBroadcaster@23456@@cppu@@WDE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleComponentHelper@comphelper@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleComponentHelper@comphelper@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleComponentHelper@comphelper@@WBI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleComponentHelper@comphelper@@WCM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleComponentHelper@comphelper@@WDA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleComponentHelper@comphelper@@WDE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleComponentHelper@comphelper@@WEA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleComponentHelper@comphelper@@WEE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleExtendedComponentHelper@comphelper@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleExtendedComponentHelper@comphelper@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleExtendedComponentHelper@comphelper@@WBI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleExtendedComponentHelper@comphelper@@WCM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleExtendedComponentHelper@comphelper@@WDA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleExtendedComponentHelper@comphelper@@WDE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleExtendedComponentHelper@comphelper@@WEA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleExtendedComponentHelper@comphelper@@WEE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@?$WeakAggComponentImplHelper2@VXAccessibleContext@accessibility@star@sun@com@drafts@@VXAccessibleEventBroadcaster@23456@@cppu@@UAAXXZ
+?release@?$WeakAggComponentImplHelper2@VXAccessibleContext@accessibility@star@sun@com@drafts@@VXAccessibleEventBroadcaster@23456@@cppu@@WBA@AAXXZ
+?release@?$WeakAggComponentImplHelper2@VXAccessibleContext@accessibility@star@sun@com@drafts@@VXAccessibleEventBroadcaster@23456@@cppu@@WBI@AAXXZ
+?release@?$WeakAggComponentImplHelper2@VXAccessibleContext@accessibility@star@sun@com@drafts@@VXAccessibleEventBroadcaster@23456@@cppu@@WCM@AAXXZ
+?release@?$WeakAggComponentImplHelper2@VXAccessibleContext@accessibility@star@sun@com@drafts@@VXAccessibleEventBroadcaster@23456@@cppu@@WDA@AAXXZ
+?release@?$WeakAggComponentImplHelper2@VXAccessibleContext@accessibility@star@sun@com@drafts@@VXAccessibleEventBroadcaster@23456@@cppu@@WDE@AAXXZ
+?release@OAccessibleComponentHelper@comphelper@@UAAXXZ
+?release@OAccessibleComponentHelper@comphelper@@WBA@AAXXZ
+?release@OAccessibleComponentHelper@comphelper@@WBI@AAXXZ
+?release@OAccessibleComponentHelper@comphelper@@WCM@AAXXZ
+?release@OAccessibleComponentHelper@comphelper@@WDA@AAXXZ
+?release@OAccessibleComponentHelper@comphelper@@WDE@AAXXZ
+?release@OAccessibleComponentHelper@comphelper@@WEA@AAXXZ
+?release@OAccessibleComponentHelper@comphelper@@WEE@AAXXZ
+?release@OAccessibleExtendedComponentHelper@comphelper@@UAAXXZ
+?release@OAccessibleExtendedComponentHelper@comphelper@@WBA@AAXXZ
+?release@OAccessibleExtendedComponentHelper@comphelper@@WBI@AAXXZ
+?release@OAccessibleExtendedComponentHelper@comphelper@@WCM@AAXXZ
+?release@OAccessibleExtendedComponentHelper@comphelper@@WDA@AAXXZ
+?release@OAccessibleExtendedComponentHelper@comphelper@@WDE@AAXXZ
+?release@OAccessibleExtendedComponentHelper@comphelper@@WEA@AAXXZ
+?release@OAccessibleExtendedComponentHelper@comphelper@@WEE@AAXXZ
+?s_cd@?$ImplHelper1@VXAccessibleComponent@accessibility@star@sun@com@drafts@@@cppu@@0Uclass_data1@2@A
+?s_cd@?$ImplHelper1@VXAccessibleExtendedComponent@accessibility@star@sun@com@drafts@@@cppu@@0Uclass_data1@2@A
+?s_cd@?$WeakAggComponentImplHelper2@VXAccessibleContext@accessibility@star@sun@com@drafts@@VXAccessibleEventBroadcaster@23456@@cppu@@0Uclass_data2@2@A
+?s_pType_drafts_com_sun_star_accessibility_XAccessibleComponent@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessibleComponent@accessibility@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_drafts_com_sun_star_accessibility_XAccessibleContext@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessibleContext@accessibility@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_drafts_com_sun_star_accessibility_XAccessibleEventBroadcaster@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessibleEventBroadcaster@accessibility@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_drafts_com_sun_star_accessibility_XAccessibleExtendedComponent@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessibleExtendedComponent@accessibility@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+??0DisposedException@lang@star@sun@com@@QAE@ABV01234@@Z
+??0DisposedException@lang@star@sun@com@@QAE@XZ
+??0EventObject@lang@star@sun@com@@QAE@XZ
+??0IllegalAccessibleComponentStateException@accessibility@star@sun@com@drafts@@QAE@ABV012345@@Z
+??0OAccessibleContextHelper@comphelper@@IAE@XZ
+??0RuntimeException@uno@star@sun@com@@QAE@ABV01234@@Z
+??1?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ
+??1?$Sequence@V?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$WeakAggComponentImplHelper2@VXAccessibleContext@accessibility@star@sun@com@drafts@@VXAccessibleEventBroadcaster@23456@@cppu@@UAE@XZ
+??1AccessibleEventObject@accessibility@star@sun@com@drafts@@QAE@XZ
+??1DisposedException@lang@star@sun@com@@QAE@XZ
+??1EventObject@lang@star@sun@com@@QAE@XZ
+??1IllegalAccessibleComponentStateException@accessibility@star@sun@com@drafts@@QAE@XZ
+??1Locale@lang@star@sun@com@@QAE@XZ
+??1OAccessibleContextHelper@comphelper@@MAE@XZ
+??1OBaseMutex@comphelper@@QAE@XZ
+??B?$WeakReference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QBA?AV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@1234@XZ
+??_7OAccessibleContextHelper@comphelper@@6BOWeakObject@cppu@@@
+??_7OAccessibleContextHelper@comphelper@@6BWeakAggComponentImplHelperBase@cppu@@@
+??_7OAccessibleContextHelper@comphelper@@6BXAccessibleContext@accessibility@star@sun@com@drafts@@@
+??_7OAccessibleContextHelper@comphelper@@6BXAccessibleEventBroadcaster@accessibility@star@sun@com@drafts@@@
+??_7OAccessibleContextHelper@comphelper@@6BXAggregation@uno@star@sun@com@@@
+??_7OAccessibleContextHelper@comphelper@@6BXTypeProvider@lang@star@sun@com@@@
+??_C@_0CO@KKMF@drafts?4com?4sun?4star?4accessibilit@
+??_GOAccessibleContextHelper@comphelper@@MAEPAXI@Z
+??_R0?AVDisposedException@lang@star@sun@com@@@8
+??_R0?AVIllegalAccessibleComponentStateException@accessibility@star@sun@com@drafts@@@8
+?NotifyAccessibleEvent@OAccessibleContextHelper@comphelper@@IAAXFABVAny@uno@star@sun@com@@0@Z
+?addEventListener@OAccessibleContextHelper@comphelper@@UAAXABV?$Reference@VXAccessibleEventListener@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@@Z
+?disposing@OAccessibleContextHelper@comphelper@@MAAXXZ
+?ensureAlive@OAccessibleContextHelper@comphelper@@IBEXXZ
+?ensureDisposed@OAccessibleContextHelper@comphelper@@IAEXXZ
+?getAccessibleCreator@OAccessibleContextHelper@comphelper@@IBE?AV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@XZ
+?getAccessibleIndexInParent@OAccessibleContextHelper@comphelper@@UAAJXZ
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@V?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@@2345@@Z
+?getCreator@OContextHelper_Impl@comphelper@@QBE?AV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@XZ
+?getListenerContainer@OContextHelper_Impl@comphelper@@QAEPAVOInterfaceContainerHelper@cppu@@E@Z
+?getLocale@OAccessibleContextHelper@comphelper@@UAA?AULocale@lang@star@sun@com@@XZ
+?implGetParentContext@OAccessibleContextHelper@comphelper@@IAE?AV?$Reference@VXAccessibleContext@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@XZ
+?isAlive@OAccessibleContextHelper@comphelper@@IBEEXZ
+?lateInit@OAccessibleContextHelper@comphelper@@IAEXABV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@@Z
+?query@?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@SA?AV12345@ABVBaseReference@2345@@Z
+?removeEventListener@OAccessibleContextHelper@comphelper@@UAAXABV?$Reference@VXAccessibleEventListener@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@@Z
+?s_pType@?$Sequence@V?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+?s_pType_drafts_com_sun_star_accessibility_XAccessible@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?setCreator@OContextHelper_Impl@comphelper@@QAEXABV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@@Z
+_TI2?AVIllegalAccessibleComponentStateException@accessibility@star@sun@com@drafts@@
+_TI3?AVDisposedException@lang@star@sun@com@@
+?implGetForeignControlledParent@OAccessibleImplementationAccess@comphelper@@IBE?AV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@XZ
+?setAccessibleParent@OAccessibleImplementationAccess@comphelper@@MAEXABV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@@Z
+?setStateBit@OAccessibleImplementationAccess@comphelper@@MAEXFE@Z
+??0OAccessibleSelectionHelper@comphelper@@IAE@XZ
+??0OCommonAccessibleSelection@comphelper@@IAE@XZ
+??1OAccessibleSelectionHelper@comphelper@@UAE@XZ
+??_7OAccessibleSelectionHelper@comphelper@@6B@
+??_7OAccessibleSelectionHelper@comphelper@@6BOWeakObject@cppu@@@
+??_7OAccessibleSelectionHelper@comphelper@@6BWeakAggComponentImplHelperBase@cppu@@@
+??_7OAccessibleSelectionHelper@comphelper@@6BXAccessibleComponent@accessibility@star@sun@com@drafts@@@
+??_7OAccessibleSelectionHelper@comphelper@@6BXAccessibleContext@accessibility@star@sun@com@drafts@@@
+??_7OAccessibleSelectionHelper@comphelper@@6BXAccessibleEventBroadcaster@accessibility@star@sun@com@drafts@@@
+??_7OAccessibleSelectionHelper@comphelper@@6BXAccessibleSelection@accessibility@star@sun@com@drafts@@@
+??_7OAccessibleSelectionHelper@comphelper@@6BXAggregation@uno@star@sun@com@@@
+??_7OAccessibleSelectionHelper@comphelper@@6BXTypeProvider@lang@star@sun@com@@?$ImplHelper1@VXAccessibleComponent@accessibility@star@sun@com@drafts@@@cppu@@@
+??_7OAccessibleSelectionHelper@comphelper@@6BXTypeProvider@lang@star@sun@com@@@
+??_7OAccessibleSelectionHelper@comphelper@@6BXTypeProvider@lang@star@sun@com@@OCommonAccessibleComponent@1@@
+??_7OCommonAccessibleSelection@comphelper@@6B@
+??_C@_0DH@BCBL@drafts?4com?4sun?4star?4accessibilit@
+??_GOAccessibleSelectionHelper@comphelper@@UAEPAXI@Z
+?acquire@OAccessibleSelectionHelper@comphelper@@UAAXXZ
+?acquire@OAccessibleSelectionHelper@comphelper@@WBA@AAXXZ
+?acquire@OAccessibleSelectionHelper@comphelper@@WBI@AAXXZ
+?acquire@OAccessibleSelectionHelper@comphelper@@WCM@AAXXZ
+?acquire@OAccessibleSelectionHelper@comphelper@@WDA@AAXXZ
+?acquire@OAccessibleSelectionHelper@comphelper@@WDE@AAXXZ
+?acquire@OAccessibleSelectionHelper@comphelper@@WEA@AAXXZ
+?acquire@OAccessibleSelectionHelper@comphelper@@WEE@AAXXZ
+?acquire@OAccessibleSelectionHelper@comphelper@@WEM@AAXXZ
+?acquire@OAccessibleSelectionHelper@comphelper@@WFA@AAXXZ
+?clearAccessibleSelection@OAccessibleSelectionHelper@comphelper@@UAAXXZ
+?clearAccessibleSelection@OCommonAccessibleSelection@comphelper@@IAAXXZ
+?deselectSelectedAccessibleChild@OAccessibleSelectionHelper@comphelper@@UAAXJ@Z
+?deselectSelectedAccessibleChild@OCommonAccessibleSelection@comphelper@@IAAXJ@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessibleSelection@accessibility@star@sun@com@drafts@@@2345@@Z
+?getImplementationId@OAccessibleSelectionHelper@comphelper@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getImplementationId@OAccessibleSelectionHelper@comphelper@@WBE@AA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getImplementationId@OAccessibleSelectionHelper@comphelper@@WCA@AA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getSelectedAccessibleChild@OAccessibleSelectionHelper@comphelper@@UAA?AV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@J@Z
+?getSelectedAccessibleChild@OCommonAccessibleSelection@comphelper@@IAA?AV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@J@Z
+?getSelectedAccessibleChildCount@OAccessibleSelectionHelper@comphelper@@UAAJXZ
+?getSelectedAccessibleChildCount@OCommonAccessibleSelection@comphelper@@IAAJXZ
+?getTypes@?$ImplHelper1@VXAccessibleSelection@accessibility@star@sun@com@drafts@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?getTypes@OAccessibleSelectionHelper@comphelper@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?getTypes@OAccessibleSelectionHelper@comphelper@@WBE@AA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?getTypes@OAccessibleSelectionHelper@comphelper@@WCA@AA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?implGetAccessibleContext@OAccessibleSelectionHelper@comphelper@@MAE?AV?$Reference@VXAccessibleContext@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@XZ
+?isAccessibleChildSelected@OAccessibleSelectionHelper@comphelper@@UAAEJ@Z
+?isAccessibleChildSelected@OCommonAccessibleSelection@comphelper@@IAAEJ@Z
+?queryInterface@?$ImplHelper1@VXAccessibleSelection@accessibility@star@sun@com@drafts@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleSelectionHelper@comphelper@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleSelectionHelper@comphelper@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleSelectionHelper@comphelper@@WBI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleSelectionHelper@comphelper@@WCM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleSelectionHelper@comphelper@@WDA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleSelectionHelper@comphelper@@WDE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleSelectionHelper@comphelper@@WEA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleSelectionHelper@comphelper@@WEE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleSelectionHelper@comphelper@@WEM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleSelectionHelper@comphelper@@WFA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@OAccessibleSelectionHelper@comphelper@@UAAXXZ
+?release@OAccessibleSelectionHelper@comphelper@@WBA@AAXXZ
+?release@OAccessibleSelectionHelper@comphelper@@WBI@AAXXZ
+?release@OAccessibleSelectionHelper@comphelper@@WCM@AAXXZ
+?release@OAccessibleSelectionHelper@comphelper@@WDA@AAXXZ
+?release@OAccessibleSelectionHelper@comphelper@@WDE@AAXXZ
+?release@OAccessibleSelectionHelper@comphelper@@WEA@AAXXZ
+?release@OAccessibleSelectionHelper@comphelper@@WEE@AAXXZ
+?release@OAccessibleSelectionHelper@comphelper@@WEM@AAXXZ
+?release@OAccessibleSelectionHelper@comphelper@@WFA@AAXXZ
+?s_cd@?$ImplHelper1@VXAccessibleSelection@accessibility@star@sun@com@drafts@@@cppu@@0Uclass_data1@2@A
+?s_pType_drafts_com_sun_star_accessibility_XAccessibleSelection@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessibleSelection@accessibility@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?selectAccessibleChild@OAccessibleSelectionHelper@comphelper@@UAAXJ@Z
+?selectAccessibleChild@OCommonAccessibleSelection@comphelper@@IAAXJ@Z
+?selectAllAccessible@OAccessibleSelectionHelper@comphelper@@UAAXXZ
+?selectAllAccessible@OCommonAccessibleSelection@comphelper@@IAAXXZ
+?createProcessComponent@comphelper@@YA?AV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@@Z
+?createProcessComponentWithArguments@comphelper@@YA?AV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@ABV?$Sequence@VAny@uno@star@sun@com@@@3456@@Z
+??_C@_0DF@PPB@o?3?2SRC657?2wntmsci7?2inc?2com?1sun?1s@
+??0OAccessibleComponentHelper@comphelper@@IAE@PAVIMutex@1@@Z
+??0OAccessibleExtendedComponentHelper@comphelper@@IAE@PAVIMutex@1@@Z
+??0OCommonAccessibleComponent@comphelper@@IAE@PAVIMutex@1@@Z
+??0OContextEntryGuard@comphelper@@QAE@PAVOAccessibleContextHelper@1@@Z
+??1OCommonAccessibleComponent@comphelper@@MAE@XZ
+??1OExternalLockGuard@comphelper@@QAE@XZ
+??1OMutexGuard@comphelper@@QAE@XZ
+??_GOCommonAccessibleComponent@comphelper@@MAEPAXI@Z
+??0OAccessibleContextHelper@comphelper@@IAE@PAVIMutex@1@@Z
+?forgetExternalLock@OAccessibleContextHelper@comphelper@@IAEXXZ
+?getExternalLock@OAccessibleContextHelper@comphelper@@IAEPAVIMutex@2@XZ
+??_C@_0DF@GCEN@o?3?2SRC658?2wntmsci7?2inc?2com?1sun?1s@
+??_C@_0DF@MFLN@o?3?2SRX643?2wntmsci7?2inc?2com?1sun?1s@
+??_C@_0DF@GJJM@o?3?2SRC659?2wntmsci7?2inc?2com?1sun?1s@
+??_C@_0DF@HDNL@o?3?2SRC660?2wntmsci7?2inc?2com?1sun?1s@
+??0OEventListenerHelper@comphelper@@QAE@ABV?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@@Z
+??1OEventListenerHelper@comphelper@@UAE@XZ
+??B?$WeakReference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@QBA?AV?$Reference@VXEventListener@lang@star@sun@com@@@1234@XZ
+??_7OEventListenerHelper@comphelper@@6BOWeakObject@cppu@@@
+??_7OEventListenerHelper@comphelper@@6BXEventListener@lang@star@sun@com@@@
+??_7OEventListenerHelper@comphelper@@6BXTypeProvider@lang@star@sun@com@@@
+??_GOEventListenerHelper@comphelper@@UAEPAXI@Z
+?acquire@?$WeakImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@UAAXXZ
+?acquire@?$WeakImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@WBA@AAXXZ
+?acquire@?$WeakImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@WBE@AAXXZ
+?disposing@OEventListenerHelper@comphelper@@UAAXABUEventObject@lang@star@sun@com@@@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXEventListener@lang@star@sun@com@@@2345@@Z
+?getImplementationId@?$WeakImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getTypes@?$WeakImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?query@?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@SA?AV12345@ABVBaseReference@2345@@Z
+?queryInterface@?$WeakImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@?$WeakImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@UAAXXZ
+?release@?$WeakImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@WBA@AAXXZ
+?release@?$WeakImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@WBE@AAXXZ
+?s_cd@?$WeakImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@0Uclass_data1@2@A
+??0OAccessibleTextHelper@comphelper@@IAE@PAVIMutex@1@@Z
+??0OAccessibleTextHelper@comphelper@@IAE@XZ
+??0OCommonAccessibleText@comphelper@@IAE@XZ
+??1?$Reference@VXBreakIterator@i18n@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXCharacterClassification@i18n@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1OAccessibleTextHelper@comphelper@@UAE@XZ
+??1OCommonAccessibleText@comphelper@@IAE@XZ
+??_7OAccessibleTextHelper@comphelper@@6B@
+??_7OAccessibleTextHelper@comphelper@@6BOWeakObject@cppu@@@
+??_7OAccessibleTextHelper@comphelper@@6BWeakAggComponentImplHelperBase@cppu@@@
+??_7OAccessibleTextHelper@comphelper@@6BXAccessibleContext@accessibility@star@sun@com@drafts@@@
+??_7OAccessibleTextHelper@comphelper@@6BXAccessibleEventBroadcaster@accessibility@star@sun@com@drafts@@@
+??_7OAccessibleTextHelper@comphelper@@6BXAccessibleExtendedComponent@accessibility@star@sun@com@drafts@@@
+??_7OAccessibleTextHelper@comphelper@@6BXAccessibleText@accessibility@star@sun@com@drafts@@@
+??_7OAccessibleTextHelper@comphelper@@6BXAggregation@uno@star@sun@com@@@
+??_7OAccessibleTextHelper@comphelper@@6BXTypeProvider@lang@star@sun@com@@?$ImplHelper1@VXAccessibleExtendedComponent@accessibility@star@sun@com@drafts@@@cppu@@@
+??_7OAccessibleTextHelper@comphelper@@6BXTypeProvider@lang@star@sun@com@@@
+??_7OAccessibleTextHelper@comphelper@@6BXTypeProvider@lang@star@sun@com@@OCommonAccessibleComponent@1@@
+??_7OCommonAccessibleText@comphelper@@6B@
+??_C@_0CB@GIJC@com?4sun?4star?4i18n?4XBreakIterator@
+??_C@_0CL@OPJN@com?4sun?4star?4i18n?4XCharacterClas@
+??_C@_0DC@FLOJ@drafts?4com?4sun?4star?4accessibilit@
+??_GOAccessibleTextHelper@comphelper@@UAEPAXI@Z
+?acquire@OAccessibleTextHelper@comphelper@@UAAXXZ
+?acquire@OAccessibleTextHelper@comphelper@@WBA@AAXXZ
+?acquire@OAccessibleTextHelper@comphelper@@WBI@AAXXZ
+?acquire@OAccessibleTextHelper@comphelper@@WCM@AAXXZ
+?acquire@OAccessibleTextHelper@comphelper@@WDA@AAXXZ
+?acquire@OAccessibleTextHelper@comphelper@@WDE@AAXXZ
+?acquire@OAccessibleTextHelper@comphelper@@WEA@AAXXZ
+?acquire@OAccessibleTextHelper@comphelper@@WEE@AAXXZ
+?acquire@OAccessibleTextHelper@comphelper@@WFE@AAXXZ
+?acquire@OAccessibleTextHelper@comphelper@@WFI@AAXXZ
+?getCharacter@OAccessibleTextHelper@comphelper@@UAAGJ@Z
+?getCharacter@OCommonAccessibleText@comphelper@@IAAGJ@Z
+?getCharacterCount@OAccessibleTextHelper@comphelper@@UAAJXZ
+?getCharacterCount@OCommonAccessibleText@comphelper@@IAAJXZ
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessibleText@accessibility@star@sun@com@drafts@@@2345@@Z
+?getImplementationId@OAccessibleTextHelper@comphelper@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getImplementationId@OAccessibleTextHelper@comphelper@@WBE@AA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getImplementationId@OAccessibleTextHelper@comphelper@@WCI@AA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getSelectedText@OAccessibleTextHelper@comphelper@@UAA?AVOUString@rtl@@XZ
+?getSelectedText@OCommonAccessibleText@comphelper@@IAA?AVOUString@rtl@@XZ
+?getSelectionEnd@OAccessibleTextHelper@comphelper@@UAAJXZ
+?getSelectionEnd@OCommonAccessibleText@comphelper@@IAAJXZ
+?getSelectionStart@OAccessibleTextHelper@comphelper@@UAAJXZ
+?getSelectionStart@OCommonAccessibleText@comphelper@@IAAJXZ
+?getText@OAccessibleTextHelper@comphelper@@UAA?AVOUString@rtl@@XZ
+?getText@OCommonAccessibleText@comphelper@@IAA?AVOUString@rtl@@XZ
+?getTextAtIndex@OAccessibleTextHelper@comphelper@@UAA?AVOUString@rtl@@JF@Z
+?getTextAtIndex@OCommonAccessibleText@comphelper@@IAA?AVOUString@rtl@@JF@Z
+?getTextBeforeIndex@OAccessibleTextHelper@comphelper@@UAA?AVOUString@rtl@@JF@Z
+?getTextBeforeIndex@OCommonAccessibleText@comphelper@@IAA?AVOUString@rtl@@JF@Z
+?getTextBehindIndex@OAccessibleTextHelper@comphelper@@UAA?AVOUString@rtl@@JF@Z
+?getTextBehindIndex@OCommonAccessibleText@comphelper@@IAA?AVOUString@rtl@@JF@Z
+?getTextRange@OAccessibleTextHelper@comphelper@@UAA?AVOUString@rtl@@JJ@Z
+?getTextRange@OCommonAccessibleText@comphelper@@IAA?AVOUString@rtl@@JJ@Z
+?getTypes@?$ImplHelper1@VXAccessibleText@accessibility@star@sun@com@drafts@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?getTypes@OAccessibleTextHelper@comphelper@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?getTypes@OAccessibleTextHelper@comphelper@@WBE@AA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?getTypes@OAccessibleTextHelper@comphelper@@WCI@AA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?implGetBreakIterator@OCommonAccessibleText@comphelper@@IAE?AV?$Reference@VXBreakIterator@i18n@star@sun@com@@@uno@star@sun@com@@XZ
+?implGetCharacterClassification@OCommonAccessibleText@comphelper@@IAE?AV?$Reference@VXCharacterClassification@i18n@star@sun@com@@@uno@star@sun@com@@XZ
+?implGetGlyphBoundary@OCommonAccessibleText@comphelper@@MAEXAAUBoundary@i18n@star@sun@com@@J@Z
+?implGetLineBoundary@OCommonAccessibleText@comphelper@@MAEXAAUBoundary@i18n@star@sun@com@@J@Z
+?implGetParagraphBoundary@OCommonAccessibleText@comphelper@@MAEXAAUBoundary@i18n@star@sun@com@@J@Z
+?implGetSentenceBoundary@OCommonAccessibleText@comphelper@@MAEXAAUBoundary@i18n@star@sun@com@@J@Z
+?implGetWordBoundary@OCommonAccessibleText@comphelper@@MAEEAAUBoundary@i18n@star@sun@com@@J@Z
+?implIsValidIndex@OCommonAccessibleText@comphelper@@MAEEJJ@Z
+?implIsValidRange@OCommonAccessibleText@comphelper@@MAEEJJJ@Z
+?queryInterface@?$ImplHelper1@VXAccessibleText@accessibility@star@sun@com@drafts@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleTextHelper@comphelper@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleTextHelper@comphelper@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleTextHelper@comphelper@@WBI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleTextHelper@comphelper@@WCM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleTextHelper@comphelper@@WDA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleTextHelper@comphelper@@WDE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleTextHelper@comphelper@@WEA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleTextHelper@comphelper@@WEE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleTextHelper@comphelper@@WFE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@OAccessibleTextHelper@comphelper@@WFI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@OAccessibleTextHelper@comphelper@@UAAXXZ
+?release@OAccessibleTextHelper@comphelper@@WBA@AAXXZ
+?release@OAccessibleTextHelper@comphelper@@WBI@AAXXZ
+?release@OAccessibleTextHelper@comphelper@@WCM@AAXXZ
+?release@OAccessibleTextHelper@comphelper@@WDA@AAXXZ
+?release@OAccessibleTextHelper@comphelper@@WDE@AAXXZ
+?release@OAccessibleTextHelper@comphelper@@WEA@AAXXZ
+?release@OAccessibleTextHelper@comphelper@@WEE@AAXXZ
+?release@OAccessibleTextHelper@comphelper@@WFE@AAXXZ
+?release@OAccessibleTextHelper@comphelper@@WFI@AAXXZ
+?s_cd@?$ImplHelper1@VXAccessibleText@accessibility@star@sun@com@drafts@@@cppu@@0Uclass_data1@2@A
+?s_pType_com_sun_star_i18n_XBreakIterator@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXBreakIterator@i18n@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_com_sun_star_i18n_XCharacterClassification@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXCharacterClassification@i18n@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?s_pType_drafts_com_sun_star_accessibility_XAccessibleText@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessibleText@accessibility@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+??_C@_0DF@HIAK@o?3?2SRC661?2wntmsci7?2inc?2com?1sun?1s@
+?NotifyAccessibleEvent@OAccessibleContextHelper@comphelper@@IAAXFABVAny@uno@star@sun@com@@0AAVAccessibleEventBuffer@2@@Z
+??0?$Sequence@V?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
+??0AccessibleEventBuffer@comphelper@@QAE@ABV01@@Z
+??0AccessibleEventBuffer@comphelper@@QAE@XZ
+??0AccessibleEventObject@accessibility@star@sun@com@drafts@@QAE@ABU012345@@Z
+??0EventObject@lang@star@sun@com@@QAE@ABU01234@@Z
+??1?$Reference@VXAccessibleEventListener@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ
+??1?$_STL_alloc_proxy@PAUEntry@AccessibleEventBuffer@comphelper@@U123@V?$allocator@UEntry@AccessibleEventBuffer@comphelper@@@_STL@@@_STL@@QAE@XZ
+??1?$_Vector_base@UEntry@AccessibleEventBuffer@comphelper@@V?$allocator@UEntry@AccessibleEventBuffer@comphelper@@@_STL@@@_STL@@QAE@XZ
+??1?$allocator@UEntry@AccessibleEventBuffer@comphelper@@@_STL@@QAE@XZ
+??1AccessibleEventBuffer@comphelper@@QAE@XZ
+??1Entry@AccessibleEventBuffer@comphelper@@QAE@XZ
+??4AccessibleEventBuffer@comphelper@@QAE?AV01@ABV01@@Z
+??4Entry@AccessibleEventBuffer@comphelper@@QAEAAU012@ABU012@@Z
+??_C@_0DL@KMGJ@drafts?4com?4sun?4star?4accessibilit@
+?_M_allocate_and_copy@?$vector@UEntry@AccessibleEventBuffer@comphelper@@V?$allocator@UEntry@AccessibleEventBuffer@comphelper@@@_STL@@@_STL@@IAEPAUEntry@AccessibleEventBuffer@comphelper@@IPBU345@0@Z
+?_M_insert_overflow@?$vector@UEntry@AccessibleEventBuffer@comphelper@@V?$allocator@UEntry@AccessibleEventBuffer@comphelper@@@_STL@@@_STL@@IAEXPAUEntry@AccessibleEventBuffer@comphelper@@ABU345@I@Z
+?__uninitialized_copy_aux@_STL@@YAPAUEntry@AccessibleEventBuffer@comphelper@@PAU234@00U__false_type@@@Z
+?__uninitialized_copy_aux@_STL@@YAPAUEntry@AccessibleEventBuffer@comphelper@@PBU234@0PAU234@U__false_type@@@Z
+?__uninitialized_fill_n_aux@_STL@@YAPAUEntry@AccessibleEventBuffer@comphelper@@PAU234@IABU234@U__false_type@@@Z
+?addEvent@AccessibleEventBuffer@comphelper@@QAEXABUAccessibleEventObject@accessibility@star@sun@com@drafts@@ABV?$Sequence@V?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@@uno@567@@Z
+?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInterface@uno@star@sun@com@@@2345@@Z
+?get_allocator@?$vector@UEntry@AccessibleEventBuffer@comphelper@@V?$allocator@UEntry@AccessibleEventBuffer@comphelper@@@_STL@@@_STL@@QBE?AV?$allocator@UEntry@AccessibleEventBuffer@comphelper@@@2@XZ
+?s_pType_drafts_com_sun_star_accessibility_XAccessibleEventListener@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessibleEventListener@accessibility@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+?sendEvents@AccessibleEventBuffer@comphelper@@QBEXXZ
+??_C@_0DF@GEHJ@o?3?2SRC662?2wntmsci7?2inc?2com?1sun?1s@
+??0OAccessibleSelectionHelper@comphelper@@IAE@PAVIMutex@1@@Z
+??_C@_0DF@GPKI@o?3?2SRC663?2wntmsci7?2inc?2com?1sun?1s@
+??1OUStringBuffer@rtl@@QAE@XZ
+?append@OUStringBuffer@rtl@@QAEAAV12@PBGJ@Z
+?appendAscii@OUStringBuffer@rtl@@QAEAAV12@PBDJ@Z
+?makeStringAndClear@OUStringBuffer@rtl@@QAE?AVOUString@2@XZ
+?__query@BaseReference@uno@star@sun@com@@KAPAVXInterface@2345@PAV62345@ABVType@2345@@Z
+??_C@_0DF@FMJO@o?3?2SRC664?2wntmsci7?2inc?2com?1sun?1s@
+?iquery@BaseReference@uno@star@sun@com@@KAPAVXInterface@2345@PAV62345@ABVType@2345@@Z
+??0OWeakEventListenerAdapter@comphelper@@QAE@V?$Reference@VXWeak@uno@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXComponent@lang@star@sun@com@@@3456@@Z
+??0OWeakListenerAdapterBase@comphelper@@IAE@ABV?$Reference@VXWeak@uno@star@sun@com@@@uno@star@sun@com@@ABV?$Reference@VXInterface@uno@star@sun@com@@@3456@@Z
+??1?$OWeakListenerAdapter@VXComponent@lang@star@sun@com@@VXEventListener@2345@@comphelper@@UAE@XZ
+??1?$Reference@VXComponent@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$Reference@VXWeak@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1?$WeakComponentImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@UAE@XZ
+??1?$WeakReference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
+??1OWeakEventListenerAdapter@comphelper@@UAE@XZ
+??1OWeakListenerAdapterBase@comphelper@@MAE@XZ
+??_7?$OWeakListenerAdapter@VXComponent@lang@star@sun@com@@VXEventListener@2345@@comphelper@@6B@
+??_7?$OWeakListenerAdapter@VXComponent@lang@star@sun@com@@VXEventListener@2345@@comphelper@@6BOWeakObject@cppu@@@
+??_7?$OWeakListenerAdapter@VXComponent@lang@star@sun@com@@VXEventListener@2345@@comphelper@@6BXComponent@lang@star@sun@com@@@
+??_7?$OWeakListenerAdapter@VXComponent@lang@star@sun@com@@VXEventListener@2345@@comphelper@@6BXEventListener@lang@star@sun@com@@@
+??_7?$OWeakListenerAdapter@VXComponent@lang@star@sun@com@@VXEventListener@2345@@comphelper@@6BXTypeProvider@lang@star@sun@com@@@
+??_7OWeakEventListenerAdapter@comphelper@@6B@
+??_7OWeakEventListenerAdapter@comphelper@@6BOWeakObject@cppu@@@
+??_7OWeakEventListenerAdapter@comphelper@@6BXComponent@lang@star@sun@com@@@
+??_7OWeakEventListenerAdapter@comphelper@@6BXEventListener@lang@star@sun@com@@@
+??_7OWeakEventListenerAdapter@comphelper@@6BXTypeProvider@lang@star@sun@com@@@
+??_7OWeakListenerAdapterBase@comphelper@@6B@
+??_C@_0BN@FLDH@com?4sun?4star?4lang?4XComponent?$AA@
+??_E?$OWeakListenerAdapter@VXComponent@lang@star@sun@com@@VXEventListener@2345@@comphelper@@WCM@AEPAXI@Z
+??_EOWeakEventListenerAdapter@comphelper@@WCM@AEPAXI@Z
+??_G?$OWeakListenerAdapter@VXComponent@lang@star@sun@com@@VXEventListener@2345@@comphelper@@UAEPAXI@Z
+??_GOWeakEventListenerAdapter@comphelper@@UAEPAXI@Z
+??_GOWeakListenerAdapterBase@comphelper@@MAEPAXI@Z
+?acquire@?$WeakComponentImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@UAAXXZ
+?acquire@?$WeakComponentImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@WBA@AAXXZ
+?acquire@?$WeakComponentImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@WCE@AAXXZ
+?acquire@?$WeakComponentImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@WCI@AAXXZ
+?disposing@?$OWeakListenerAdapter@VXComponent@lang@star@sun@com@@VXEventListener@2345@@comphelper@@MAAXABUEventObject@lang@star@sun@com@@@Z
+?disposing@OWeakEventListenerAdapter@comphelper@@MAAXXZ
+?getImplementationId@?$WeakComponentImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
+?getListener@?$OWeakListenerAdapter@VXComponent@lang@star@sun@com@@VXEventListener@2345@@comphelper@@IBE?AV?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@XZ
+?getListener@OWeakListenerAdapterBase@comphelper@@IBE?AV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?getTypes@?$WeakComponentImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
+?queryInterface@?$WeakComponentImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakComponentImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakComponentImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@WCE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?queryInterface@?$WeakComponentImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@WCI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
+?release@?$WeakComponentImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@UAAXXZ
+?release@?$WeakComponentImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@WBA@AAXXZ
+?release@?$WeakComponentImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@WCE@AAXXZ
+?release@?$WeakComponentImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@WCI@AAXXZ
+?s_cd@?$WeakComponentImplHelper1@VXEventListener@lang@star@sun@com@@@cppu@@0Uclass_data1@2@A
+?s_pType_com_sun_star_lang_XComponent@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXComponent@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
+??_C@_0DF@FHEP@o?3?2SRC665?2wntmsci7?2inc?2com?1sun?1s@
diff --git a/comphelper/util/makefile.mk b/comphelper/util/makefile.mk
index f3d60545ebe3..cccb7c062a70 100644
--- a/comphelper/util/makefile.mk
+++ b/comphelper/util/makefile.mk
@@ -2,9 +2,9 @@
#
# $RCSfile: makefile.mk,v $
#
-# $Revision: 1.3 $
+# $Revision: 1.4 $
#
-# last change: $Author: mav $ $Date: 2002-01-11 17:46:39 $
+# last change: $Author: hr $ $Date: 2003-03-19 15:58:40 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@@ -84,17 +84,15 @@ LIB1FILES= $(SLB)$/container.lib \
LIB1TARGET=$(SLB)$/$(TARGET).lib
-SHL1TARGET=$(COMPHLP_TARGET)$(COMPHLP_MAJOR)
-SHL1STDLIBS=\
- $(CPPULIB) \
- $(CPPUHELPERLIB) \
- $(VOSLIB) \
- $(OSLLIB) \
- $(SALLIB) \
- $(CPPRTLLIB)
+SHL1TARGET=$(COMPHLP_TARGET)$(COMPHLP_MAJOR)$(COMID)
+SHL1STDLIBS= \
+ $(CPPUHELPERLIB) \
+ $(CPPULIB) \
+ $(VOSLIB) \
+ $(SALLIB)
SHL1DEPN=
-SHL1IMPLIB= i$(SHL1TARGET)
+SHL1IMPLIB= i$(COMPHLP_TARGET)
SHL1LIBS= $(LIB1TARGET)
diff --git a/comphelper/version.mk b/comphelper/version.mk
index fec8833dea2a..5ff5ab4144a0 100644
--- a/comphelper/version.mk
+++ b/comphelper/version.mk
@@ -2,9 +2,9 @@
#
# $RCSfile: version.mk,v $
#
-# $Revision: 1.1.1.1 $
+# $Revision: 1.2 $
#
-# last change: $Author: fs $ $Date: 2000-09-29 11:28:15 $
+# last change: $Author: hr $ $Date: 2003-03-19 15:58:28 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@@ -65,7 +65,7 @@
COMPHLP_TARGET=comphelp
# the major
-COMPHLP_MAJOR=2
+COMPHLP_MAJOR=3
# the minor
COMPHLP_MINOR=0
# the micro