This file is indexed.

/usr/lib/bouml/xmi2/7553.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
 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
class UmlClassMember
!!!146178.cpp!!!	write_scope(inout out : FileOut) : void
  if (isClassMember())
	out << " isStatic=\"true\"";
!!!148354.cpp!!!	write_visibility(inout out : FileOut) : void
  aVisibility v;

  switch (_lang) {
  case Uml:
    v = visibility();
    break;
  case Cpp:
    v = (cppVisibility() == DefaultVisibility) 
		? visibility()
		: cppVisibility();
    break;
  default: // Java
    v = (javaDecl().find("${visibility}") != -1)
		? visibility() : PackageVisibility;
    break;
  }

  out << " visibility=\"";

  if (_vis_prefix)
    out << "vis_";
  
  switch (v) {
  case PublicVisibility:
    out << "public\"";
    break;
  case ProtectedVisibility:
    out << "protected\"";
    break;
  case PrivateVisibility:
    out << "private\"";
    break;
  default:
    out << "package\"";
  }
!!!150658.cpp!!!	write_annotation(inout out : FileOut) : void
  if (_lang == Java) {
    QCString a = javaAnnotations();
  
    if (!a.isEmpty()) {
      out.indent();
      out << "<xmi:Extension extender=\"Bouml\">\n\t<annotation value=\"";
      out.quote(a);
      out << "\"/>\n";
      out.indent();
      out << "</xmi:Extension>\n";
    }
  }
!!!226178.cpp!!!	write_constraint(inout out : FileOut) : void
  QCString s = constraint();
  
  if (! s.isEmpty()) {
    out.indent();
    out << "<ownedRule xmi:type=\"uml:Constraint\"";
    out.id_prefix(this, "CONSTRAINT_");
    out.ref(this, "constrainedElement");
    out << ">\n";
    out.indent();
    out << "\t<specification xmi:type=\"uml:OpaqueExpression\"";
    out.id_prefix(this, "CSPEC_");
    out << ">\n";
    out.indent();
    out << "\t\t<body>";
    out.quote(s);
    out << "</body>\n";
    out.indent();
    out << "\t</specification>\n";
    out.indent();
    out << "</ownedRule>\n";
  }
!!!148610.cpp!!!	true_name(in name : string, in decl : string) : string
int index = decl.find("${name}", 0, FALSE);

if (index == -1)
  // too complicated, return the Uml one
  return name;

int begin = index;

while ((begin != 0) && identChar(decl[begin - 1]))
  begin -= 1;

int sup = index + 7;

while (identChar(decl[sup]))
  sup += 1;

QCString r = decl.mid(begin, index - begin);
QCString k = decl.mid(index + 2, 4);

if (k == "name")
  r += name;
else if (k == "Name")
  r += name.left(1).upper() + name.mid(1);
else
  // NAME
  r += name.upper();

r += decl.mid(index + 7, sup - index - 7);

return r;
!!!148738.cpp!!!	identChar(in c : char) : bool
return (((c >= 'a') && (c <= 'z')) ||
	((c >= 'A') && (c <= 'Z')) ||
	((c >= '0') && (c <= '9')) ||
	(c == '_'));
!!!148994.cpp!!!	write_type(inout out : FileOut, in t : UmlTypeSpec, in s : string, in k_name : str, in k_type : str) : void
s = s.simplifyWhiteSpace();

int index;

// remove k_name and all after it except []
if (k_name && *k_name && ((index = s.find(k_name, 0, FALSE)) != -1)) {
  //remove name
  s.remove(index, strlen(k_name));

  for (;;) {
    if (s[index] == ' ')
      s.remove(index, 1);
    
    if (s[index] != '[')
      break;
    
    index += 1;
    
    int index2;
    
    if ((index2 = s.find(index, ']')) == -1)
      break;
    
    index = index2 + 1;
  }
  
  s.resize(index);
}
else if ((index = s.find('=')) != -1) {
  s.resize(index);
  s = s.simplifyWhiteSpace();
}

if (k_type && *k_type && ((index = s.find(k_type)) == -1))
  out.idref_datatype(s);
else if (s != k_type) {
  // have modifiers
  if (t.type != 0) {
    s.replace(index, strlen(k_type), t.type->name());
    out.idref(s, t.type);
  }
  else
    out.idref_datatype(s.replace(index, strlen(k_type), t.explicit_type));
}
else if (t.type != 0)
  out.idref(t.type);
else
  out.idref_datatype(t.explicit_type);
!!!149122.cpp!!!	remove_comments(inout s : QCString) : void
int index;

if ((index = s.find("${comment}")) != -1)
  s.replace(index, 10, " ");

index = 0;
while ((index = s.find('#', index)) != -1) {
  int index2 = s.find('\n', index + 1);
  
  if (index2 == -1) {
    s.resize(index);
    break;
  }
  
  s.remove(index, index2 - index);
}

index = 0;
while ((index = s.find("//", index)) != -1) {
  int index2 = s.find('\n', index + 2);
  
  if (index2 == -1) {
    s.resize(index);
    break;
  }
  
  s.remove(index, index2 - index);
}

index = 0;
while ((index = s.find("/*", index)) != -1) {
  int index2 = s.find("*/", index + 2);
  
  if (index2 == -1) {
    s.resize(index);
    break;
  }
  
  s.replace(index, index2 + 2 - index, " ");
}

s = s.simplifyWhiteSpace();