Lines Matching defs:have
1427 * have a null-terminating byte since it may be a raw binary buffer. */
4782 /* Should not have a default value. */
4921 * message yet, because it may not have been defined yet. We stash a pointer
4939 "fields in oneof must have OPTIONAL label (%s)",
5208 "proto3 fields cannot have explicit defaults (%s)",
5215 "message fields cannot have explicit defaults (%s)",
5972 /* Visual C++ earlier than 2015 doesn't have standard C99 snprintf and
6009 upb_arena *arena; /* TODO: should we have a tmp arena for tmp data? */
6225 jsondec_err(d, "number cannot have leading zero");
7269 jsondec_err(d, "Type url must have at least one '/' and non-empty host");
7464 size_t have = e->end - e->ptr;
7465 if (UPB_LIKELY(have >= len)) {
7469 if (have) memcpy(e->ptr, data, have);
7470 e->ptr += have;
7471 e->overflow += (len - have);
7481 size_t have = e->end - e->ptr;
7485 n = _upb_vsnprintf(e->ptr, have, fmt, args);
7488 if (UPB_LIKELY(have > n)) {
7491 e->ptr += have;
7492 e->overflow += (n - have);
7772 jsonenc_err(e, "Field mask element may not have upper-case letter.");