Lines Matching defs:tzinfo_pos
891 const char *tzinfo_pos = p;
893 if (*tzinfo_pos == 'Z' || *tzinfo_pos == '+' || *tzinfo_pos == '-') {
896 } while (++tzinfo_pos < p_end);
898 int rv = parse_hh_mm_ss_ff(dtstr, tzinfo_pos, hour, minute, second,
904 else if (tzinfo_pos == p_end) {
916 if (*tzinfo_pos == 'Z') {
920 if (*(tzinfo_pos + 1) != '\0') {
927 int tzsign = (*tzinfo_pos == '-') ? -1 : 1;
928 tzinfo_pos++;
930 rv = parse_hh_mm_ss_ff(tzinfo_pos, p_end, &tzhour, &tzminute, &tzsecond,