This file is indexed.

/usr/include/octave-4.2.2/octave/gripes.h is in liboctave-dev 4.2.2-1ubuntu1.

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
235
/*

Copyright (C) 1993-2017 John W. Eaton

This file is part of Octave.

Octave 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 3 of the License, or (at your
option) any later version.

Octave 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 Octave; see the file COPYING.  If not, see
<http://www.gnu.org/licenses/>.

*/

// FIXME: All gripe_XXX functions deprecated in 4.2.  Remove file in 4.6
#if ! defined (octave_gripes_h)
#define octave_gripes_h 1

#include "octave-config.h"

#include <string>

#include "lo-array-gripes.h"

class octave_value;
namespace octave
{
  class execution_exception;
}

////////////////////////////////////////////////////////////////////////////////
// Alphabetized list of gripes.
////////////////////////////////////////////////////////////////////////////////

OCTAVE_DEPRECATED ("use 'err_2_or_3_dim_plot' instead")
OCTAVE_NORETURN OCTINTERP_API extern void
gripe_2_or_3_dim_plot (void);

OCTAVE_DEPRECATED ("use 'err_data_conversion' instead")
OCTAVE_NORETURN OCTINTERP_API extern void
gripe_data_conversion (const char *from, const char *to);

OCTAVE_DEPRECATED ("use 'warn_data_file_in_path' instead")
OCTINTERP_API extern void
gripe_data_file_in_path (const std::string& fcn, const std::string& file);

OCTAVE_DEPRECATED ("use 'err_disabled_feature' or 'warn_disabled_feature' instead")
OCTAVE_NORETURN OCTINTERP_API extern void
gripe_disabled_feature (const std::string& fcn,
                        const std::string& feature,
                        const std::string& pkg="Octave");

OCTAVE_DEPRECATED ("use 'warn_divide_by_zero' instead")
OCTINTERP_API extern void
gripe_divide_by_zero (void);

OCTAVE_DEPRECATED ("use 'warn_empty_arg' instead")
OCTINTERP_API extern void
gripe_empty_arg (const char *name, bool is_error);

OCTAVE_DEPRECATED ("use 'warn_implicit_conversion' instead")
OCTINTERP_API extern void
gripe_implicit_conversion (const char *id, const char *from, const char *to);

OCTAVE_DEPRECATED ("use 'warn_implicit_conversion' instead")
OCTINTERP_API extern void
gripe_implicit_conversion (const std::string& id, const std::string& from,
                           const std::string& to);

OCTAVE_DEPRECATED ("use 'err_indexed_cs_list' instead")
OCTAVE_NORETURN OCTINTERP_API extern void
gripe_indexed_cs_list (void);

OCTAVE_DEPRECATED ("use 'err_invalid_conversion' instead")
OCTAVE_NORETURN OCTINTERP_API extern void
gripe_invalid_conversion (const std::string& from, const std::string& to);

OCTAVE_DEPRECATED ("use 'err_invalid_inquiry_subscript' instead")
OCTAVE_NORETURN OCTINTERP_API extern void
gripe_invalid_inquiry_subscript (void);

OCTAVE_DEPRECATED ("use 'warn_invalid_value_specified' instead")
OCTINTERP_API extern void
gripe_invalid_value_specified (const char *name);

OCTAVE_DEPRECATED ("use 'warn_logical_conversion' instead")
OCTINTERP_API extern void
gripe_logical_conversion (void);

OCTAVE_DEPRECATED ("use 'err_nonbraced_cs_list_assignment' instead")
OCTAVE_NORETURN OCTINTERP_API extern void
gripe_nonbraced_cs_list_assignment (void);

OCTAVE_DEPRECATED ("use 'err_nonconformant' instead")
OCTAVE_NORETURN OCTINTERP_API extern void
gripe_nonconformant (void);

OCTAVE_DEPRECATED ("use 'err_nonconformant' instead")
OCTAVE_NORETURN OCTINTERP_API extern void
gripe_nonconformant (octave_idx_type r1, octave_idx_type c1,
                     octave_idx_type r2, octave_idx_type c2);

OCTAVE_DEPRECATED ("use 'err_not_implemented' instead")
OCTAVE_NORETURN OCTINTERP_API extern void
gripe_not_implemented (const char *);

// FIXME: Deprecated in 4.2, remove in 4.6
OCTAVE_DEPRECATED ("use 'err_disabled_feature' or 'warn_disabled_feature' instead")
OCTAVE_NORETURN OCTINTERP_API extern void
gripe_not_supported (const char *);

OCTAVE_DEPRECATED ("use 'err_range_invalid' instead")
OCTAVE_NORETURN OCTINTERP_API extern void
gripe_range_invalid (void);

OCTAVE_DEPRECATED ("use 'err_square_matrix_required' instead")
OCTAVE_NORETURN OCTINTERP_API extern void
gripe_square_matrix_required (const char *name);

