LCOV - code coverage report
Current view: top level - codemaker/source/cppumaker - dumputils.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 30 30 100.0 %
Date: 2014-11-03 Functions: 3 3 100.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 "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       21035 : bool dumpNamespaceOpen(
      33             :     FileStream & out, rtl::OUString const & entityName, bool fullModuleType)
      34             : {
      35       21035 :     bool output = false;
      36       21035 :     bool first = true;
      37      148201 :     for (sal_Int32 i = 0; i >= 0;) {
      38      106131 :         rtl::OUString id(entityName.getToken(0, '.', i));
      39      106131 :         if (fullModuleType || i >= 0) {
      40       86633 :             if (!first) {
      41       65661 :                 out << " ";
      42             :             }
      43       86633 :             out << "namespace " << id << " {";
      44       86633 :             first = false;
      45       86633 :             output = true;
      46             :         }
      47      106131 :     }
      48       21035 :     return output;
      49             : }
      50             : 
      51       21035 : bool dumpNamespaceClose(
      52             :     FileStream & out, rtl::OUString const & entityName, bool fullModuleType)
      53             : {
      54       21035 :     bool output = false;
      55       21035 :     bool first = true;
      56      148201 :     for (sal_Int32 i = 0; i >= 0;) {
      57      106131 :         i = entityName.indexOf('.', i);
      58      106131 :         if (i >= 0) {
      59       85096 :             ++i;
      60             :         }
      61      106131 :         if (fullModuleType || i >= 0) {
      62       86633 :             if (!first) {
      63       65661 :                 out << " ";
      64             :             }
      65       86633 :             out << "}";
      66       86633 :             first = false;
      67       86633 :             output = true;
      68             :         }
      69             :     }
      70       21035 :     return output;
      71             : }
      72             : 
      73        3004 : void dumpTypeIdentifier(FileStream & out, rtl::OUString const & entityName) {
      74        3004 :     out << entityName.copy(entityName.lastIndexOf('.') + 1);
      75        3004 : }
      76             : 
      77             : } }
      78             : 
      79             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10