This file is indexed.

/usr/lib/bouml/cpp_utilities/146560.bodies is in bouml-plugouts-src 4.21-1.

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
class UmlBaseFragmentCompartment
!!!209280.cpp!!!	add_contained_(in x : UmlFragment) : void
  _contained.resize(_contained.size() + 1);
  _contained.insert(_contained.size() - 1, x);
!!!209280.java!!!	add_contained_(in x : UmlFragment) : void
  UmlFragment[] v = _contained;
  int n = _contained.length;

  _contained = new UmlFragment[n + 1];
  System.arraycopy(v, 0, _contained, 0, n);
  _contained[n] = x;
!!!209408.cpp!!!	add_text_(in x : string) : void
  _texts.resize(_texts.size() + 1);
  _texts.insert(_texts.size() - 1, strdup(x));
!!!209408.java!!!	add_text_(in x : string) : void
  String[] v = _texts;
  int n = _texts.length;

  _texts = new String[n + 1];
  System.arraycopy(v, 0, _texts, 0, n);
  _texts[n] = x;
!!!221824.cpp!!!	add_cont_(in s : string, in cy : int) : void
  if (cy < _fragment->vcenter_(_rank))
    _start_continuation = s;
  else
    _end_continuation = s;
!!!221824.java!!!	add_cont_(in s : string, in cy : int) : void
  if (cy < _fragment.vcenter_(_rank))
    _start_continuation = s;
  else
    _end_continuation = s;
!!!209664.cpp!!!	smaller(in x : UmlBaseFragmentCompartment) : bool
  return ((_fragment->w() < x->_fragment->w()) &&
          (_fragment->h() < x->_fragment->h()));
!!!209664.java!!!	smaller(in x : UmlBaseFragmentCompartment) : bool
  return ((_fragment.w() < x._fragment.w()) &&
          (_fragment.h() < x._fragment.h()));
!!!209792.cpp!!!	read_(in fragment : UmlBaseFragment, in rank : int) : void
  _fragment = (UmlFragment *) fragment;
  _rank = rank;
  _y = UmlCom::read_unsigned();
!!!209792.java!!!	read_(in fragment : UmlBaseFragment, in rank : int) : void
  _fragment = (UmlFragment) fragment;
  _rank = rank;
  _y = UmlCom.read_unsigned();
  _contained = new UmlFragment[0];
  _texts = new String[0];