/external/golang-protobuf/proto/ |
D | text_parser.go | 95 func (p *textParser) errorf(format string, a ...interface{}) *ParseError { func 183 p.errorf("unmatched quote") 188 p.errorf("invalid quoted string %s: %v", p.s[0:i+1], err) 199 p.errorf("unexpected byte %#x", p.s[0]) 376 return p.errorf("expected %q, found %q", s, tok.value) 442 return p.errorf("expected ':', found %q", tok.value) 484 return p.errorf("unrecognized message %q in google.protobuf.Any", messageName) 504 return p.errorf("expected '{' or '<', found %q", tok.value) 512 return p.errorf("failed to marshal message of type %q: %v", messageName, err) 515 return p.errorf(anyRepeatedlyUnpacked, "type_url") [all …]
|
/external/selinux/python/sepolgen/src/sepolgen/ |
D | lex.py | 624 errorf = { } # Error functions by state 687 errorf[state] = f 794 lexobj.lexstateerrorf = errorf 795 lexobj.lexerrorf = errorf.get("INITIAL",None) 802 if warn and s not in errorf: 807 if s not in errorf: 808 errorf[s] = errorf.get("INITIAL",None)
|
/external/libmojo/third_party/ply/ |
D | lex.py | 661 self.errorf = { } # Error functions by state 680 self.errorf[s] = t 797 efunc = self.errorf.get(state,None) 979 lexobj.lexstateerrorf = linfo.errorf 980 lexobj.lexerrorf = linfo.errorf.get("INITIAL",None) 987 if not s in linfo.errorf: 992 if not s in linfo.errorf: 993 linfo.errorf[s] = linfo.errorf.get("INITIAL",None)
|
D | yacc.py | 240 def __init__(self,lrtab,errorf): argument 244 self.errorfunc = errorf
|
/external/ply/ply/ply/ |
D | lex.py | 671 self.errorf = {} # Error functions by state 691 self.errorf[s] = t 800 efunc = self.errorf.get(state, None) 997 lexobj.lexstateerrorf = linfo.errorf 998 lexobj.lexerrorf = linfo.errorf.get('INITIAL', None) 1009 if s not in linfo.errorf: 1014 if s not in linfo.errorf: 1015 linfo.errorf[s] = linfo.errorf.get('INITIAL', None)
|
D | yacc.py | 286 def __init__(self, lrtab, errorf): argument 290 self.errorfunc = errorf
|
/external/mksh/src/ |
D | misc.c | 67 errorf("%s failed with EAGAIN, probably due to a" \ 433 errorf("no TIOCSCTTY ioctl"); in parse_args() 2309 errorf(Tf_sD_sD_s, "chvt", in chvt() 2315 errorf(Tf_sD_sD_s, "chvt", "not a char device", dv); in chvt() 2329 errorf(Tf_sD_s_s, "chvt", Tcant_open, dv); in chvt() 2335 errorf(Tf_sD_s_s, "chvt", "fork", "failed"); in chvt() 2343 errorf(Tf_sD_s_s, "chvt", "setsid", "failed"); in chvt() 2346 errorf(Tf_sD_s_s, "chvt", "TIOCSCTTY", "failed"); in chvt() 2348 errorf(Tf_sD_s_s, "chvt", "TCIOFLUSH", "failed"); in chvt()
|
D | main.c | 489 errorf(Tf_optfoo, "", "", 'c', Treq_arg); in main_init() 1284 errorf(const char *fmt, ...) in errorf() function 1436 errorf("can't get home directory"); in initio() 1441 errorf("can't open debug output file %s", lfp); in initio() 1448 errorf("can't dup debug output file"); in initio() 1464 errorf(Ttoo_many_files); in ksh_dup2() 1488 errorf(Ttoo_many_files); in savefd() 1514 errorf("can't create pipe - try again"); in openpipe()
|
D | eval.c | 403 errorf(Tf_sD_s, str, Tbadsubst); in expand() 669 errorf("%s: parameter null or not set", in expand() 769 errorf(Tf_sD_s, st->var->name, in expand() 1194 errorf(Tf_parm, sp); in varsub() 1360 errorf(Tf_parm, sp); in varsub() 1431 errorf(Tf_sD_s, T_funny_command, in comsub() 1444 errorf(Tf_temp, in comsub()
|
D | var.c | 254 errorf(Tbadsubst); in isglobal() 785 errorf(Tf_sD_s, var, in typeset() 836 errorf("appending not allowed for nameref"); in typeset() 862 errorf(Tf_sD_s, var, "empty nameref target"); in typeset() 871 errorf(Tf_sD_s, qval, in typeset() 878 errorf(Tf_sD_s, qval, in typeset() 890 errorf(Tf_sD_s, tvar, "restricted"); in typeset() 1384 errorf(Tf_sD_sD_s, vp->name, Tbadnum, s); in setspec()
|
D | exec.c | 228 errorf("coprocess already exists"); in execute() 442 errorf(Tf_sD_s, t->str, cstrerror(rv)); in execute() 533 errorf(Tf_sD_sD_s, Tbuiltin, cp, Tnot_found); in comexec() 974 errorf("%s: not executable: %d-bit ELF file", tp->str, in scriptexec() 989 errorf("%s: not executable: magic %04X", tp->str, m); in scriptexec() 1015 errorf(Tf_sD_sD_s, tp->str, sh, cstrerror(errno)); in scriptexec()
|
D | sh.h | 2499 void errorf(const char *, ...) 2509 #define errorfz() errorf(NULL)
|
D | funcs.c | 2453 errorf(Tf_optfoo, Ttime, Tcolsp, in timex_hook() 2456 errorf(Tf_optfoo, Ttime, Tcolsp, in timex_hook()
|
D | jobs.c | 531 errorf("can't fork - try again"); in exchild()
|