LCOV - code coverage report
Current view: top level - cppu/source/cppu - cppu_opt.cxx (source / functions) Hit Total Coverage
Test: commit e02a6cb2c3e2b23b203b422e4e0680877f232636 Lines: 0 26 0.0 %
Date: 2014-04-14 Functions: 0 3 0.0 %
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           0 : extern "C" CPPU_DLLPUBLIC rtl_uString * SAL_CALL cppu_unsatisfied_iquery_msg(
      30             :     typelib_TypeDescriptionReference * pType )
      31             :     SAL_THROW_EXTERN_C()
      32             : {
      33           0 :     OUStringBuffer buf( 64 );
      34           0 :     buf.append( "unsatisfied query for interface of type " );
      35           0 :     buf.append( OUString::unacquired( &pType->pTypeName ) );
      36           0 :     buf.append( '!' );
      37           0 :     OUString ret( buf.makeStringAndClear() );
      38           0 :     rtl_uString_acquire( ret.pData );
      39           0 :     return ret.pData;
      40             : }
      41             : 
      42             : 
      43           0 : extern "C" CPPU_DLLPUBLIC rtl_uString * SAL_CALL cppu_unsatisfied_iset_msg(
      44             :     typelib_TypeDescriptionReference * pType )
      45             :     SAL_THROW_EXTERN_C()
      46             : {
      47           0 :     OUStringBuffer buf( 64 );
      48           0 :     buf.append( "invalid attempt to assign an empty interface of type " );
      49           0 :     buf.append( OUString::unacquired( &pType->pTypeName ) );
      50           0 :     buf.append( '!' );
      51           0 :     OUString ret( buf.makeStringAndClear() );
      52           0 :     rtl_uString_acquire( ret.pData );
      53           0 :     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