LCOV - code coverage report
Current view: top level - solver/unxlngi6.pro/inc/udkapi/com/sun/star/reflection - XCompoundTypeDescription.hpp (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 54 0.0 %
Date: 2012-08-25 Functions: 0 4 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 46 0.0 %

           Branch data     Line data    Source code
       1                 :            : #ifndef INCLUDED_COM_SUN_STAR_REFLECTION_XCOMPOUNDTYPEDESCRIPTION_HPP
       2                 :            : #define INCLUDED_COM_SUN_STAR_REFLECTION_XCOMPOUNDTYPEDESCRIPTION_HPP
       3                 :            : 
       4                 :            : #include "sal/config.h"
       5                 :            : 
       6                 :            : #include "com/sun/star/reflection/XCompoundTypeDescription.hdl"
       7                 :            : 
       8                 :            : #include "com/sun/star/uno/RuntimeException.hpp"
       9                 :            : #include "com/sun/star/reflection/XTypeDescription.hpp"
      10                 :            : #include "com/sun/star/uno/Reference.hxx"
      11                 :            : #include "com/sun/star/uno/Sequence.hxx"
      12                 :            : #include "com/sun/star/uno/Type.hxx"
      13                 :            : #include "cppu/unotype.hxx"
      14                 :            : #include "osl/mutex.hxx"
      15                 :            : #include "rtl/ustring.hxx"
      16                 :            : #include "rtl/instance.hxx"
      17                 :            : 
      18                 :            : namespace com { namespace sun { namespace star { namespace reflection { namespace detail {
      19                 :            : 
      20                 :            : struct theXCompoundTypeDescriptionType : public rtl::StaticWithInit< ::com::sun::star::uno::Type *, theXCompoundTypeDescriptionType >
      21                 :            : {
      22                 :          0 :     ::com::sun::star::uno::Type * operator()() const
      23                 :            :     {
      24         [ #  # ]:          0 :         ::rtl::OUString sTypeName( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.reflection.XCompoundTypeDescription") );
      25                 :            : 
      26                 :            :         // Start inline typedescription generation
      27                 :          0 :         typelib_InterfaceTypeDescription * pTD = 0;
      28                 :            : 
      29                 :            :         typelib_TypeDescriptionReference * aSuperTypes[1];
      30         [ #  # ]:          0 :         aSuperTypes[0] = ::cppu::UnoType< ::com::sun::star::uno::Reference< ::com::sun::star::reflection::XTypeDescription > >::get().getTypeLibType();
      31                 :          0 :         typelib_TypeDescriptionReference * pMembers[3] = { 0,0,0 };
      32         [ #  # ]:          0 :         ::rtl::OUString sMethodName0( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.reflection.XCompoundTypeDescription::getBaseType") );
      33                 :            :         typelib_typedescriptionreference_new( &pMembers[0],
      34                 :            :                                               (typelib_TypeClass)::com::sun::star::uno::TypeClass_INTERFACE_METHOD,
      35                 :          0 :                                               sMethodName0.pData );
      36         [ #  # ]:          0 :         ::rtl::OUString sMethodName1( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.reflection.XCompoundTypeDescription::getMemberTypes") );
      37                 :            :         typelib_typedescriptionreference_new( &pMembers[1],
      38                 :            :                                               (typelib_TypeClass)::com::sun::star::uno::TypeClass_INTERFACE_METHOD,
      39                 :          0 :                                               sMethodName1.pData );
      40         [ #  # ]:          0 :         ::rtl::OUString sMethodName2( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.reflection.XCompoundTypeDescription::getMemberNames") );
      41                 :            :         typelib_typedescriptionreference_new( &pMembers[2],
      42                 :            :                                               (typelib_TypeClass)::com::sun::star::uno::TypeClass_INTERFACE_METHOD,
      43                 :          0 :                                               sMethodName2.pData );
      44                 :            : 
      45                 :            :         typelib_typedescription_newMIInterface(
      46                 :            :             &pTD,
      47                 :            :             sTypeName.pData, 0x00000000, 0x0000, 0x0000, 0x00000000, 0x00000000,
      48                 :            :             1, aSuperTypes,
      49                 :            :             3,
      50                 :          0 :             pMembers );
      51                 :            : 
      52                 :          0 :         typelib_typedescription_register( (typelib_TypeDescription**)&pTD );
      53                 :          0 :         typelib_typedescriptionreference_release( pMembers[0] );
      54                 :          0 :         typelib_typedescriptionreference_release( pMembers[1] );
      55                 :          0 :         typelib_typedescriptionreference_release( pMembers[2] );
      56                 :          0 :         typelib_typedescription_release( (typelib_TypeDescription*)pTD );
      57                 :            : 
      58                 :          0 :         return new ::com::sun::star::uno::Type( ::com::sun::star::uno::TypeClass_INTERFACE, sTypeName ); // leaked
      59                 :            :     }
      60                 :            : };
      61                 :            : 
      62                 :            : } } } } }
      63                 :            : 
      64                 :            : namespace com { namespace sun { namespace star { namespace reflection {
      65                 :            : 
      66                 :          0 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER ::com::sun::star::reflection::XCompoundTypeDescription const *) {
      67                 :          0 :     const ::com::sun::star::uno::Type &rRet = *detail::theXCompoundTypeDescriptionType::get();
      68                 :            :     // End inline typedescription generation
      69                 :            :     static bool bInitStarted = false;
      70         [ #  # ]:          0 :     if (!bInitStarted)
      71                 :            :     {
      72 [ #  # ][ #  # ]:          0 :         ::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
      73         [ #  # ]:          0 :         if (!bInitStarted)
      74                 :            :         {
      75                 :            :             OSL_DOUBLE_CHECKED_LOCKING_MEMORY_BARRIER();
      76                 :          0 :             bInitStarted = true;
      77         [ #  # ]:          0 :             ::cppu::UnoType< ::com::sun::star::uno::RuntimeException >::get();
      78         [ #  # ]:          0 :             ::cppu::UnoType< ::com::sun::star::uno::Reference< ::com::sun::star::reflection::XTypeDescription > >::get();
      79         [ #  # ]:          0 :             ::cppu::UnoType< ::cppu::UnoSequenceType< ::com::sun::star::uno::Reference< ::com::sun::star::reflection::XTypeDescription > > >::get();
      80         [ #  # ]:          0 :             ::cppu::UnoType< ::cppu::UnoSequenceType< ::rtl::OUString > >::get();
      81                 :            : 
      82                 :          0 :             typelib_InterfaceMethodTypeDescription * pMethod = 0;
      83                 :            :             {
      84         [ #  # ]:          0 :                 ::rtl::OUString the_ExceptionName0(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.uno.RuntimeException"));
      85                 :          0 :                 rtl_uString * the_Exceptions[] = { the_ExceptionName0.pData };
      86         [ #  # ]:          0 :                 ::rtl::OUString sReturnType0( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.reflection.XTypeDescription") );
      87         [ #  # ]:          0 :                 ::rtl::OUString sMethodName0( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.reflection.XCompoundTypeDescription::getBaseType") );
      88                 :            :                 typelib_typedescription_newInterfaceMethod( &pMethod,
      89                 :            :                     5, sal_False,
      90                 :            :                     sMethodName0.pData,
      91                 :            :                     (typelib_TypeClass)::com::sun::star::uno::TypeClass_INTERFACE, sReturnType0.pData,
      92                 :            :                     0, 0,
      93                 :          0 :                     1, the_Exceptions );
      94                 :          0 :                 typelib_typedescription_register( (typelib_TypeDescription**)&pMethod );
      95                 :            :             }
      96                 :            :             {
      97         [ #  # ]:          0 :                 ::rtl::OUString the_ExceptionName0(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.uno.RuntimeException"));
      98                 :          0 :                 rtl_uString * the_Exceptions[] = { the_ExceptionName0.pData };
      99         [ #  # ]:          0 :                 ::rtl::OUString sReturnType1( RTL_CONSTASCII_USTRINGPARAM("[]com.sun.star.reflection.XTypeDescription") );
     100         [ #  # ]:          0 :                 ::rtl::OUString sMethodName1( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.reflection.XCompoundTypeDescription::getMemberTypes") );
     101                 :            :                 typelib_typedescription_newInterfaceMethod( &pMethod,
     102                 :            :                     6, sal_False,
     103                 :            :                     sMethodName1.pData,
     104                 :            :                     (typelib_TypeClass)::com::sun::star::uno::TypeClass_SEQUENCE, sReturnType1.pData,
     105                 :            :                     0, 0,
     106                 :          0 :                     1, the_Exceptions );
     107                 :          0 :                 typelib_typedescription_register( (typelib_TypeDescription**)&pMethod );
     108                 :            :             }
     109                 :            :             {
     110         [ #  # ]:          0 :                 ::rtl::OUString the_ExceptionName0(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.uno.RuntimeException"));
     111                 :          0 :                 rtl_uString * the_Exceptions[] = { the_ExceptionName0.pData };
     112         [ #  # ]:          0 :                 ::rtl::OUString sReturnType2( RTL_CONSTASCII_USTRINGPARAM("[]string") );
     113         [ #  # ]:          0 :                 ::rtl::OUString sMethodName2( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.reflection.XCompoundTypeDescription::getMemberNames") );
     114                 :            :                 typelib_typedescription_newInterfaceMethod( &pMethod,
     115                 :            :                     7, sal_False,
     116                 :            :                     sMethodName2.pData,
     117                 :            :                     (typelib_TypeClass)::com::sun::star::uno::TypeClass_SEQUENCE, sReturnType2.pData,
     118                 :            :                     0, 0,
     119                 :          0 :                     1, the_Exceptions );
     120                 :          0 :                 typelib_typedescription_register( (typelib_TypeDescription**)&pMethod );
     121                 :            :             }
     122                 :          0 :             typelib_typedescription_release( (typelib_TypeDescription*)pMethod );
     123         [ #  # ]:          0 :         }
     124                 :            :     }
     125                 :            :     else
     126                 :            :     {
     127                 :            :         OSL_DOUBLE_CHECKED_LOCKING_MEMORY_BARRIER();
     128                 :            :     }
     129                 :          0 :     return rRet;
     130                 :            : }
     131                 :            : 
     132                 :            : } } } }
     133                 :            : 
     134                 :          0 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(SAL_UNUSED_PARAMETER ::com::sun::star::uno::Reference< ::com::sun::star::reflection::XCompoundTypeDescription > const *) SAL_THROW(()) {
     135                 :          0 :     return ::cppu::UnoType< ::com::sun::star::uno::Reference< ::com::sun::star::reflection::XCompoundTypeDescription > >::get();
     136                 :            : }
     137                 :            : 
     138                 :          0 : ::com::sun::star::uno::Type const & ::com::sun::star::reflection::XCompoundTypeDescription::static_type(SAL_UNUSED_PARAMETER void *) {
     139                 :          0 :     return ::getCppuType(static_cast< ::com::sun::star::uno::Reference< ::com::sun::star::reflection::XCompoundTypeDescription > * >(0));
     140                 :            : }
     141                 :            : 
     142                 :            : #endif // INCLUDED_COM_SUN_STAR_REFLECTION_XCOMPOUNDTYPEDESCRIPTION_HPP

Generated by: LCOV version 1.10