LCOV - code coverage report
Current view: top level - usr/local/src/libreoffice/sw/source/filter/xml - xmlitmpr.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 19 24 79.2 %
Date: 2013-07-09 Functions: 4 6 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             : #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             : 
      28             : class SvXMLItemMapEntries_impl
      29             : {
      30             : public:
      31             :     SvXMLItemMapEntry* mpEntries;
      32             :     sal_uInt16 mnCount;
      33             : };
      34             : 
      35        1056 : SvXMLItemMapEntries::SvXMLItemMapEntries( SvXMLItemMapEntry* pEntries )
      36             : {
      37        1056 :     mpImpl = new SvXMLItemMapEntries_impl;
      38        1056 :     mpImpl->mpEntries = pEntries;
      39             : 
      40        1056 :     mpImpl->mnCount = 0;
      41       15464 :     while( pEntries->eLocalName != XML_TOKEN_INVALID )
      42             :     {
      43       13352 :         pEntries++;
      44       13352 :         mpImpl->mnCount++;
      45             :     }
      46        1056 : }
      47             : 
      48        3168 : SvXMLItemMapEntries::~SvXMLItemMapEntries()
      49             : {
      50        1056 :     delete mpImpl;
      51        2112 : }
      52             : 
      53         108 : SvXMLItemMapEntry* SvXMLItemMapEntries::getByName(  sal_uInt16 nNameSpace,
      54             :                                                     const OUString& rString,
      55             :                                                     SvXMLItemMapEntry* pStartAt /* = NULL */  ) const
      56             : {
      57             :     SvXMLItemMapEntry* pMap =
      58           0 :         (pStartAt && (pStartAt->eLocalName!=XML_TOKEN_INVALID)) ?
      59         108 :                                            &(pStartAt[1]) : mpImpl->mpEntries;
      60         914 :     while( pMap && (pMap->eLocalName != XML_TOKEN_INVALID) )
      61             :     {
      62        1195 :         if( pMap->nNameSpace == nNameSpace &&
      63         389 :             IsXMLToken( rString, pMap->eLocalName ) )
      64         108 :             break;
      65         698 :         pMap++;
      66             :     }
      67             : 
      68         108 :     return (pMap && (pMap->eLocalName != XML_TOKEN_INVALID)) ? pMap : NULL;
      69             : }
      70             : 
      71           0 : SvXMLItemMapEntry* SvXMLItemMapEntries::getByIndex( sal_uInt16 nIndex ) const
      72             : {
      73           0 :     return &mpImpl->mpEntries[nIndex];
      74             : }
      75             : 
      76           0 : sal_uInt16 SvXMLItemMapEntries::getCount() const
      77             : {
      78           0 :     return mpImpl->mnCount;
      79             : }
      80             : 
      81             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10