HomeSort by: relevance | last modified time | path
    Searched defs:parse_error (Results 1 - 18 of 18) sorted by relevancy

  /src/external/ibm-public/postfix/dist/src/util/
cidr_match.c 225 const char *parse_error; local
231 parse_error = "bad mask value";
233 parse_error = "bad mask length";
235 parse_error = "bad network value";
237 parse_error = 0;
239 if (parse_error != 0) {
241 "%s in \"%s/%s\"", parse_error, pattern, mask);
  /src/external/bsd/atf/dist/tools/
parser.cpp 40 // The "parse_error" class.
43 impl::parse_error::parse_error(size_t line, std::string msg) : function in class:impl::parse_error
49 impl::parse_error::~parse_error(void)
55 impl::parse_error::what(void)
68 impl::parse_error::operator std::string(void)
335 } catch (const impl::parse_error& pe) {
parser.hpp 45 // The "parse_error" class.
48 class parse_error : public std::runtime_error, class in namespace:tools::parser
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(),
256 throw parse_error(t.lineno(),
330 void add_error(const parse_error&);
405 parser< TKZ >::add_error(const parse_error& pe
    [all...]
  /src/external/bsd/kyua-testers/dist/
atf_main.c 180 kyua_error_t parse_error = atf_list_parse(stdout_fds[0], tmp_output); local
197 error = kyua_error_subsume(error, parse_error);
  /src/external/gpl3/gcc/dist/gcc/c-family/
c-objc.h 82 parse_error (false) {}
94 unsigned parse_error : 1; /* The C/C++ parser saw an error in this attr. */ member in struct:property_attribute_info
  /src/external/gpl3/gcc.old/dist/gcc/c-family/
c-objc.h 82 parse_error (false) {}
94 unsigned parse_error : 1; /* The C/C++ parser saw an error in this attr. */ member in struct:property_attribute_info
  /src/external/mpl/dhcp/dist/keama/
keama.c 194 parse_error(pc, "can't resize element stack");
202 parse_error(struct parse *cfile, const char *fmt, ...) function
  /src/external/bsd/less/dist/
lesskey_parse.c 132 static void parse_error(char *fmt, char *arg1) function
258 parse_error("invalid escape sequence \"\\k%s\"", char_string(buf, *p, 0));
405 parse_error("invalid operator '%s' in #version line", char_string(buf, op, 0));
412 parse_error("non-numeric version number in #version line", "");
465 parse_error("unknown action: \"%s\"", actname);
504 parse_error("missing action", "");
572 parse_error("missing = in variable definition", "");
639 /* parse_error("cannot open lesskey file %s", infile); */
  /src/external/gpl2/xcvs/dist/src/
parseinfo.c 334 parse_error (const char *infopath, unsigned int ln) function
534 if (!parse_error (infopath, ln))
574 if (!parse_error (infopath, ln))
723 if (!parse_error (infopath, ln))
  /src/external/gpl3/gdb.old/dist/gdb/
parse.c 253 parser_state::parse_error (const char *msg)
252 parser_state::parse_error (const char *msg) function in class:parser_state
  /src/external/gpl3/gdb/dist/gdb/
parse.c 253 parser_state::parse_error (const char *msg)
252 parser_state::parse_error (const char *msg) function in class:parser_state
  /src/external/bsd/jemalloc/dist/test/stress/pa/
pa_data_preprocessor.cpp 308 bool parse_error = false; local
311 parse_error = parse_hpa_line(line, event);
313 parse_error = parse_sec_line(line, event, arena_mapper);
316 if (parse_error) {
  /src/external/gpl3/binutils/dist/gprof/
corefile.c 63 parse_error (const char *filename) function
106 parse_error (filename);
113 parse_error (filename);
120 parse_error (filename);
140 parse_error (filename);
147 parse_error (filename);
158 parse_error (filename);
  /src/external/gpl3/binutils.old/dist/gprof/
corefile.c 63 parse_error (const char *filename) function
106 parse_error (filename);
113 parse_error (filename);
120 parse_error (filename);
140 parse_error (filename);
147 parse_error (filename);
158 parse_error (filename);
  /src/external/gpl3/gcc/dist/gcc/
gengtype-parse.cc 138 parse_error (const char *msg, ...) function
163 parse_error ("expected %s, have %s",
178 parse_error ("expected %s, have %s",
194 parse_error ("expected %s or %s, have %s",
211 parse_error ("expected %s, %s, %s or %s, have %s",
306 parse_error ("only one level of indirection is supported"
358 parse_error ("unbalanced delimiters - expected '%c', have '%c'",
364 parse_error ("unexpected end of file within %c%c-delimited construct",
399 parse_error ("unmatched '%c' while scanning for ';'", token ());
403 parse_error ("unexpected end of file while scanning for ';'")
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
gengtype-parse.cc 137 parse_error (const char *msg, ...) function
162 parse_error ("expected %s, have %s",
177 parse_error ("expected %s, have %s",
193 parse_error ("expected %s or %s, have %s",
210 parse_error ("expected %s, %s, %s or %s, have %s",
305 parse_error ("only one level of indirection is supported"
357 parse_error ("unbalanced delimiters - expected '%c', have '%c'",
363 parse_error ("unexpected end of file within %c%c-delimited construct",
398 parse_error ("unmatched '%c' while scanning for ';'", token ());
402 parse_error ("unexpected end of file while scanning for ';'")
    [all...]
  /src/external/gpl3/binutils/dist/gas/config/
tc-bpf.c 1416 parse_error (int length, const char *fmt, ...)
1470 /* Initialize the global diagnostic variables. See the parse_error
1475 #define PARSE_ERROR(...) parse_error (s > str ? s - str : 0, __VA_ARGS__)
1506 PARSE_ERROR ("expected '%%'");
1524 PARSE_ERROR ("expected white space, got '%s'",
1540 PARSE_ERROR ("expected register r%d, got r%d",
1543 PARSE_ERROR ("expected register name, got '%s'", s);
1559 PARSE_ERROR ("expected register r%d, got r%d",
1562 PARSE_ERROR ("expected register name, got '%s'", s)
1409 parse_error (int length, const char *fmt, ...) function
    [all...]
  /src/external/gpl3/binutils.old/dist/gas/config/
tc-bpf.c 1416 parse_error (int length, const char *fmt, ...)
1470 /* Initialize the global diagnostic variables. See the parse_error
1475 #define PARSE_ERROR(...) parse_error (s > str ? s - str : 0, __VA_ARGS__)
1506 PARSE_ERROR ("expected '%%'");
1524 PARSE_ERROR ("expected white space, got '%s'",
1540 PARSE_ERROR ("expected register r%d, got r%d",
1543 PARSE_ERROR ("expected register name, got '%s'", s);
1559 PARSE_ERROR ("expected register r%d, got r%d",
1562 PARSE_ERROR ("expected register name, got '%s'", s)
1409 parse_error (int length, const char *fmt, ...) function
    [all...]

Completed in 61 milliseconds