LCOV - code coverage report
Current view: top level - sw/source/filter/xml - xmlitmpr.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 23 24 95.8 %
Date: 2015-06-13 12:38:46 Functions: 6 6 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             : #include <rtl/ustring.hxx>
      21             : #include "xmlitmap.hxx"
      22             : 
      23             : using ::xmloff::token::IsXMLToken;
      24             : using ::xmloff::token::XML_TOKEN_INVALID;
      25             : 
      26             : // TODO: optimize this!
      27             : class SvXMLItemMapEntries_impl
      28             : {
      29             : public:
      30             :     SvXMLItemMapEntry* mpEntries;
      31             :     sal_uInt16 mnCount;
      32             : };
      33             : 
      34        5738 : SvXMLItemMapEntries::SvXMLItemMapEntries( SvXMLItemMapEntry* pEntries )
      35             : {
      36        5738 :     mpImpl = new SvXMLItemMapEntries_impl;
      37        5738 :     mpImpl->mpEntries = pEntries;
      38             : 
      39        5738 :     mpImpl->mnCount = 0;
      40       83192 :     while( pEntries->eLocalName != XML_TOKEN_INVALID )
      41             :     {
      42       71716 :         pEntries++;
      43       71716 :         mpImpl->mnCount++;
      44             :     }
      45        5738 : }
      46             : 
      47       17214 : SvXMLItemMapEntries::~SvXMLItemMapEntries()
      48             : {
      49        5738 :     delete mpImpl;
      50       11476 : }
      51             : 
      52        3081 : SvXMLItemMapEntry* SvXMLItemMapEntries::getByName(  sal_uInt16 nNameSpace,
      53             :                                                     const OUString& rString,
      54             :                                                     SvXMLItemMapEntry* pStartAt /* = NULL */  ) const
      55             : {
      56             :     SvXMLItemMapEntry* pMap =
      57           0 :         (pStartAt && (pStartAt->eLocalName!=XML_TOKEN_INVALID)) ?
      58        3081 :                                            &(pStartAt[1]) : mpImpl->mpEntries;
      59       33248 :     while( pMap && (pMap->eLocalName != XML_TOKEN_INVALID) )
      60             :     {
      61       45681 :         if( pMap->nNameSpace == nNameSpace &&
      62       15514 :             IsXMLToken( rString, pMap->eLocalName ) )
      63        3081 :             break;
      64       27086 :         pMap++;
      65             :     }
      66             : 
      67        3081 :     return (pMap && (pMap->eLocalName != XML_TOKEN_INVALID)) ? pMap : NULL;
      68             : }
      69             : 
      70         896 : SvXMLItemMapEntry* SvXMLItemMapEntries::getByIndex( sal_uInt16 nIndex ) const
      71             : {
      72         896 :     return &mpImpl->mpEntries[nIndex];
      73             : }
      74             : 
      75          58 : sal_uInt16 SvXMLItemMapEntries::getCount() const
      76             : {
      77          58 :     return mpImpl->mnCount;
      78             : }
      79             : 
      80             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11