LCOV - code coverage report
Current view: top level - codemaker/source/cppumaker - dumputils.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 32 32 100.0 %
Date: 2012-08-25 Functions: 3 3 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 25 32 78.1 %

           Branch data     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 "dumputils.hxx"
      22                 :            : 
      23                 :            : #include "codemaker/global.hxx"
      24                 :            : #include "codemaker/commoncpp.hxx"
      25                 :            : 
      26                 :            : #include "rtl/ustring.hxx"
      27                 :            : #include "sal/types.h"
      28                 :            : 
      29                 :            : 
      30                 :            : namespace codemaker { namespace cppumaker {
      31                 :            : 
      32                 :      40540 : bool dumpNamespaceOpen(
      33                 :            :     FileStream & out, rtl::OString const & registryType, bool fullModuleType)
      34                 :            : {
      35                 :      40540 :     bool output = false;
      36         [ +  - ]:      40540 :     if (registryType != "/") {
      37                 :      40540 :         bool first = true;
      38         [ +  + ]:     245388 :         for (sal_Int32 i = 0; i >= 0;) {
      39                 :     204848 :             rtl::OString id(registryType.getToken(0, '/', i));
      40 [ +  + ][ +  + ]:     204848 :             if (fullModuleType || i >= 0) {
      41         [ +  + ]:     167392 :                 if (!first) {
      42         [ +  - ]:     126978 :                     out << " ";
      43                 :            :                 }
      44 [ +  - ][ +  - ]:     167392 :                 out << "namespace " << id << " {";
                 [ +  - ]
      45                 :     167392 :                 first = false;
      46                 :     167392 :                 output = true;
      47                 :            :             }
      48                 :     204848 :         }
      49                 :            :     }
      50                 :      40540 :     return output;
      51                 :            : }
      52                 :            : 
      53                 :      40540 : bool dumpNamespaceClose(
      54                 :            :     FileStream & out, rtl::OString const & registryType, bool fullModuleType)
      55                 :            : {
      56                 :      40540 :     bool output = false;
      57         [ +  - ]:      40540 :     if (registryType != "/") {
      58                 :      40540 :         bool first = true;
      59         [ +  + ]:     245388 :         for (sal_Int32 i = 0; i >= 0;) {
      60                 :     204848 :             i = registryType.indexOf('/', i);
      61         [ +  + ]:     204848 :             if (i >= 0) {
      62                 :     164308 :                 ++i;
      63                 :            :             }
      64 [ +  + ][ +  + ]:     204848 :             if (fullModuleType || i >= 0) {
      65         [ +  + ]:     167392 :                 if (!first) {
      66                 :     126978 :                     out << " ";
      67                 :            :                 }
      68                 :     167392 :                 out << "}";
      69                 :     167392 :                 first = false;
      70                 :     167392 :                 output = true;
      71                 :            :             }
      72                 :            :         }
      73                 :            :     }
      74                 :      40540 :     return output;
      75                 :            : }
      76                 :            : 
      77                 :       5942 : void dumpTypeIdentifier(FileStream & out, rtl::OString const & registryType) {
      78         [ +  - ]:       5942 :     out << registryType.copy(registryType.lastIndexOf('/') + 1);
      79                 :       5942 : }
      80                 :            : 
      81                 :            : } }
      82                 :            : 
      83                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10