Lines Matching defs:lazy
3200 /* STARTSTR/ENDSTR/STRING (for lazy) */
6103 /* For fields marked "lazy", parse them lazily or eagerly? */
6104 bool lazy;
6107 static compiler *newcompiler(mgroup *group, bool lazy) {
6112 ret->lazy = lazy;
6556 /* Generates bytecode to parse a single non-lazy message field. */
6617 /* Generates bytecode to parse a single string or lazy submessage field. */
6739 if (type == UPB_TYPE_MESSAGE && !(haslazyhandlers(h, f) && c->lazy)) {
6839 const mgroup *mgroup_new(const upb_handlers *dest, bool lazy) {
6844 c = newcompiler(g, lazy);
6887 c->lazy = false;
6909 void upb_pbdecodermethodopts_setlazy(upb_pbcodecache *c, bool lazy) {
6911 c->lazy = lazy;
6925 g = mgroup_new(h, c->lazy);