| /netbsd/src/external/gpl3/gcc/dist/gcc/ |
| D | gengtype-parse.cc | 137 parse_error (const char *msg, ...) in parse_error() function 162 parse_error ("expected %s, have %s", in require() 177 parse_error ("expected %s, have %s", in require_without_advance() 193 parse_error ("expected %s or %s, have %s", in require2() 210 parse_error ("expected %s, %s, %s or %s, have %s", in require4() 305 parse_error ("only one level of indirection is supported" in require_template_declaration() 357 parse_error ("unbalanced delimiters - expected '%c', have '%c'", in consume_balanced() 363 parse_error ("unexpected end of file within %c%c-delimited construct", in consume_balanced() 398 parse_error ("unmatched '%c' while scanning for ';'", token ()); in consume_until_eos() 402 parse_error ("unexpected end of file while scanning for ';'"); in consume_until_eos() [all …]
|
| /netbsd/src/external/bsd/atf/dist/tools/ |
| D | parser.hpp | 48 class parse_error : public std::runtime_error, class 53 parse_error(size_t, std::string); 54 ~parse_error(void) throw(); 66 public std::vector< parse_error > { 67 std::vector< parse_error > m_errors; 243 throw parse_error(t.lineno(), in next() 256 throw parse_error(t.lineno(), in next() 330 void add_error(const parse_error&); 405 parser< TKZ >::add_error(const parse_error& pe) in add_error() 463 throw parse_error(t.lineno(), in expect() [all …]
|
| D | reader.cpp | 128 throw tools::parser::parse_error(t.lineno(), in read_timeval() 210 using tools::parser::parse_error; in read_info() 229 using tools::parser::parse_error; in read_tp() 262 } catch (const parse_error& pe) { in read_tp() 280 throw parse_error(t.lineno(), "Test program name used in " in read_tp() 290 throw parse_error(t.lineno(), in read_tp() 301 using tools::parser::parse_error; in read_tc() 357 throw parse_error(t.lineno(), in read_tc() 383 throw parse_error(t.lineno(), "Empty reason for " + state + in read_tc() 394 using tools::parser::parse_error; in read() [all …]
|
| D | parser.cpp | 43 impl::parse_error::parse_error(size_t line, std::string msg) : in parse_error() function in impl::parse_error 49 impl::parse_error::~parse_error(void) in ~parse_error() 55 impl::parse_error::what(void) in what() 68 impl::parse_error::operator std::string(void) in operator std::string() 335 } catch (const impl::parse_error& pe) { in read_headers()
|
| D | test-program.cpp | 436 using tools::parser::parse_error; in validate_and_insert() 439 throw parse_error(lineno, "The value for '" + name +"' cannot be " in validate_and_insert() 451 throw parse_error(lineno, "The has.cleanup property requires a" in validate_and_insert() 456 throw parse_error(lineno, "The identifier must match " + in validate_and_insert() 466 throw parse_error(lineno, "The require.memory property requires an " in validate_and_insert() 473 throw parse_error(lineno, "The timeout property requires an integer" in validate_and_insert() 480 throw parse_error(lineno, "Unknown property '" + name + "'"); in validate_and_insert() 489 using tools::parser::parse_error; in read() 503 throw parse_error(t.lineno(), "First property of a test case " in read() 520 throw parse_error(t.lineno(), "Test case definition did " in read() [all …]
|
| D | test_helpers.hpp | 60 for (std::vector< tools::parser::parse_error >::const_iterator iter = in do_read() 63 } catch (const tools::parser::parse_error& pe) { in do_read()
|
| D | config_file.cpp | 153 using tools::parser::parse_error; in read() 191 } catch (const parse_error& pe) { in read()
|
| D | parser_test.cpp | 48 using tools::parser::parse_error; in ATF_TEST_CASE_BODY() 50 const parse_error e(123, "This is the message"); in ATF_TEST_CASE_BODY() 65 using tools::parser::parse_error; in ATF_TEST_CASE_BODY() 69 es.push_back(parse_error(2, "Second error")); in ATF_TEST_CASE_BODY() 70 es.push_back(parse_error(1, "First error")); in ATF_TEST_CASE_BODY()
|
| D | atffile.cpp | 127 using tools::parser::parse_error; in read() 191 } catch (const parse_error& pe) { in read()
|
| /netbsd/src/external/ibm-public/postfix/dist/src/util/ |
| D | cidr_match.c | 225 const char *parse_error; in cidr_match_parse() local 231 parse_error = "bad mask value"; in cidr_match_parse() 233 parse_error = "bad mask length"; in cidr_match_parse() 235 parse_error = "bad network value"; in cidr_match_parse() 237 parse_error = 0; in cidr_match_parse() 239 if (parse_error != 0) { in cidr_match_parse() 241 "%s in \"%s/%s\"", parse_error, pattern, mask); in cidr_match_parse()
|
| /netbsd/src/external/bsd/less/dist/ |
| D | lesskey_parse.c | 132 static void parse_error(char *fmt, char *arg1) in parse_error() function 258 … parse_error("invalid escape sequence \"\\k%s\"", char_string(buf, *p, 0)); in tstr() 405 parse_error("invalid operator '%s' in #version line", char_string(buf, op, 0)); in version_line() 412 parse_error("non-numeric version number in #version line", ""); in version_line() 465 parse_error("unknown action: \"%s\"", actname); in findaction() 504 parse_error("missing action", ""); in parse_cmdline() 572 parse_error("missing = in variable definition", ""); in parse_varline()
|
| /netbsd/src/usr.sbin/mailwrapper/ |
| D | mailwrapper.c | 117 goto parse_error; in main() 122 goto parse_error; in main() 144 parse_error: in main()
|
| /netbsd/src/external/gpl3/binutils/dist/gprof/ |
| D | corefile.c | 61 parse_error (const char *filename) in parse_error() function 104 parse_error (filename); in read_function_mappings() 111 parse_error (filename); in read_function_mappings() 118 parse_error (filename); in read_function_mappings() 138 parse_error (filename); in read_function_mappings() 145 parse_error (filename); in read_function_mappings() 156 parse_error (filename); in read_function_mappings()
|
| D | ChangeLog-2007 | 234 * corefile.c (parse_error): New function.
|
| /netbsd/src/external/gpl2/xcvs/dist/src/ |
| D | parseinfo.c | 334 parse_error (const char *infopath, unsigned int ln) in parse_error() function 534 if (!parse_error (infopath, ln)) in parse_config() 574 if (!parse_error (infopath, ln)) in parse_config() 723 if (!parse_error (infopath, ln)) in parse_config()
|
| D | parseinfo.h | 65 bool parse_error (const char *, unsigned int);
|
| /netbsd/src/dist/pf/usr.sbin/authpf/ |
| D | authpf.c | 381 goto parse_error; in read_config() 390 goto parse_error; in read_config() 395 goto parse_error; in read_config() 401 parse_error: in read_config()
|
| /netbsd/src/external/bsd/kyua-testers/dist/ |
| D | atf_main.c | 180 kyua_error_t parse_error = atf_list_parse(stdout_fds[0], tmp_output); in list_test_cases() local 197 error = kyua_error_subsume(error, parse_error); in list_test_cases()
|
| /netbsd/src/external/gpl3/gdb/dist/gdb/ |
| D | parser-defs.h | 269 void parse_error (const char *msg);
|
| D | parse.c | 250 parser_state::parse_error (const char *msg) in parse_error() function
|
| D | m2-exp.y | 1003 pstate->parse_error (msg); in yyerror()
|
| D | go-exp.y | 1543 pstate->parse_error (msg); in yyerror()
|
| D | f-exp.y | 1733 pstate->parse_error (msg); in yyerror()
|
| D | d-exp.y | 1630 pstate->parse_error (msg); in yyerror()
|
| /netbsd/src/external/gpl3/binutils/dist/gas/config/ |
| D | tc-bpf.c | 1398 parse_error (int length, const char *fmt, ...) in parse_error() function 1457 #define PARSE_ERROR(...) parse_error (s - str, __VA_ARGS__) in md_assemble()
|