Home
last modified time | relevance | path

Searched refs:compiler_warn (Results 1 – 2 of 2) sorted by relevance

/external/minijail/
Dsyscall_filter.c19 #define compiler_warn(_state, _msg, ...) \ macro
24 compiler_warn(_state, _msg ": %m", ## __VA_ARGS__)
200 compiler_warn(state, "empty atom"); in compile_atom()
206 compiler_warn(state, "invalid atom '%s'", argidx_str); in compile_atom()
212 compiler_warn(state, "invalid atom '%s %s'", argidx_str, in compile_atom()
220 compiler_warn(state, "extra token '%s'", extra); in compile_atom()
225 compiler_warn(state, "invalid argument token '%s'", argidx_str); in compile_atom()
236 compiler_warn(state, "invalid argument index '%s'", in compile_atom()
243 compiler_warn(state, "invalid operator '%s'", operator_str); in compile_atom()
250 compiler_warn(state, "invalid constant '%s'", constant_str); in compile_atom()
[all …]
/external/python/cpython3/Python/
Dcompile.c185 static int compiler_warn(struct compiler *, const char *, ...);
2389 return compiler_warn(c, msg); in check_compare()
3277 if (!compiler_warn(c, "assertion is always true, " in compiler_assert()
3928 return compiler_warn(c, "'%.200s' object is not callable; " in check_caller()
3955 return compiler_warn(c, "'%.200s' object is not subscriptable; " in check_subscripter()
3990 return compiler_warn(c, "%.200s indices must be integers or slices, " in check_index()
5239 compiler_warn(struct compiler *c, const char *format, ...) in compiler_warn() function