Lines Matching defs:view
967 upb_strview view = *(upb_strview*)field_mem;
968 if (skip_zero_value && view.size == 0) {
971 return upb_put_bytes(e, view.data, view.size) &&
972 upb_put_varint(e, view.size) &&
4536 static char* strviewdup(const symtab_addctx *ctx, upb_strview view) {
4537 return upb_strdup2(view.data, view.size, ctx->alloc);
4544 static bool streql_view(upb_strview view, const char *b) {
4545 return streql2(view.data, view.size, b);