LCOV - code coverage report
Current view: top level - cppu/source/cppu - cppu_opt.cxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 16 26 61.5 %
Date: 2014-04-11 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       24743 : extern "C" CPPU_DLLPUBLIC rtl_uString * SAL_CALL cppu_unsatisfied_iquery_msg(
      30             :     typelib_TypeDescriptionReference * pType )
      31             :     SAL_THROW_EXTERN_C()
      32             : {
      33       24743 :     OUStringBuffer buf( 64 );
      34       24743 :     buf.append( "unsatisfied query for interface of type " );
      35       24743 :     buf.append( OUString::unacquired( &pType->pTypeName ) );
      36       24743 :     buf.append( '!' );
      37       49486 :     OUString ret( buf.makeStringAndClear() );
      38       24743 :     rtl_uString_acquire( ret.pData );
      39       49486 :     return ret.pData;
      40             : }
      41             : 
      42             : 
      43        1443 : extern "C" CPPU_DLLPUBLIC rtl_uString * SAL_CALL cppu_unsatisfied_iset_msg(
      44             :     typelib_TypeDescriptionReference * pType )
      45             :     SAL_THROW_EXTERN_C()
      46             : {
      47        1443 :     OUStringBuffer buf( 64 );
      48        1443 :     buf.append( "invalid attempt to assign an empty interface of type " );
      49        1443 :     buf.append( OUString::unacquired( &pType->pTypeName ) );
      50        1443 :     buf.append( '!' );
      51        2886 :     OUString ret( buf.makeStringAndClear() );
      52        1443 :     rtl_uString_acquire( ret.pData );
      53        2886 :     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           0 :     buf.append( "Cannot extract an Any(" );
      63           0 :     buf.append( OUString::unacquired(&pAny->pType->pTypeName) );
      64           0 :     buf.append( ") to " );
      65           0 :     buf.append( OUString::unacquired(&pType->pTypeName) );
      66           0 :     buf.append( '!' );
      67           0 :     const OUString ret( buf.makeStringAndClear() );
      68           0 :     rtl_uString_acquire( ret.pData );
      69           0 :     return ret.pData;
      70             : }
      71             : 
      72             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10