This file is indexed.

/usr/include/BALL/CONCEPT/composite.iC is in libball1.4-dev 1.4.1+20111206-3.

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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//

BALL_INLINE 
Composite& Composite::operator = (const Composite& composite)
{
  set(composite);
  return *this;
}    

BALL_INLINE 
void Composite::get(Composite& composite, bool deep) const
{
  composite.set(*this, deep);
}

BALL_INLINE 
Size Composite::getDegree() const
{
  return number_of_children_;
}

BALL_INLINE 
Size Composite::countDescendants() const
{
  return (countDescendants_() - 1);
}

BALL_INLINE 
const Composite& Composite::getRoot() const
{
  return (const_cast<Composite*>(this)->getRoot());
}

BALL_INLINE 
const Composite* Composite::getLowestCommonAncestor(const Composite &composite) const
{
  return ((Composite *)this)->getLowestCommonAncestor((Composite &)composite);
}

BALL_INLINE 
Composite* Composite::getParent()
{
  return parent_;
}

BALL_INLINE 
const Composite* Composite::getParent() const
{
  return parent_;
}

BALL_INLINE 
const Composite* Composite::getChild(Index index) const
{
  return ((Composite *)this)->getChild(index);
}

BALL_INLINE 
const Composite* Composite::getSibling(Index index) const
{
  return ((Composite *)this)->getSibling(index);
}

BALL_INLINE 
Composite* Composite::getFirstChild()
{
  return first_child_;
}

BALL_INLINE 
const Composite* Composite::getFirstChild() const
{
  return first_child_;
}

BALL_INLINE 
Composite* Composite::getLastChild()
{
  return last_child_;
}

BALL_INLINE 
const Composite* Composite::getLastChild() const
{
  return last_child_;
}

BALL_INLINE 
const PreciseTime& Composite::getModificationTime() const 
{
  return modification_stamp_.getTime();
}

BALL_INLINE 
const PreciseTime& Composite::getSelectionTime() const 
{
  return selection_stamp_.getTime();
}

BALL_INLINE 
bool Composite::isEmpty() const
{
  return (number_of_children_ == 0);
}

BALL_INLINE 
bool Composite::isRoot() const
{
  return (parent_ == 0);
}
  
BALL_INLINE 
bool Composite::isAncestorOf(const Composite& composite) const
{
	return composite.isDescendantOf(*this);
}

BALL_INLINE 
bool Composite::isRootOf(const Composite& composite) const
{
  return (((parent_ == 0) && (isAncestorOf(composite) == true)) || (&composite == this));
}
  
BALL_INLINE 
bool Composite::isInterior() const
{
  return (parent_ != 0 && first_child_ != 0);
}

BALL_INLINE 
bool Composite::hasChild() const
{
  return (first_child_ != 0);
}

BALL_INLINE 
bool Composite::isChildOf(const Composite &composite) const
{
  return (parent_ == &composite);
}

BALL_INLINE 
bool Composite::isFirstChild() const
{
  return (parent_ != 0 && parent_->first_child_ == this);
}

BALL_INLINE 
bool Composite::isFirstChildOf(const Composite &composite) const
{
  return (composite.first_child_ == this);
}

BALL_INLINE 
bool Composite::isLastChild() const
{
  return (parent_ != 0 && parent_->last_child_ == this);
}

BALL_INLINE 
bool Composite::isLastChildOf(const Composite &composite) const
{
  return (composite.last_child_ == this);
}

BALL_INLINE 
bool Composite::hasParent() const
{
  return (parent_ != 0);
}

BALL_INLINE 
bool Composite::isParentOf(const Composite &composite) const
{
  return (composite.parent_ == this);
}

BALL_INLINE 
bool Composite::hasSibling() const
{
  return (parent_ != 0 && parent_->number_of_children_ > 1);
}

BALL_INLINE 
bool Composite::isSiblingOf(const Composite &composite) const
{
  return ((composite.parent_ == parent_) && (parent_ != 0) && (&composite != this));
}

BALL_INLINE 
bool Composite::hasPreviousSibling() const
{
  return (previous_ != 0);
}

BALL_INLINE 
bool Composite::isPreviousSiblingOf(const Composite &composite) const
{
  return (next_ == &composite);
}

BALL_INLINE 
bool Composite::hasNextSibling() const
{
  return (next_ != 0);
}

BALL_INLINE 
bool Composite::isNextSiblingOf(const Composite &composite) const
{
  return (previous_ == &composite);
}
  
BALL_INLINE 
bool Composite::isRelatedWith(const Composite &composite) const
{
  return ((&composite == this)
					|| composite.isAncestorOf(*this)
					|| this->isAncestorOf(composite));
}
  
BALL_INLINE
bool Composite::containsSelection() const
{
	return (contains_selection_);
}

BALL_INLINE 
void Composite::host(Visitor<Composite>& visitor)
{
  visitor.visit(*this);
}