This file is indexed.

/usr/share/gconf/schemas/ggcov.schemas is in ggcov 0.8.4-3ubuntu1.

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
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE gconfschemafile SYSTEM "/usr/share/sgml/gconf/gconf-1.0.dtd">
<!--
  ggcov - A GTK frontend for exploring gcov coverage data
  Copyright (c) 2005-2006 Greg Banks <gnb@users.sourceforge.net>

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 2 of the License, or
  (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

  $Id: ggcov.schemas,v 1.3 2010-05-09 05:37:15 gnb Exp $

  Note: this schema is not necessary for ggcov's correct operation,
  it merely provides textual comments for users of gconf-editor.
  In particular, the default values are also implemented by the
  C++ source.
  -->
<gconfschemafile>
  <schemalist>

    <schema>
      <key>/schemas/apps/ggcov/colors/covered_background</key>
      <applyto>/apps/ggcov/colors/covered_background</applyto>
      <owner>ggcov</owner>
      <type>string</type>
      <default>#8080d0d08080</default>
      <locale name="C">
	<short>Covered backgound color</short>
	<long>Color used to draw the backgound of boxes in the
	Call Graph window to show that the corresponding object
	is completely covered, i.e. all parts have been executed
	at least once.</long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/ggcov/colors/covered_foreground</key>
      <applyto>/apps/ggcov/colors/covered_foreground</applyto>
      <owner>ggcov</owner>
      <type>string</type>
      <default>#0000c0c00000</default>
      <locale name="C">
	<short>Covered foregound color</short>
	<long>Color used to draw the foreground of source text
	lines and list entries to show that the corresponding
	object is completely covered, i.e. all parts have been
	executed at least once.</long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/ggcov/colors/partcovered_background</key>
      <applyto>/apps/ggcov/colors/partcovered_background</applyto>
      <owner>ggcov</owner>
      <type>string</type>
      <default>#d0d0d0d08080</default>
      <locale name="C">
	<short>Partially covered backgound color</short>
	<long>Color used to draw the backgound of boxes in the
	Call Graph window to show that the corresponding object
	is partially covered, i.e. some but not all parts have 
	been executed at least once.</long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/ggcov/colors/partcovered_foreground</key>
      <applyto>/apps/ggcov/colors/partcovered_foreground</applyto>
      <owner>ggcov</owner>
      <type>string</type>
      <default>#a0a0a0a00000</default>
      <locale name="C">
	<short>Partially covered foregound color</short>
	<long>Color used to draw the foreground of source text
	lines and list entries to show that the corresponding
	object is partially covered, i.e. some but not all parts
	have been executed at least once.</long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/ggcov/colors/suppressed_background</key>
      <applyto>/apps/ggcov/colors/suppressed_background</applyto>
      <owner>ggcov</owner>
      <type>string</type>
      <default>#80808080d0d0</default>
      <locale name="C">
	<short>Suppressed backgound color</short>
	<long>Color used to draw the backgound of boxes in the
	Call Graph window to show that the corresponding object
	is suppressed, e.g. inside an #ifdef which is mentioned
	in the global ifdef suppression list.  Suppressed objects
	are normally hidden from view.</long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/ggcov/colors/suppressed_foreground</key>
      <applyto>/apps/ggcov/colors/suppressed_foreground</applyto>
      <owner>ggcov</owner>
      <type>string</type>
      <default>#000000008080</default>
      <locale name="C">
	<short>Suppressed foregound color</short>
	<long>Color used to draw the foreground of source text
	lines and list entries to show that the corresponding
	object is suppressed, e.g. inside an #ifdef which is
	mentioned in the global ifdef suppression list.  Suppressed
	objects are normally hidden from view.</long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/ggcov/colors/uncovered_background</key>
      <applyto>/apps/ggcov/colors/uncovered_background</applyto>
      <owner>ggcov</owner>
      <type>string</type>
      <default>#d0d080808080</default>
      <locale name="C">
	<short>Uncovered backgound color</short>
	<long>Color used to draw the backgound of boxes in the
	Call Graph window to show that the corresponding object
	is uncovered, i.e. no parts have been executed.</long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/ggcov/colors/uncovered_foreground</key>
      <applyto>/apps/ggcov/colors/uncovered_foreground</applyto>
      <owner>ggcov</owner>
      <type>string</type>
      <default>#c0c000000000</default>
      <locale name="C">
	<short>Uncovered foregound color</short>
	<long>Color used to draw the foreground of source text
	lines and list entries to show that the corresponding
	object is uncovered, i.e. no parts have been executed.</long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/ggcov/colors/uninstrumented_background</key>
      <applyto>/apps/ggcov/colors/uninstrumented_background</applyto>
      <owner>ggcov</owner>
      <type>string</type>
      <default>#a0a0a0a0a0a0</default>
      <locale name="C">
	<short>Uninstrumented backgound color</short>
	<long>Color used to draw the backgound of boxes in the
	Call Graph window to show that the corresponding object
	is uninstrumented, i.e. no execution counts are available.</long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/ggcov/colors/uninstrumented_foreground</key>
      <applyto>/apps/ggcov/colors/uninstrumented_foreground</applyto>
      <owner>ggcov</owner>
      <type>string</type>
      <default>#000000000000</default>
      <locale name="C">
	<short>Uninstrumented foregound color</short>
	<long>Color used to draw the foreground of source text
	lines and list entries to show that the corresponding
	object is uninstrumented, i.e. no execution counts are
	available.</long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/ggcov/general/reuse_srcwin</key>
      <applyto>/apps/ggcov/general/reuse_srcwin</applyto>
      <owner>ggcov</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
	<short>Reuse Source window</short>
	<long>If true then the same Source window is used to show
	source every time a View button is clicked, otherwise a
	new Source window is opened.</long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/ggcov/general/reuse_summwin</key>
      <applyto>/apps/ggcov/general/reuse_summwin</applyto>
      <owner>ggcov</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
	<short>Reuse Summary window</short>
	<long>If true then the same Source window is used to show
	source every time a Summarise menu item is selected, otherwise
	a new Summary window is opened.</long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/ggcov/general/text_size</key>
      <applyto>/apps/ggcov/general/text_size</applyto>
      <owner>ggcov</owner>
      <type>int</type>
      <default>10240</default>
      <locale name="C">
	<short>Text size</short>
	<long>Size of text in the Source, Report, and Help windows,
	measured in Pango units (where 1024 Pango units = 1 Font point).
	</long>
      </locale>
    </schema>

  </schemalist>
</gconfschemafile>