Lines Matching refs:startp

925     if (rmp->startp[midx] == NULL || rmp->endp[midx] == NULL)  in qf_parse_fmt_f()
931 expand_env(rmp->startp[midx], fields->namebuf, CMDBUFFSIZE); in qf_parse_fmt_f()
950 if (rmp->startp[midx] == NULL) in qf_parse_fmt_n()
952 fields->enr = (int)atol((char *)rmp->startp[midx]); in qf_parse_fmt_n()
963 if (rmp->startp[midx] == NULL) in qf_parse_fmt_l()
965 fields->lnum = atol((char *)rmp->startp[midx]); in qf_parse_fmt_l()
976 if (rmp->startp[midx] == NULL) in qf_parse_fmt_c()
978 fields->col = (int)atol((char *)rmp->startp[midx]); in qf_parse_fmt_c()
989 if (rmp->startp[midx] == NULL) in qf_parse_fmt_t()
991 fields->type = *rmp->startp[midx]; in qf_parse_fmt_t()
1028 if (rmp->startp[midx] == NULL || rmp->endp[midx] == NULL) in qf_parse_fmt_m()
1030 len = (int)(rmp->endp[midx] - rmp->startp[midx]); in qf_parse_fmt_m()
1039 vim_strncpy(fields->errmsg, rmp->startp[midx], len); in qf_parse_fmt_m()
1050 if (rmp->startp[midx] == NULL) in qf_parse_fmt_r()
1052 *tail = rmp->startp[midx]; in qf_parse_fmt_r()
1065 if (rmp->startp[midx] == NULL || rmp->endp[midx] == NULL) in qf_parse_fmt_p()
1068 for (match_ptr = rmp->startp[midx]; match_ptr != rmp->endp[midx]; in qf_parse_fmt_p()
1090 if (rmp->startp[midx] == NULL) in qf_parse_fmt_v()
1092 fields->col = (int)atol((char *)rmp->startp[midx]); in qf_parse_fmt_v()
1106 if (rmp->startp[midx] == NULL || rmp->endp[midx] == NULL) in qf_parse_fmt_s()
1108 len = (int)(rmp->endp[midx] - rmp->startp[midx]); in qf_parse_fmt_s()
1112 STRNCAT(fields->pattern, rmp->startp[midx], len); in qf_parse_fmt_s()
1128 if (rmp->startp[midx] == NULL || rmp->endp[midx] == NULL) in qf_parse_fmt_o()
1130 len = (int)(rmp->endp[midx] - rmp->startp[midx]); in qf_parse_fmt_o()
1133 STRNCAT(fields->module, rmp->startp[midx], len); in qf_parse_fmt_o()
8077 (int)(p_regmatch->startp[0] - line) in hgr_search_file()