From fb21a4dfe2c81640379f64855509fb7613530887 Mon Sep 17 00:00:00 2001 From: Enrico Zini Date: Wed, 9 Sep 2015 22:43:35 +0200 Subject: Removed wrongly added coverage report --- .../include/c++/4.3/backward/auto_ptr.h.gcov.html | 364 --------------------- .../include/c++/4.3/backward/binders.h.gcov.html | 238 -------------- rep/usr/include/c++/4.3/backward/index.html | 92 ------ 3 files changed, 694 deletions(-) delete mode 100644 rep/usr/include/c++/4.3/backward/auto_ptr.h.gcov.html delete mode 100644 rep/usr/include/c++/4.3/backward/binders.h.gcov.html delete mode 100644 rep/usr/include/c++/4.3/backward/index.html (limited to 'rep/usr/include/c++/4.3/backward') diff --git a/rep/usr/include/c++/4.3/backward/auto_ptr.h.gcov.html b/rep/usr/include/c++/4.3/backward/auto_ptr.h.gcov.html deleted file mode 100644 index 4afaec9..0000000 --- a/rep/usr/include/c++/4.3/backward/auto_ptr.h.gcov.html +++ /dev/null @@ -1,364 +0,0 @@ - - - - - - - LCOV - lcov.info - /usr/include/c++/4.3/backward/auto_ptr.h - - - - - - - - - - - - - -
LTP GCOV extension - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - -
Current view:directory - usr/include/c++/4.3/backward - auto_ptr.h
Test:lcov.info
Date:2008-08-14Instrumented lines:15
Code covered:100.0 %Executed lines:15
-
- - - - - - - - -

