Searched refs:encode_tag (Results 1 – 2 of 2) sorted by relevance
/external/protobuf/php/ext/google/protobuf/ |
D | upb.c | 8813 static bool encode_tag(upb_pb_encoder *e, const tag_t *tag) { in encode_tag() function 8874 bool ok = encode_tag(c, hd) && commit(c) && start_delim(c); in encode_startdelimfield() 8884 return (encode_tag(c, hd) && commit(c)) ? c : UPB_BREAK; in encode_startgroup() 8888 return encode_tag(c, hd) && commit(c); in encode_endgroup() 8905 return encode_tag(e, hd) && encode(e, (convert)(val)) && commit(e); \
|
/external/protobuf/ruby/ext/google/protobuf_c/ |
D | upb.c | 9524 static bool encode_tag(upb_pb_encoder *e, const tag_t *tag) { in encode_tag() function 9585 bool ok = encode_tag(c, hd) && commit(c) && start_delim(c); in encode_startdelimfield() 9595 return (encode_tag(c, hd) && commit(c)) ? c : UPB_BREAK; in encode_startgroup() 9599 return encode_tag(c, hd) && commit(c); in encode_endgroup() 9616 return encode_tag(e, hd) && encode(e, (convert)(val)) && commit(e); \
|