Home
last modified time | relevance | path

Searched refs:syntax_error (Results 1 – 25 of 38) sorted by relevance

12

/netbsd/external/gpl3/gdb/dist/sim/cris/
H A Drvdummy.c277 goto syntax_error; in handle_input()
294 goto syntax_error; in handle_input()
313 goto syntax_error; in handle_input()
333 goto syntax_error; in handle_input()
352 goto syntax_error; in handle_input()
365 goto syntax_error; in handle_input()
382 goto syntax_error; in handle_input()
397 goto syntax_error; in handle_input()
420 goto syntax_error; in handle_input()
435 goto syntax_error; in handle_input()
[all …]
/netbsd/external/gpl3/gdb.old/dist/sim/cris/
H A Drvdummy.c277 goto syntax_error; in handle_input()
294 goto syntax_error; in handle_input()
313 goto syntax_error; in handle_input()
333 goto syntax_error; in handle_input()
352 goto syntax_error; in handle_input()
365 goto syntax_error; in handle_input()
382 goto syntax_error; in handle_input()
397 goto syntax_error; in handle_input()
420 goto syntax_error; in handle_input()
435 goto syntax_error; in handle_input()
[all …]
/netbsd/external/bsd/kyua-cli/dist/utils/config/
H A Dparser_test.cpp106 ATF_REQUIRE_THROW_RE(config::syntax_error, "foo", in ATF_TEST_CASE_BODY()
141 ATF_REQUIRE_THROW_RE(config::syntax_error, in ATF_TEST_CASE_BODY()
150 ATF_REQUIRE_THROW_RE(config::syntax_error, in ATF_TEST_CASE_BODY()
162 ATF_REQUIRE_THROW_RE(config::syntax_error, in ATF_TEST_CASE_BODY()
177 ATF_REQUIRE_THROW_RE(config::syntax_error, "must be 'config'", in ATF_TEST_CASE_BODY()
181 ATF_REQUIRE_THROW_RE(config::syntax_error, "only takes one argument", in ATF_TEST_CASE_BODY()
193 ATF_REQUIRE_THROW_RE(config::syntax_error, "No syntax defined", in ATF_TEST_CASE_BODY()
212 ATF_REQUIRE_THROW_RE(config::syntax_error, in ATF_TEST_CASE_BODY()
H A Dexceptions.cpp70 config::syntax_error::syntax_error(const std::string& message) : in syntax_error() function in config::syntax_error
77 config::syntax_error::~syntax_error(void) throw() in ~syntax_error()
H A Dexceptions_test.cpp57 ATF_TEST_CASE_WITHOUT_HEAD(syntax_error);
58 ATF_TEST_CASE_BODY(syntax_error) in ATF_TEST_CASE_BODY() argument
60 const config::syntax_error e("Some text"); in ATF_TEST_CASE_BODY()
102 ATF_ADD_TEST_CASE(tcs, syntax_error); in ATF_INIT_TEST_CASES()
H A Dexceptions.hpp60 class syntax_error : public error { class
62 explicit syntax_error(const std::string&);
63 ~syntax_error(void) throw();
H A Dparser.cpp88 throw syntax_error("syntax() can only be called once"); in syntax_callback()
187 throw syntax_error(e.what()); in parse()
191 throw syntax_error("No syntax defined (no call to syntax() found)"); in parse()
/netbsd/external/gpl2/texinfo/dist/info/
H A Dinfokey.c77 static void syntax_error (const char *filename,
452 syntax_error(filename, lnum, _("key sequence too long"), \ in compile()
611 syntax_error (filename, lnum, in compile()
642 syntax_error (filename, lnum, in compile()
683 syntax_error (filename, lnum, _("section too long"), in compile()
713 syntax_error (filename, lnum, in compile()
725 syntax_error (filename, lnum, _("missing variable name"), in compile()
734 syntax_error (filename, lnum, in compile()
758 syntax_error (filename, lnum, _("section too long"), in compile()
767 syntax_error (filename, lnum, _("value too long"), in compile()
[all …]
/netbsd/external/bsd/kyua-cli/dist/utils/text/
H A Dexceptions.cpp52 text::syntax_error::syntax_error(const std::string& message) : in syntax_error() function in text::syntax_error
59 text::syntax_error::~syntax_error(void) throw() in ~syntax_error()
H A Dexceptions_test.cpp46 ATF_TEST_CASE_WITHOUT_HEAD(syntax_error);
47 ATF_TEST_CASE_BODY(syntax_error) in ATF_TEST_CASE_BODY() argument
49 const text::syntax_error e("Some text"); in ATF_TEST_CASE_BODY()
65 ATF_ADD_TEST_CASE(tcs, syntax_error); in ATF_INIT_TEST_CASES()
H A Dexceptions.hpp50 class syntax_error : public error { class
52 explicit syntax_error(const std::string&);
53 ~syntax_error(void) throw();
H A Dtemplates.cpp182 throw text::syntax_error("Empty statement"); in parse()
186 throw text::syntax_error(F("Unknown statement '%s'") % words[0]); in parse()
190 throw text::syntax_error(F("Invalid number of arguments for " in parse()
628 throw text::syntax_error(F("Unknown variable '%s'") % name); in get_variable()
645 throw text::syntax_error(F("Unknown vector '%s'") % name); in get_vector()
670 } catch (const text::syntax_error& e) { in get_vector()
671 throw text::syntax_error(F("Index '%s' not an integer, value '%s'") % in get_vector()
675 throw text::syntax_error(F("Index '%s' out of range at position '%s'") % in get_vector()
706 throw text::syntax_error(F("Expected ')' in expression '%s')") % in evaluate()
709 throw text::syntax_error(F("Unexpected text found after ')' in " in evaluate()
H A Dtemplates_test.cpp82 ATF_REQUIRE_THROW_RE(text::syntax_error, exp_message, in do_test_fail()
116 ATF_REQUIRE_THROW(text::syntax_error, templates.get_variable("the-name")); in ATF_TEST_CASE_BODY()
202 ATF_REQUIRE_THROW_RE(text::syntax_error, "Unknown variable 'foo '", in ATF_TEST_CASE_BODY()
224 ATF_REQUIRE_THROW_RE(text::syntax_error, "Unknown vector 'foo '", in ATF_TEST_CASE_BODY()
245 ATF_REQUIRE_THROW_RE(text::syntax_error, "Unknown variable 'foo1'", in ATF_TEST_CASE_BODY()
275 ATF_REQUIRE_THROW_RE(text::syntax_error, "Unknown vector 'fooz'", in ATF_TEST_CASE_BODY()
287 ATF_REQUIRE_THROW_RE(text::syntax_error, "Unknown variable 'indexz'", in ATF_TEST_CASE_BODY()
299 ATF_REQUIRE_THROW_RE(text::syntax_error, "Index 'index' out of range " in ATF_TEST_CASE_BODY()
337 ATF_REQUIRE_THROW_RE(text::syntax_error, "Unknown vector 'foo'", in ATF_TEST_CASE_BODY()
346 ATF_REQUIRE_THROW_RE(text::syntax_error, in ATF_TEST_CASE_BODY()
[all …]
/netbsd/usr.bin/mail/
H A Dlist.c288 syntax_error(const char *msg) in syntax_error() function
990 return syntax_error("missing left operand"); in markall_core()
994 return syntax_error("end of range missing"); in markall_core()
1113 return syntax_error("extra ')'"); in markall_core()
1130 return syntax_error("'!' precedes '&'"); in markall_core()
1137 return syntax_error("'!' precedes '|'"); in markall_core()
1144 return syntax_error("'!' precedes logical '^'"); in markall_core()
1188 return syntax_error("end of range missing"); in markall_core()
1191 return syntax_error("missing ')'"); in markall_core()
1195 return syntax_error("trailing '!'"); in markall_core()
[all …]
/netbsd/external/bsd/elftosb/dist/elftosb2/
H A DElftosbLexer.h30 class syntax_error : public std::runtime_error
33 explicit syntax_error(const std::string & __arg) : std::runtime_error(__arg) {} in syntax_error() function
/netbsd/external/mit/libcbor/dist/src/cbor/internal/
H A Dbuilder_callbacks.c84 ctx->syntax_error = true; in _cbor_builder_append()
195 ctx->syntax_error = true; in cbor_builder_byte_string_callback()
218 ctx->syntax_error = true; in cbor_builder_string_callback()
240 ctx->syntax_error = true; in cbor_builder_string_callback()
325 ctx->syntax_error = true; in cbor_builder_indef_break_callback()
H A Dbuilder_callbacks.h24 bool syntax_error; member
/netbsd/external/bsd/byacc/dist/
H A Dreader.c558 syntax_error(lineno, line, t_cptr); in keyword()
573 syntax_error(lineno, line, cptr); in copy_ident()
736 syntax_error(lineno, line, cptr); in copy_code()
1259 syntax_error(lineno, line, cptr); in copy_param()
1503 syntax_error(lineno, line, base); in get_number()
1802 syntax_error(lineno, line, cptr); in declare_start()
2434 syntax_error(lineno, line, cptr); in advance_to_start()
2458 syntax_error(lineno, line, cptr); in advance_to_start()
3069 syntax_error(lineno, line, cptr); in get_code()
3373 syntax_error(lineno, line, cptr); in mark_symbol()
[all …]
/netbsd/external/gpl3/binutils/dist/gprofng/src/
H A DQLParser.yy61 throw Parser::syntax_error ("Name not found");
257 throw Parser::syntax_error ("Syntax error after =");
286 throw Parser::syntax_error ("Unclosed \"");
298 throw Parser::syntax_error ("Multiline strings are not supported");
409 throw Parser::syntax_error ("Syntax error");
/netbsd/tests/usr.bin/xlint/lint1/
H A Dgcc_stmt_asm.c36 syntax_error(void)
/netbsd/external/mit/libcbor/dist/src/
H A Dcbor.c56 .stack = &stack, .creation_failed = false, .syntax_error = false}; in cbor_load()
99 } else if (context.syntax_error) { in cbor_load()
/netbsd/external/gpl3/gcc/dist/libcpp/
H A Dexpr.c74 do { cpp_error (pfile, CPP_DL_ERROR, msgid); goto syntax_error; } while(0)
76 do { cpp_error (pfile, CPP_DL_ERROR, msgid, arg); goto syntax_error; } \
79 do { cpp_error_with_line (pfile, CPP_DL_ERROR, (loc), 0, msgid); goto syntax_error; } \
82 do { cpp_error_with_line (pfile, CPP_DL_ERROR, (loc), 0, msgid, arg); goto syntax_error; } \
835 syntax_error: in cpp_classify_number()
1389 goto syntax_error; in _cpp_parse_expr()
1441 syntax_error: in _cpp_parse_expr()
H A Dexpr.cc74 do { cpp_error (pfile, CPP_DL_ERROR, msgid); goto syntax_error; } while(0)
76 do { cpp_error (pfile, CPP_DL_ERROR, msgid, arg); goto syntax_error; } \
79 do { cpp_error_with_line (pfile, CPP_DL_ERROR, (loc), 0, msgid); goto syntax_error; } \
82 do { cpp_error_with_line (pfile, CPP_DL_ERROR, (loc), 0, msgid, arg); goto syntax_error; } \
858 syntax_error: in cpp_classify_number()
1415 goto syntax_error; in _cpp_parse_expr()
1467 syntax_error: in _cpp_parse_expr()
/netbsd/external/gpl3/gcc.old/dist/libcpp/
H A Dexpr.c74 do { cpp_error (pfile, CPP_DL_ERROR, msgid); goto syntax_error; } while(0)
76 do { cpp_error (pfile, CPP_DL_ERROR, msgid, arg); goto syntax_error; } \
79 do { cpp_error_with_line (pfile, CPP_DL_ERROR, (loc), 0, msgid); goto syntax_error; } \
82 do { cpp_error_with_line (pfile, CPP_DL_ERROR, (loc), 0, msgid, arg); goto syntax_error; } \
835 syntax_error: in cpp_classify_number()
1389 goto syntax_error; in _cpp_parse_expr()
1441 syntax_error: in _cpp_parse_expr()
/netbsd/external/bsd/kyua-cli/dist/engine/
H A Dconfig.cpp98 throw config::syntax_error(F("Unsupported config version %s") % in setup()

12