OCTAVE_DEPRECATED ("use 'err_string_invalid' instead")
OCTAVE_NORETURN OCTINTERP_API extern void
gripe_string_invalid (void);

OCTAVE_DEPRECATED ("use 'err_unrecognized_data_fmt' instead")
OCTAVE_NORETURN OCTINTERP_API extern void
gripe_unrecognized_data_fmt (const char *warn_for);

OCTAVE_DEPRECATED ("use 'err_unrecognized_float_fmt' instead")
OCTAVE_NORETURN OCTINTERP_API extern void
gripe_unrecognized_float_fmt (void);

OCTAVE_DEPRECATED ("use 'err_user_returned_invalid' instead")
OCTAVE_NORETURN OCTINTERP_API extern void
gripe_user_returned_invalid (const char *name);

OCTAVE_DEPRECATED ("use 'err_user_supplied_eval' instead")
OCTAVE_NORETURN OCTINTERP_API extern void
gripe_user_supplied_eval (const char *name);

OCTAVE_DEPRECATED ("use 'err_user_supplied_eval' instead")
OCTAVE_NORETURN OCTINTERP_API extern void
gripe_user_supplied_eval (octave::execution_exception& e, const char *name);

OCTAVE_DEPRECATED ("use 'warn_complex_cmp' instead")
OCTINTERP_API extern void
gripe_warn_complex_cmp (void);

OCTAVE_DEPRECATED ("use 'err_wrong_type_arg' instead")
OCTINTERP_API extern void
gripe_wrong_type_arg (const char *name, const char *s,
                      bool is_error = true);

OCTAVE_DEPRECATED ("use 'err_wrong_type_arg' instead")
OCTINTERP_API extern void
gripe_wrong_type_arg (octave::execution_exception& e,
                      const char *name, const char *s,
                      bool is_error = true);

OCTAVE_DEPRECATED ("use 'err_wrong_type_arg' instead")
OCTINTERP_API extern void
gripe_wrong_type_arg (const char *name, const std::string& s,
                      bool is_error = true);

OCTAVE_DEPRECATED ("use 'err_wrong_type_arg' instead")
OCTINTERP_API extern void
gripe_wrong_type_arg (octave::execution_exception& e,
                      const char *name, const std::string& s,
                      bool is_error = true);

OCTAVE_DEPRECATED ("use 'err_wrong_type_arg' or 'warn_wrong_type_arg' instead")
OCTINTERP_API extern void
gripe_wrong_type_arg (const char *name, const octave_value& tc,
                      bool is_error = true);

OCTAVE_DEPRECATED ("use 'err_wrong_type_arg' instead")
OCTINTERP_API extern void
gripe_wrong_type_arg (octave::execution_exception& e,
                      const char *name, const octave_value& tc,
                      bool is_error = true);

OCTAVE_DEPRECATED ("use 'err_wrong_type_arg' instead")
OCTINTERP_API extern void
gripe_wrong_type_arg (const std::string& name, const octave_value& tc,
                      bool is_error = true);

OCTAVE_DEPRECATED ("use 'err_wrong_type_arg' instead")
OCTINTERP_API extern void
gripe_wrong_type_arg (octave::execution_exception& e,
                      const std::string& name, const octave_value& tc,
                      bool is_error = true);

OCTAVE_DEPRECATED ("use 'err_wrong_type_arg' instead")
OCTINTERP_API extern void
gripe_wrong_type_arg (const char *s, bool is_error = true);

OCTAVE_DEPRECATED ("use 'err_wrong_type_arg' instead")
OCTINTERP_API extern void
gripe_wrong_type_arg (octave::execution_exception& e, const char *s,
                      bool is_error = true);

OCTAVE_DEPRECATED ("use 'err_wrong_type_arg' instead")
OCTINTERP_API extern void
gripe_wrong_type_arg (const std::string& s, bool is_error = true);

OCTAVE_DEPRECATED ("use 'err_wrong_type_arg' instead")
OCTINTERP_API extern void
gripe_wrong_type_arg (octave::execution_exception& e, const std::string& s,
                      bool is_error = true);

OCTAVE_DEPRECATED ("use 'err_wrong_type_arg' instead")
OCTINTERP_API extern void
gripe_wrong_type_arg (const octave_value& tc, bool is_error = true);

OCTAVE_DEPRECATED ("use 'err_wrong_type_arg' instead")
OCTINTERP_API extern void
gripe_wrong_type_arg (octave::execution_exception& e, const octave_value& tc,
                      bool is_error = true);

OCTAVE_DEPRECATED ("use 'err_wrong_type_arg_for_binary_op' instead")
OCTAVE_NORETURN OCTINTERP_API extern void
gripe_wrong_type_arg_for_binary_op (const octave_value& op);

OCTAVE_DEPRECATED ("use 'err_wrong_type_arg_for_unary_op' instead")
OCTAVE_NORETURN OCTINTERP_API extern void
gripe_wrong_type_arg_for_unary_op (const octave_value& op);

#endif