-       1                 : // auto_ptr implementation -*- C++ -*-
-       2                 : 
-       3                 : // Copyright (C) 2007, 2008 Free Software Foundation, Inc.
-       4                 : //
-       5                 : // This file is part of the GNU ISO C++ Library.  This library is free
-       6                 : // software; you can redistribute it and/or modify it under the
-       7                 : // terms of the GNU General Public License as published by the
-       8                 : // Free Software Foundation; either version 2, or (at your option)
-       9                 : // any later version.
-      10                 : 
-      11                 : // This library is distributed in the hope that it will be useful,
-      12                 : // but WITHOUT ANY WARRANTY; without even the implied warranty of
-      13                 : // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-      14                 : // GNU General Public License for more details.
-      15                 : 
-      16                 : // You should have received a copy of the GNU General Public License
-      17                 : // along with this library; see the file COPYING.  If not, write to
-      18                 : // the Free Software Foundation, 51 Franklin Street, Fifth Floor,
-      19                 : // Boston, MA 02110-1301, USA.
-      20                 : 
-      21                 : // As a special exception, you may use this file as part of a free software
-      22                 : // library without restriction.  Specifically, if other files instantiate
-      23                 : // templates or use macros or inline functions from this file, or you compile
-      24                 : // this file and link it with other files to produce an executable, this
-      25                 : // file does not by itself cause the resulting executable to be covered by
-      26                 : // the GNU General Public License.  This exception does not however
-      27                 : // invalidate any other reasons why the executable file might be covered by
-      28                 : // the GNU General Public License.
-      29                 : 
-      30                 : /** @file backward/auto_ptr.h
-      31                 :  *  This is an internal header file, included by other library headers.
-      32                 :  *  You should not attempt to use it directly.
-      33                 :  */
-      34                 : 
-      35                 : #ifndef _STL_AUTO_PTR_H
-      36                 : #define _STL_AUTO_PTR_H 1
-      37                 : 
-      38                 : #include <bits/c++config.h>
-      39                 : #include <debug/debug.h>
-      40                 : 
-      41                 : _GLIBCXX_BEGIN_NAMESPACE(std)
-      42                 : 
-      43                 :   /**
-      44                 :    *  A wrapper class to provide auto_ptr with reference semantics.
-      45                 :    *  For example, an auto_ptr can be assigned (or constructed from)
-      46                 :    *  the result of a function which returns an auto_ptr by value.
-      47                 :    *
-      48                 :    *  All the auto_ptr_ref stuff should happen behind the scenes.
-      49                 :    */
-      50                 :   template<typename _Tp1>
-      51                 :     struct auto_ptr_ref
-      52                 :     {
-      53                 :       _Tp1* _M_ptr;
-      54                 :       
-      55                 :       explicit
-      56             666 :       auto_ptr_ref(_Tp1* __p): _M_ptr(__p) { }
-      57                 :     } _GLIBCXX_DEPRECATED_ATTR;
-      58                 : 
-      59                 : 
-      60                 :   /**
-      61                 :    *  @brief  A simple smart pointer providing strict ownership semantics.
-      62                 :    *
-      63                 :    *  The Standard says:
-      64                 :    *  <pre>
-      65                 :    *  An @c auto_ptr owns the object it holds a pointer to.  Copying
-      66                 :    *  an @c auto_ptr copies the pointer and transfers ownership to the
-      67                 :    *  destination.  If more than one @c auto_ptr owns the same object
-      68                 :    *  at the same time the behavior of the program is undefined.
-      69                 :    *
-      70                 :    *  The uses of @c auto_ptr include providing temporary
-      71                 :    *  exception-safety for dynamically allocated memory, passing
-      72                 :    *  ownership of dynamically allocated memory to a function, and
-      73                 :    *  returning dynamically allocated memory from a function.  @c
-      74                 :    *  auto_ptr does not meet the CopyConstructible and Assignable
-      75                 :    *  requirements for Standard Library <a
-      76                 :    *  href="tables.html#65">container</a> elements and thus
-      77                 :    *  instantiating a Standard Library container with an @c auto_ptr
-      78                 :    *  results in undefined behavior.
-      79                 :    *  </pre>
-      80                 :    *  Quoted from [20.4.5]/3.
-      81                 :    *
-      82                 :    *  Good examples of what can and cannot be done with auto_ptr can
-      83                 :    *  be found in the libstdc++ testsuite.
-      84                 :    *
-      85                 :    *  _GLIBCXX_RESOLVE_LIB_DEFECTS
-      86                 :    *  127.  auto_ptr<> conversion issues
-      87                 :    *  These resolutions have all been incorporated.
-      88                 :    */
-      89                 :   template<typename _Tp>
-      90                 :     class auto_ptr
-      91                 :     {
-      92                 :     private:
-      93                 :       _Tp* _M_ptr;
-      94                 :       
-      95                 :     public:
-      96                 :       /// The pointed-to type.
-      97                 :       typedef _Tp element_type;
-      98                 :       
-      99                 :       /**
-     100                 :        *  @brief  An %auto_ptr is usually constructed from a raw pointer.
-     101                 :        *  @param  p  A pointer (defaults to NULL).
-     102                 :        *
-     103                 :        *  This object now @e owns the object pointed to by @a p.
-     104                 :        */
-     105                 :       explicit
-     106             666 :       auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { }
-     107                 : 
-     108                 :       /**
-     109                 :        *  @brief  An %auto_ptr can be constructed from another %auto_ptr.
-     110                 :        *  @param  a  Another %auto_ptr of the same type.
-     111                 :        *
-     112                 :        *  This object now @e owns the object previously owned by @a a,
-     113                 :        *  which has given up ownership.
-     114                 :        */
-     115             590 :       auto_ptr(auto_ptr& __a) throw() : _M_ptr(__a.release()) { }
-     116                 : 
-     117                 :       /**
-     118                 :        *  @brief  An %auto_ptr can be constructed from another %auto_ptr.
-     119                 :        *  @param  a  Another %auto_ptr of a different but related type.
-     120                 :        *
-     121                 :        *  A pointer-to-Tp1 must be convertible to a
-     122                 :        *  pointer-to-Tp/element_type.
-     123                 :        *
-     124                 :        *  This object now @e owns the object previously owned by @a a,
-     125                 :        *  which has given up ownership.
-     126                 :        */
-     127                 :       template<typename _Tp1>
-     128                 :         auto_ptr(auto_ptr<_Tp1>& __a) throw() : _M_ptr(__a.release()) { }
-     129                 : 
-     130                 :       /**
-     131                 :        *  @brief  %auto_ptr assignment operator.
-     132                 :        *  @param  a  Another %auto_ptr of the same type.
-     133                 :        *
-     134                 :        *  This object now @e owns the object previously owned by @a a,
-     135                 :        *  which has given up ownership.  The object that this one @e
-     136                 :        *  used to own and track has been deleted.
-     137                 :        */
-     138                 :       auto_ptr&
-     139                 :       operator=(auto_ptr& __a) throw()
-     140                 :       {
-     141                 :         reset(__a.release());
-     142                 :         return *this;
-     143                 :       }
-     144                 : 
-     145                 :       /**
-     146                 :        *  @brief  %auto_ptr assignment operator.
-     147                 :        *  @param  a  Another %auto_ptr of a different but related type.
-     148                 :        *
-     149                 :        *  A pointer-to-Tp1 must be convertible to a pointer-to-Tp/element_type.
-     150                 :        *
-     151                 :        *  This object now @e owns the object previously owned by @a a,
-     152                 :        *  which has given up ownership.  The object that this one @e
-     153                 :        *  used to own and track has been deleted.
-     154                 :        */
-     155                 :       template<typename _Tp1>
-     156                 :         auto_ptr&
-     157                 :         operator=(auto_ptr<_Tp1>& __a) throw()
-     158                 :         {
-     159                 :           reset(__a.release());
-     160                 :           return *this;
-     161                 :         }
-     162                 : 
-     163                 :       /**
-     164                 :        *  When the %auto_ptr goes out of scope, the object it owns is
-     165                 :        *  deleted.  If it no longer owns anything (i.e., @c get() is
-     166                 :        *  @c NULL), then this has no effect.
-     167                 :        *
-     168                 :        *  The C++ standard says there is supposed to be an empty throw
-     169                 :        *  specification here, but omitting it is standard conforming.  Its
-     170                 :        *  presence can be detected only if _Tp::~_Tp() throws, but this is
-     171                 :        *  prohibited.  [17.4.3.6]/2
-     172                 :        */
-     173            1922 :       ~auto_ptr() { delete _M_ptr; }
-     174                 :       
-     175                 :       /**
-     176                 :        *  @brief  Smart pointer dereferencing.
-     177                 :        *
-     178                 :        *  If this %auto_ptr no longer owns anything, then this
-     179                 :        *  operation will crash.  (For a smart pointer, "no longer owns
-     180                 :        *  anything" is the same as being a null pointer, and you know
-     181                 :        *  what happens when you dereference one of those...)
-     182                 :        */
-     183                 :       element_type&
-     184                 :       operator*() const throw() 
-     185                 :       {
-     186                 :         _GLIBCXX_DEBUG_ASSERT(_M_ptr != 0);
-     187                 :         return *_M_ptr; 
-     188                 :       }
-     189                 :       
-     190                 :       /**
-     191                 :        *  @brief  Smart pointer dereferencing.
-     192                 :        *
-     193                 :        *  This returns the pointer itself, which the language then will
-     194                 :        *  automatically cause to be dereferenced.
-     195                 :        */
-     196                 :       element_type*
-     197             590 :       operator->() const throw() 
-     198                 :       {
-     199                 :         _GLIBCXX_DEBUG_ASSERT(_M_ptr != 0);
-     200             590 :         return _M_ptr; 
-     201                 :       }
-     202                 :       
-     203                 :       /**
-     204                 :        *  @brief  Bypassing the smart pointer.
-     205                 :        *  @return  The raw pointer being managed.
-     206                 :        *
-     207                 :        *  You can get a copy of the pointer that this object owns, for
-     208                 :        *  situations such as passing to a function which only accepts
-     209                 :        *  a raw pointer.
-     210                 :        *
-     211                 :        *  @note  This %auto_ptr still owns the memory.
-     212                 :        */
-     213                 :       element_type*
-     214            1256 :       get() const throw() { return _M_ptr; }
-     215                 :       
-     216                 :       /**
-     217                 :        *  @brief  Bypassing the smart pointer.
-     218                 :        *  @return  The raw pointer being managed.
-     219                 :        *
-     220                 :        *  You can get a copy of the pointer that this object owns, for
-     221                 :        *  situations such as passing to a function which only accepts
-     222                 :        *  a raw pointer.
-     223                 :        *
-     224                 :        *  @note  This %auto_ptr no longer owns the memory.  When this object
-     225                 :        *  goes out of scope, nothing will happen.
-     226                 :        */
-     227                 :       element_type*
-     228            1256 :       release() throw()
-     229                 :       {
-     230            1256 :         element_type* __tmp = _M_ptr;
-     231            1256 :         _M_ptr = 0;
-     232            1256 :         return __tmp;
-     233                 :       }
-     234                 :       
-     235                 :       /**
-     236                 :        *  @brief  Forcibly deletes the managed object.
-     237                 :        *  @param  p  A pointer (defaults to NULL).
-     238                 :        *
-     239                 :        *  This object now @e owns the object pointed to by @a p.  The
-     240                 :        *  previous object has been deleted.
-     241                 :        */
-     242                 :       void
-     243                 :       reset(element_type* __p = 0) throw()
-     244                 :       {
-     245                 :         if (__p != _M_ptr)
-     246                 :           {
-     247                 :             delete _M_ptr;
-     248                 :             _M_ptr = __p;
-     249                 :           }
-     250                 :       }
-     251                 :       
-     252                 :       /** 
-     253                 :        *  @brief  Automatic conversions
-     254                 :        *
-     255                 :        *  These operations convert an %auto_ptr into and from an auto_ptr_ref
-     256                 :        *  automatically as needed.  This allows constructs such as
-     257                 :        *  @code
-     258                 :        *    auto_ptr<Derived>  func_returning_auto_ptr(.....);
-     259                 :        *    ...
-     260                 :        *    auto_ptr<Base> ptr = func_returning_auto_ptr(.....);
-     261                 :        *  @endcode
-     262                 :        */
-     263             666 :       auto_ptr(auto_ptr_ref<element_type> __ref) throw()
-     264             666 :       : _M_ptr(__ref._M_ptr) { }
-     265                 :       
-     266                 :       auto_ptr&
-     267                 :       operator=(auto_ptr_ref<element_type> __ref) throw()
-     268                 :       {
-     269                 :         if (__ref._M_ptr != this->get())
-     270                 :           {
-     271                 :             delete _M_ptr;
-     272                 :             _M_ptr = __ref._M_ptr;
-     273                 :           }
-     274                 :         return *this;
-     275                 :       }
-     276                 :       
-     277                 :       template<typename _Tp1>
-     278             666 :         operator auto_ptr_ref<_Tp1>() throw()
-     279             666 :         { return auto_ptr_ref<_Tp1>(this->release()); }
-     280                 : 
-     281                 :       template<typename _Tp1>
-     282                 :         operator auto_ptr<_Tp1>() throw()
-     283                 :         { return auto_ptr<_Tp1>(this->release()); }
-     284                 :     } _GLIBCXX_DEPRECATED_ATTR;
-     285                 : 
-     286                 :   // _GLIBCXX_RESOLVE_LIB_DEFECTS
-     287                 :   // 541. shared_ptr template assignment and void
-     288                 :   template<>
-     289                 :     class auto_ptr<void>
-     290                 :     {
-     291                 :     public:
-     292                 :       typedef void element_type;
-     293                 :     } _GLIBCXX_DEPRECATED_ATTR;
-     294                 : 
-     295                 : _GLIBCXX_END_NAMESPACE
-     296                 : 
-     297                 : #endif /* _STL_AUTO_PTR_H */
-
-
-
- - - - -
Generated by: LTP GCOV extension version 1.6
-
- - - diff --git a/rep/usr/include/c++/4.3/backward/binders.h.gcov.html b/rep/usr/include/c++/4.3/backward/binders.h.gcov.html deleted file mode 100644 index 861e1d9..0000000 --- a/rep/usr/include/c++/4.3/backward/binders.h.gcov.html +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - - LCOV - lcov.info - /usr/include/c++/4.3/backward/binders.h - - - - - - - - - - - - - -
LTP GCOV extension - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - -
Current view:directory - usr/include/c++/4.3/backward - binders.h
Test:lcov.info
Date:2008-08-14Instrumented lines:7
Code covered:100.0 %Executed lines:7
-
- - - - - - - - -

