HomeSort by: relevance | last modified time | path
    Searched refs:parse_error (Results 1 - 25 of 54) sorted by relevancy

1 2 3

  /src/external/mpl/dhcp/dist/keama/
json.c 67 parse_error(cfile, "unknown name %s", val);
77 parse_error(cfile, "unexpected end of file");
79 parse_error(cfile, "unexpected %s", val);
103 parse_error(cfile, "unexpected end of file");
107 parse_error(cfile, "unexpected ','");
113 parse_error(cfile, "expected ','");
144 parse_error(cfile, "unexpected end of file");
148 parse_error(cfile, "unexpected ','");
151 parse_error(cfile, "unexpected %s, "
156 parse_error(cfile, "unexpected %s,
    [all...]
parse.c 143 parse_error(cfile, "semicolon expected.");
158 parse_error(cfile, "expecting a string");
160 parse_error(cfile, "no memory for string %s.", val);
259 parse_error(cfile, "expected IPv4 address. got "
267 parse_error(cfile, "%s: host unknown.", name->content);
284 parse_error(cfile, "%s (%d): expecting IP address or hostname",
360 parse_error(cfile, "Invalid IPv6 address.");
375 parse_error(cfile, "Invalid IPv6 address.");
427 parse_error(cfile, "empty hardware address");
430 parse_error(cfile, "can't get hardware address")
    [all...]
confparse.c 142 parse_error(cfile, "address family is not set");
293 parse_error(cfile, "null global class at %i",
297 parse_error(cfile, "global class at %u "
307 parse_error(cfile, "subclass %s has "
321 parse_error(cfile, "subclass %s has no selector",
335 parse_error(cfile, "superclass %s has bad "
352 parse_error(cfile, "superclass %s has no submatch",
495 parse_error(parent, "Can't open %s: %s",
500 parse_error(parent, "Can't create new parse structure");
504 parse_error(parent, "Can't create new element stack")
    [all...]
conflex.c 152 parse_error(cfile, "can't allocate state to be saved");
170 parse_error(cfile, "can't find saved state");
485 parse_error(cfile,
522 parse_error(cfile, "eof in string constant");
564 parse_error(cfile,
577 parse_error(cfile,
601 parse_error(cfile,
656 parse_error(cfile,
664 parse_error(cfile,
701 parse_error(cfile, "token larger than internal buffer")
    [all...]
keama.c 194 parse_error(pc, "can't resize element stack");
202 parse_error(struct parse *cfile, const char *fmt, ...) function
  /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/gpl2/xcvs/dist/src/
parseinfo.h 65 bool parse_error (const char *, unsigned int);
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/mpl/dhcp/dist/contrib/ldap/
dhcpd-conf-to-ldap 152 parse_error
347 parse_error ();
371 parse_error () if !defined ($ip);
374 parse_error () if !defined ($tmp);
375 parse_error () if !($tmp eq 'netmask');
378 parse_error () if !defined ($tmp);
382 parse_error () if !defined ($tmp);
383 parse_error () if !($tmp eq '{');
401 parse_error () if !defined ($descr);
404 parse_error () if !defined ($tmp)
    [all...]
  /src/external/bsd/atf/dist/tools/
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...]
reader.cpp 128 throw tools::parser::parse_error(t.lineno(),
210 using tools::parser::parse_error;
229 using tools::parser::parse_error;
262 } catch (const parse_error& pe) {
280 throw parse_error(t.lineno(), "Test program name used in "
290 throw parse_error(t.lineno(),
301 using tools::parser::parse_error;
357 throw parse_error(t.lineno(),
383 throw parse_error(t.lineno(), "Empty reason for " + state +
394 using tools::parser::parse_error;
    [all...]
test_helpers.hpp 60 for (std::vector< tools::parser::parse_error >::const_iterator iter =
63 } catch (const tools::parser::parse_error& pe) {
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) {
test-program.cpp 436 using tools::parser::parse_error;
439 throw parse_error(lineno, "The value for '" + name +"' cannot be "
451 throw parse_error(lineno, "The has.cleanup property requires a"
456 throw parse_error(lineno, "The identifier must match " +
466 throw parse_error(lineno, "The require.memory property requires an "
473 throw parse_error(lineno, "The timeout property requires an integer"
480 throw parse_error(lineno, "Unknown property '" + name + "'");
489 using tools::parser::parse_error;
503 throw parse_error(t.lineno(), "First property of a test case "
520 throw parse_error(t.lineno(), "Test case definition did
    [all...]
config_file.cpp 153 using tools::parser::parse_error;
191 } catch (const parse_error& pe) {
  /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/usr.sbin/mailwrapper/
mailwrapper.c 117 goto parse_error;
122 goto parse_error;
144 parse_error:
  /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/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/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/dist/pf/usr.sbin/authpf/
authpf.c 381 goto parse_error;
390 goto parse_error;
395 goto parse_error;
401 parse_error:

Completed in 22 milliseconds

1 2 3