This file is indexed.

/usr/include/xsd/cxx/tree/std-ostream-map.hxx is in xsdcxx 4.0.0-6.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
// file      : xsd/cxx/tree/std-ostream-map.hxx
// copyright : Copyright (c) 2005-2014 Code Synthesis Tools CC
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#ifndef XSD_CXX_TREE_STD_OSTREAM_MAP_HXX
#define XSD_CXX_TREE_STD_OSTREAM_MAP_HXX

#include <map>
#include <cstddef>  // std::size_t
#include <ostream>
#include <typeinfo>

#include <xsd/cxx/tree/elements.hxx>

namespace xsd
{
  namespace cxx
  {
    namespace tree
    {
      template <typename C>
      struct std_ostream_map
      {
        typedef std::type_info type_id;
        typedef void (*inserter) (std::basic_ostream<C>&, const type&);

        std_ostream_map ();

        void
        register_type (const type_id&, inserter, bool replace = true);

        void
        unregister_type (const type_id&);

        void
        insert (std::basic_ostream<C>&, const type&);

      public:
        inserter
        find (const type_id&) const;

      private:
        struct type_id_comparator
        {
          bool
          operator() (const type_id* x, const type_id* y) const
          {
            // XL C++ on AIX has buggy type_info::before() in that
            // it returns true for two different type_info objects
            // that happened to be for the same type.
            //
#if defined(__xlC__) && defined(_AIX)
            return *x != *y && x->before (*y);
#else
            return x->before (*y);
#endif
          }
        };

        typedef
        std::map<const type_id*, inserter, type_id_comparator>
        type_map;

        type_map type_map_;
      };

      //
      //
      template<unsigned long id, typename C>
      struct std_ostream_plate
      {
        static std_ostream_map<C>* map;
        static std::size_t count;

        std_ostream_plate ();
        ~std_ostream_plate ();
      };

      template<unsigned long id, typename C>
      std_ostream_map<C>* std_ostream_plate<id, C>::map = 0;

      template<unsigned long id, typename C>
      std::size_t std_ostream_plate<id, C>::count = 0;


      //
      //
      template<unsigned long id, typename C>
      inline std_ostream_map<C>&
      std_ostream_map_instance ()
      {
        return *std_ostream_plate<id, C>::map;
      }

      //
      //
      template<typename C, typename T>
      void
      inserter_impl (std::basic_ostream<C>&, const type&);

      template<unsigned long id, typename C, typename T>
      struct std_ostream_initializer
      {
        std_ostream_initializer ();
        ~std_ostream_initializer ();
      };
    }
  }
}

#include <xsd/cxx/tree/std-ostream-map.txx>

#endif // XSD_CXX_TREE_STD_OSTREAM_MAP_HXX