• Home
  • Raw
  • Download

Lines Matching +defs:parser +defs:c

26 static bool upb_isbetween(char c, char low, char high) {  in upb_isbetween()
30 static bool upb_isletter(char c) { in upb_isletter()
34 static bool upb_isalphanum(char c) { in upb_isalphanum()
42 char c = str[i]; in upb_isident() local
7301 static void freecompiler(compiler *c) { in freecompiler()
7352 static uint32_t pcofs(compiler *c) { return c->pc - c->group->bytecode; } in pcofs()
7357 static void label(compiler *c, unsigned int label) { in label()
7381 static int32_t labelref(compiler *c, int label) { in labelref()
7399 static void put32(compiler *c, uint32_t v) { in put32()
7414 static void putop(compiler *c, opcode op, ...) { in putop()
7623 static void putchecktag(compiler *c, const upb_fielddef *f, in putchecktag()
7660 static void dispatchtarget(compiler *c, upb_pbdecodermethod *method, in dispatchtarget()
7678 static void putpush(compiler *c, const upb_fielddef *f) { in putpush()
7692 static upb_pbdecodermethod *find_submethod(const compiler *c, in find_submethod()
7703 static void putsel(compiler *c, opcode op, upb_selector_t sel, in putsel()
7712 static void maybeput(compiler *c, opcode op, const upb_handlers *h, in maybeput()
7736 static void generate_msgfield(compiler *c, const upb_fielddef *f, in generate_msgfield()
7797 static void generate_delimfield(compiler *c, const upb_fielddef *f, in generate_delimfield()
7836 static void generate_primitivefield(compiler *c, const upb_fielddef *f, in generate_primitivefield()
7891 static void compile_method(compiler *c, upb_pbdecodermethod *method) { in compile_method()
7957 static void find_methods(compiler *c, const upb_handlers *h) { in find_methods()
7984 static void compile_methods(compiler *c) { in compile_methods()
8043 compiler *c; in mgroup_new() local
8086 void upb_pbcodecache_init(upb_pbcodecache *c) { in upb_pbcodecache_init()
8091 void upb_pbcodecache_uninit(upb_pbcodecache *c) { in upb_pbcodecache_uninit()
8101 bool upb_pbcodecache_allowjit(const upb_pbcodecache *c) { in upb_pbcodecache_allowjit()
8105 bool upb_pbcodecache_setallowjit(upb_pbcodecache *c, bool allow) { in upb_pbcodecache_setallowjit()
8113 upb_pbcodecache *c, const upb_pbdecodermethodopts *opts) { in upb_pbcodecache_getdecodermethod()
9565 static bool startmsg(void *c, const void *hd) { in startmsg()
9574 static bool endmsg(void *c, const void *hd, upb_status *status) { in endmsg()
9584 static void *encode_startdelimfield(void *c, const void *hd) { in encode_startdelimfield()
9589 static bool encode_enddelimfield(void *c, const void *hd) { in encode_enddelimfield()
9594 static void *encode_startgroup(void *c, const void *hd) { in encode_startgroup()
9598 static bool encode_endgroup(void *c, const void *hd) { in encode_endgroup()
9602 static void *encode_startstr(void *c, const void *hd, size_t size_hint) { in encode_startstr()
9607 static size_t encode_strbuf(void *c, const void *hd, const char *buf, in encode_strbuf()
9951 static bool textprinter_startmsg(void *c, const void *hd) { in textprinter_startmsg()
9960 static bool textprinter_endmsg(void *c, const void *hd, upb_status *s) { in textprinter_endmsg()
10077 static void onmreg(const void *c, upb_handlers *h) { in onmreg()
10439 static bool checked_add(size_t a, size_t b, size_t *c) { in checked_add()
11597 upb_json_parser *parser = closure; in parse() local
12086 UPB_INLINE bool is_json_escaped(char c) { in is_json_escaped()
12092 UPB_INLINE const char* json_nice_escape(char c) { in json_nice_escape()
12112 char c = buf[i]; in putstring() local