-       1                 : // Functor implementations -*- C++ -*-
-       2                 : 
-       3                 : // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007
-       4                 : // Free Software Foundation, Inc.
-       5                 : //
-       6                 : // This file is part of the GNU ISO C++ Library.  This library is free
-       7                 : // software; you can redistribute it and/or modify it under the
-       8                 : // terms of the GNU General Public License as published by the
-       9                 : // Free Software Foundation; either version 2, or (at your option)
-      10                 : // any later version.
-      11                 : 
-      12                 : // This library is distributed in the hope that it will be useful,
-      13                 : // but WITHOUT ANY WARRANTY; without even the implied warranty of
-      14                 : // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-      15                 : // GNU General Public License for more details.
-      16                 : 
-      17                 : // You should have received a copy of the GNU General Public License along
-      18                 : // with this library; see the file COPYING.  If not, write to the Free
-      19                 : // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
-      20                 : // USA.
-      21                 : 
-      22                 : // As a special exception, you may use this file as part of a free software
-      23                 : // library without restriction.  Specifically, if other files instantiate
-      24                 : // templates or use macros or inline functions from this file, or you compile
-      25                 : // this file and link it with other files to produce an executable, this
-      26                 : // file does not by itself cause the resulting executable to be covered by
-      27                 : // the GNU General Public License.  This exception does not however
-      28                 : // invalidate any other reasons why the executable file might be covered by
-      29                 : // the GNU General Public License.
-      30                 : 
-      31                 : /*
-      32                 :  *
-      33                 :  * Copyright (c) 1994
-      34                 :  * Hewlett-Packard Company
-      35                 :  *
-      36                 :  * Permission to use, copy, modify, distribute and sell this software
-      37                 :  * and its documentation for any purpose is hereby granted without fee,
-      38                 :  * provided that the above copyright notice appear in all copies and
-      39                 :  * that both that copyright notice and this permission notice appear
-      40                 :  * in supporting documentation.  Hewlett-Packard Company makes no
-      41                 :  * representations about the suitability of this software for any
-      42                 :  * purpose.  It is provided "as is" without express or implied warranty.
-      43                 :  *
-      44                 :  *
-      45                 :  * Copyright (c) 1996-1998
-      46                 :  * Silicon Graphics Computer Systems, Inc.
-      47                 :  *
-      48                 :  * Permission to use, copy, modify, distribute and sell this software
-      49                 :  * and its documentation for any purpose is hereby granted without fee,
-      50                 :  * provided that the above copyright notice appear in all copies and
-      51                 :  * that both that copyright notice and this permission notice appear
-      52                 :  * in supporting documentation.  Silicon Graphics makes no
-      53                 :  * representations about the suitability of this software for any
-      54                 :  * purpose.  It is provided "as is" without express or implied warranty.
-      55                 :  */
-      56                 : 
-      57                 : /** @file backward/binders.h
-      58                 :  *  This is an internal header file, included by other library headers.
-      59                 :  *  You should not attempt to use it directly.
-      60                 :  */
-      61                 : 
-      62                 : #ifndef _GLIBCXX_BINDERS_H
-      63                 : #define _GLIBCXX_BINDERS_H 1
-      64                 : 
-      65                 : _GLIBCXX_BEGIN_NAMESPACE(std)
-      66                 : 
-      67                 :   // 20.3.6 binders
-      68                 :   /** @defgroup s20_3_6_binder Binder Classes
-      69                 :    *  Binders turn functions/functors with two arguments into functors with
-      70                 :    *  a single argument, storing an argument to be applied later.  For
-      71                 :    *  example, a variable @c B of type @c binder1st is constructed from a
-      72                 :    *  functor @c f and an argument @c x.  Later, B's @c operator() is called
-      73                 :    *  with a single argument @c y.  The return value is the value of @c f(x,y).
-      74                 :    *  @c B can be "called" with various arguments (y1, y2, ...) and will in
-      75                 :    *  turn call @c f(x,y1), @c f(x,y2), ...
-      76                 :    *
-      77                 :    *  The function @c bind1st is provided to save some typing.  It takes the
-      78                 :    *  function and an argument as parameters, and returns an instance of
-      79                 :    *  @c binder1st.
-      80                 :    *
-      81                 :    *  The type @c binder2nd and its creator function @c bind2nd do the same
-      82                 :    *  thing, but the stored argument is passed as the second parameter instead
-      83                 :    *  of the first, e.g., @c bind2nd(std::minus<float>,1.3) will create a
-      84                 :    *  functor whose @c operator() accepts a floating-point number, subtracts
-      85                 :    *  1.3 from it, and returns the result.  (If @c bind1st had been used,
-      86                 :    *  the functor would perform "1.3 - x" instead.
-      87                 :    *
-      88                 :    *  Creator-wrapper functions like @c bind1st are intended to be used in
-      89                 :    *  calling algorithms.  Their return values will be temporary objects.
-      90                 :    *  (The goal is to not require you to type names like
-      91                 :    *  @c std::binder1st<std::plus<int>> for declaring a variable to hold the
-      92                 :    *  return value from @c bind1st(std::plus<int>,5).
-      93                 :    *
-      94                 :    *  These become more useful when combined with the composition functions.
-      95                 :    *
-      96                 :    *  @{
-      97                 :    */
-      98                 :   /// One of the @link s20_3_6_binder binder functors@endlink.
-      99                 :   template<typename _Operation>
-     100                 :     class binder1st
-     101                 :     : public unary_function<typename _Operation::second_argument_type,
-     102                 :                             typename _Operation::result_type>
-     103              16 :     {
-     104                 :     protected:
-     105                 :       _Operation op;
-     106                 :       typename _Operation::first_argument_type value;
-     107                 : 
-     108                 :     public:
-     109                 :       binder1st(const _Operation& __x,
-     110              19 :                 const typename _Operation::first_argument_type& __y)
-     111              19 :       : op(__x), value(__y) { }
-     112                 : 
-     113                 :       typename _Operation::result_type
-     114              70 :       operator()(const typename _Operation::second_argument_type& __x) const
-     115              70 :       { return op(value, __x); }
-     116                 : 
-     117                 :       // _GLIBCXX_RESOLVE_LIB_DEFECTS
-     118                 :       // 109.  Missing binders for non-const sequence elements
-     119                 :       typename _Operation::result_type
-     120                 :       operator()(typename _Operation::second_argument_type& __x) const
-     121                 :       { return op(value, __x); }
-     122                 :     } _GLIBCXX_DEPRECATED_ATTR;
-     123                 : 
-     124                 :   /// One of the @link s20_3_6_binder binder functors@endlink.
-     125                 :   template<typename _Operation, typename _Tp>
-     126                 :     inline binder1st<_Operation>
-     127              19 :     bind1st(const _Operation& __fn, const _Tp& __x)
-     128                 :     {
-     129                 :       typedef typename _Operation::first_argument_type _Arg1_type;
-     130              19 :       return binder1st<_Operation>(__fn, _Arg1_type(__x));
-     131                 :     }
-     132                 : 
-     133                 :   /// One of the @link s20_3_6_binder binder functors@endlink.
-     134                 :   template<typename _Operation>
-     135                 :     class binder2nd
-     136                 :     : public unary_function<typename _Operation::first_argument_type,
-     137                 :                             typename _Operation::result_type>
-     138                 :     {
-     139                 :     protected:
-     140                 :       _Operation op;
-     141                 :       typename _Operation::second_argument_type value;
-     142                 : 
-     143                 :     public:
-     144                 :       binder2nd(const _Operation& __x,
-     145                 :                 const typename _Operation::second_argument_type& __y)
-     146                 :       : op(__x), value(__y) { }
-     147                 : 
-     148                 :       typename _Operation::result_type
-     149                 :       operator()(const typename _Operation::first_argument_type& __x) const
-     150                 :       { return op(__x, value); }
-     151                 : 
-     152                 :       // _GLIBCXX_RESOLVE_LIB_DEFECTS
-     153                 :       // 109.  Missing binders for non-const sequence elements
-     154                 :       typename _Operation::result_type
-     155                 :       operator()(typename _Operation::first_argument_type& __x) const
-     156                 :       { return op(__x, value); }
-     157                 :     } _GLIBCXX_DEPRECATED_ATTR;
-     158                 : 
-     159                 :   /// One of the @link s20_3_6_binder binder functors@endlink.
-     160                 :   template<typename _Operation, typename _Tp>
-     161                 :     inline binder2nd<_Operation>
-     162                 :     bind2nd(const _Operation& __fn, const _Tp& __x)
-     163                 :     {
-     164                 :       typedef typename _Operation::second_argument_type _Arg2_type;
-     165                 :       return binder2nd<_Operation>(__fn, _Arg2_type(__x));
-     166                 :     } 
-     167                 :   /** @}  */
-     168                 : 
-     169                 : _GLIBCXX_END_NAMESPACE
-     170                 : 
-     171                 : #endif /* _GLIBCXX_BINDERS_H */
-
-
-
- - - - -
Generated by: LTP GCOV extension version 1.6
-
- - - diff --git a/rep/usr/include/c++/4.3/backward/index.html b/rep/usr/include/c++/4.3/backward/index.html deleted file mode 100644 index 3ef4b52..0000000 --- a/rep/usr/include/c++/4.3/backward/index.html +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - LCOV - lcov.info - /usr/include/c++/4.3/backward - - - - - - - - - - - - - -
LTP GCOV extension - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - -
Current view:directory - /usr/include/c++/4.3/backward
Test:lcov.info
Date:2008-08-14Instrumented lines:22
Code covered:100.0 %Executed lines:22
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

FilenameCoverage
auto_ptr.h -
100.0%
-
100.0 %15 / 15 lines
binders.h -
100.0%
-
100.0 %7 / 7 lines
-
-
- - - - -
Generated by: LTP GCOV extension version 1.6
-
- - - -- cgit v1.2.3