Searched refs:jsondec_tsdigits (Results 1 – 1 of 1) sorted by relevance
/external/rust/crates/grpcio-sys/grpc/third_party/upb/upb/ |
D | json_decode.c | 980 static int jsondec_tsdigits(jsondec *d, const char **ptr, size_t digits, in jsondec_tsdigits() function 1047 int year = jsondec_tsdigits(d, &ptr, 4, "-"); in jsondec_timestamp() 1048 int mon = jsondec_tsdigits(d, &ptr, 2, "-"); in jsondec_timestamp() 1049 int day = jsondec_tsdigits(d, &ptr, 2, "T"); in jsondec_timestamp() 1050 int hour = jsondec_tsdigits(d, &ptr, 2, ":"); in jsondec_timestamp() 1051 int min = jsondec_tsdigits(d, &ptr, 2, ":"); in jsondec_timestamp() 1052 int sec = jsondec_tsdigits(d, &ptr, 2, NULL); in jsondec_timestamp() 1072 ofs = jsondec_tsdigits(d, &ptr, 2, ":00"); in jsondec_timestamp()
|