Lines Matching +full:- +full:-

1 /* ----------------------------------------------------------------------------
2 libconfig - A library for processing structured configuration files
3 Copyright (C) 2005-2018 Mark A Lindner
20 ----------------------------------------------------------------------------
38 // ---------------------------------------------------------------------------
46 return(self->evaluateIncludePath(path, error)); in __include_func()
49 // ---------------------------------------------------------------------------
56 // ---------------------------------------------------------------------------
66 // ---------------------------------------------------------------------------
73 // ---------------------------------------------------------------------------
80 // ---------------------------------------------------------------------------
127 // ---------------------------------------------------------------------------
148 // ---------------------------------------------------------------------------
158 // ---------------------------------------------------------------------------
169 // ---------------------------------------------------------------------------
180 // ---------------------------------------------------------------------------
187 // ---------------------------------------------------------------------------
194 // ---------------------------------------------------------------------------
202 // ---------------------------------------------------------------------------
212 // ---------------------------------------------------------------------------
219 // ---------------------------------------------------------------------------
226 // ---------------------------------------------------------------------------
233 // ---------------------------------------------------------------------------
240 // ---------------------------------------------------------------------------
248 // ---------------------------------------------------------------------------
255 // ---------------------------------------------------------------------------
263 // ---------------------------------------------------------------------------
271 // ---------------------------------------------------------------------------
278 // ---------------------------------------------------------------------------
285 // ---------------------------------------------------------------------------
293 // ---------------------------------------------------------------------------
300 // ---------------------------------------------------------------------------
307 // ---------------------------------------------------------------------------
314 // ---------------------------------------------------------------------------
326 // ---------------------------------------------------------------------------
334 // ---------------------------------------------------------------------------
341 // ---------------------------------------------------------------------------
348 // ---------------------------------------------------------------------------
355 // ---------------------------------------------------------------------------
362 // ---------------------------------------------------------------------------
369 // ---------------------------------------------------------------------------
381 // ---------------------------------------------------------------------------
388 // ---------------------------------------------------------------------------
395 // ---------------------------------------------------------------------------
402 // ---------------------------------------------------------------------------
409 // ---------------------------------------------------------------------------
416 // ---------------------------------------------------------------------------
423 // ---------------------------------------------------------------------------
430 // ---------------------------------------------------------------------------
451 // ---------------------------------------------------------------------------
459 // ---------------------------------------------------------------------------
467 // ---------------------------------------------------------------------------
474 // ---------------------------------------------------------------------------
482 // ---------------------------------------------------------------------------
490 // ---------------------------------------------------------------------------
501 // ---------------------------------------------------------------------------
510 // ---------------------------------------------------------------------------
524 // ---------------------------------------------------------------------------
531 // ---------------------------------------------------------------------------
538 // ---------------------------------------------------------------------------
545 // ---------------------------------------------------------------------------
552 // ---------------------------------------------------------------------------
559 // ---------------------------------------------------------------------------
566 // ---------------------------------------------------------------------------
573 // ---------------------------------------------------------------------------
580 // ---------------------------------------------------------------------------
587 // ---------------------------------------------------------------------------
594 // ---------------------------------------------------------------------------
652 // ---------------------------------------------------------------------------
659 // ---------------------------------------------------------------------------
676 // ---------------------------------------------------------------------------
685 // ---------------------------------------------------------------------------
694 // ---------------------------------------------------------------------------
705 // ---------------------------------------------------------------------------
715 // ---------------------------------------------------------------------------
725 // ---------------------------------------------------------------------------
734 // ---------------------------------------------------------------------------
745 // ---------------------------------------------------------------------------
754 // ---------------------------------------------------------------------------
764 // ---------------------------------------------------------------------------
773 // ---------------------------------------------------------------------------
788 // ---------------------------------------------------------------------------
799 // ---------------------------------------------------------------------------
810 // ---------------------------------------------------------------------------
820 // ---------------------------------------------------------------------------
831 // ---------------------------------------------------------------------------
842 // ---------------------------------------------------------------------------
855 // ---------------------------------------------------------------------------
866 // ---------------------------------------------------------------------------
877 // ---------------------------------------------------------------------------
891 // ---------------------------------------------------------------------------
905 // ---------------------------------------------------------------------------
920 // ---------------------------------------------------------------------------
934 // ---------------------------------------------------------------------------
941 // ---------------------------------------------------------------------------
948 // ---------------------------------------------------------------------------
955 // ---------------------------------------------------------------------------
962 // ---------------------------------------------------------------------------
969 // ---------------------------------------------------------------------------
976 // ---------------------------------------------------------------------------
983 // ---------------------------------------------------------------------------
990 // ---------------------------------------------------------------------------
997 // ---------------------------------------------------------------------------
1009 // ---------------------------------------------------------------------------
1016 // ---------------------------------------------------------------------------
1023 // ---------------------------------------------------------------------------
1034 // ---------------------------------------------------------------------------
1046 // ---------------------------------------------------------------------------
1058 // ---------------------------------------------------------------------------
1065 // ---------------------------------------------------------------------------
1072 // ---------------------------------------------------------------------------
1079 // ---------------------------------------------------------------------------
1086 // ---------------------------------------------------------------------------
1096 // ---------------------------------------------------------------------------
1107 // ---------------------------------------------------------------------------
1126 // ---------------------------------------------------------------------------
1186 // ---------------------------------------------------------------------------
1192 if(!(isNumber() && config_get_auto_convert(_setting->config) in assertType()
1198 // ---------------------------------------------------------------------------
1216 // ---------------------------------------------------------------------------
1221 // ---------------------------------------------------------------------------
1226 // ---------------------------------------------------------------------------
1231 // ---------------------------------------------------------------------------
1236 // ---------------------------------------------------------------------------
1247 // ---------------------------------------------------------------------------
1256 // ---------------------------------------------------------------------------
1267 // ---------------------------------------------------------------------------
1276 // ---------------------------------------------------------------------------
1286 // ---------------------------------------------------------------------------
1288 SettingIterator& SettingIterator::operator--() in operator --()
1290 --_idx; in operator --()
1295 // ---------------------------------------------------------------------------
1297 SettingIterator SettingIterator::operator--(int) in operator --()
1300 --_idx; in operator --()
1305 // ---------------------------------------------------------------------------
1315 // ---------------------------------------------------------------------------
1324 // ---------------------------------------------------------------------------
1334 // ---------------------------------------------------------------------------
1336 SettingIterator SettingIterator::operator-(int offset) const in operator -()
1339 copy._idx -= offset; in operator -()
1344 // ---------------------------------------------------------------------------
1346 SettingIterator& SettingIterator::operator-=(int offset) in operator -=()
1348 _idx -= offset; in operator -=()
1353 // ---------------------------------------------------------------------------
1355 int SettingIterator::operator-(SettingIterator const &other) const in operator -()
1357 return(_idx - other._idx); in operator -()
1360 // ---------------------------------------------------------------------------
1372 // ---------------------------------------------------------------------------
1381 // ---------------------------------------------------------------------------
1392 // ---------------------------------------------------------------------------
1401 // ---------------------------------------------------------------------------
1411 // ---------------------------------------------------------------------------
1413 SettingConstIterator& SettingConstIterator::operator--() in operator --()
1415 --_idx; in operator --()
1420 // ---------------------------------------------------------------------------
1422 SettingConstIterator SettingConstIterator::operator--(int) in operator --()
1425 --_idx; in operator --()
1430 // ---------------------------------------------------------------------------
1440 // ---------------------------------------------------------------------------
1449 // ---------------------------------------------------------------------------
1459 // ---------------------------------------------------------------------------
1461 SettingConstIterator SettingConstIterator::operator-(int offset) const in operator -()
1464 copy -= offset; in operator -()
1469 // ---------------------------------------------------------------------------
1471 SettingConstIterator& SettingConstIterator::operator-=(int offset) in operator -=()
1473 _idx -= offset; in operator -=()
1478 // ---------------------------------------------------------------------------
1480 int SettingConstIterator::operator-(SettingConstIterator const &other) const in operator -()
1482 return(_idx - other._idx); in operator -()