LCOV - code coverage report
Current view: top level - libreoffice/cppu/source/cppu - cppu_opt.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 16 26 61.5 %
Date: 2012-12-27 Functions: 2 3 66.7 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : 
      21             : #include "typelib/typedescription.h"
      22             : #include "uno/any2.h"
      23             : #include "rtl/ustrbuf.hxx"
      24             : 
      25             : 
      26             : using namespace ::rtl;
      27             : 
      28             : //##################################################################################################
      29        1573 : extern "C" CPPU_DLLPUBLIC rtl_uString * SAL_CALL cppu_unsatisfied_iquery_msg(
      30             :     typelib_TypeDescriptionReference * pType )
      31             :     SAL_THROW_EXTERN_C()
      32             : {
      33        1573 :     OUStringBuffer buf( 64 );
      34        1573 :     buf.appendAscii( RTL_CONSTASCII_STRINGPARAM("unsatisfied query for interface of type ") );
      35        1573 :     buf.append( OUString::unacquired( &pType->pTypeName ) );
      36        1573 :     buf.append( (sal_Unicode) '!' );
      37        1573 :     OUString ret( buf.makeStringAndClear() );
      38        1573 :     rtl_uString_acquire( ret.pData );
      39        1573 :     return ret.pData;
      40             : }
      41             : 
      42             : //##################################################################################################
      43          25 : extern "C" CPPU_DLLPUBLIC rtl_uString * SAL_CALL cppu_unsatisfied_iset_msg(
      44             :     typelib_TypeDescriptionReference * pType )
      45             :     SAL_THROW_EXTERN_C()
      46             : {
      47          25 :     OUStringBuffer buf( 64 );
      48          25 :     buf.appendAscii( RTL_CONSTASCII_STRINGPARAM("invalid attempt to assign an empty interface of type ") );
      49          25 :     buf.append( OUString::unacquired( &pType->pTypeName ) );
      50          25 :     buf.append( (sal_Unicode) '!' );
      51          25 :     OUString ret( buf.makeStringAndClear() );
      52          25 :     rtl_uString_acquire( ret.pData );
      53          25 :     return ret.pData;
      54             : }
      55             : 
      56             : //##############################################################################
      57           0 : extern "C" CPPU_DLLPUBLIC rtl_uString * SAL_CALL cppu_Any_extraction_failure_msg(
      58             :     uno_Any * pAny, typelib_TypeDescriptionReference * pType )
      59             :     SAL_THROW_EXTERN_C()
      60             : {
      61           0 :     OUStringBuffer buf;
      62             :     buf.appendAscii( RTL_CONSTASCII_STRINGPARAM(
      63           0 :                          "Cannot extract an Any(") );
      64           0 :     buf.append( OUString::unacquired(&pAny->pType->pTypeName) );
      65           0 :     buf.appendAscii( RTL_CONSTASCII_STRINGPARAM(") to ") );
      66           0 :     buf.append( OUString::unacquired(&pType->pTypeName) );
      67           0 :     buf.append( static_cast<sal_Unicode>('!') );
      68           0 :     const OUString ret( buf.makeStringAndClear() );
      69           0 :     rtl_uString_acquire( ret.pData );
      70           0 :     return ret.pData;
      71             : }
      72             : 
      73             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10