Lines Matching refs:rmp

921 qf_parse_fmt_f(regmatch_T *rmp, int midx, qffields_T *fields, int prefix)  in qf_parse_fmt_f()  argument
925 if (rmp->startp[midx] == NULL || rmp->endp[midx] == NULL) in qf_parse_fmt_f()
929 c = *rmp->endp[midx]; in qf_parse_fmt_f()
930 *rmp->endp[midx] = NUL; in qf_parse_fmt_f()
931 expand_env(rmp->startp[midx], fields->namebuf, CMDBUFFSIZE); in qf_parse_fmt_f()
932 *rmp->endp[midx] = c; in qf_parse_fmt_f()
948 qf_parse_fmt_n(regmatch_T *rmp, int midx, qffields_T *fields) in qf_parse_fmt_n() argument
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()
961 qf_parse_fmt_l(regmatch_T *rmp, int midx, qffields_T *fields) in qf_parse_fmt_l() argument
963 if (rmp->startp[midx] == NULL) in qf_parse_fmt_l()
965 fields->lnum = atol((char *)rmp->startp[midx]); in qf_parse_fmt_l()
974 qf_parse_fmt_c(regmatch_T *rmp, int midx, qffields_T *fields) in qf_parse_fmt_c() argument
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()
987 qf_parse_fmt_t(regmatch_T *rmp, int midx, qffields_T *fields) in qf_parse_fmt_t() argument
989 if (rmp->startp[midx] == NULL) in qf_parse_fmt_t()
991 fields->type = *rmp->startp[midx]; in qf_parse_fmt_t()
1023 qf_parse_fmt_m(regmatch_T *rmp, int midx, qffields_T *fields) in qf_parse_fmt_m() argument
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()
1048 qf_parse_fmt_r(regmatch_T *rmp, int midx, char_u **tail) in qf_parse_fmt_r() argument
1050 if (rmp->startp[midx] == NULL) in qf_parse_fmt_r()
1052 *tail = rmp->startp[midx]; in qf_parse_fmt_r()
1061 qf_parse_fmt_p(regmatch_T *rmp, int midx, qffields_T *fields) in qf_parse_fmt_p() argument
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()
1088 qf_parse_fmt_v(regmatch_T *rmp, int midx, qffields_T *fields) in qf_parse_fmt_v() argument
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()
1102 qf_parse_fmt_s(regmatch_T *rmp, int midx, qffields_T *fields) in qf_parse_fmt_s() argument
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()
1124 qf_parse_fmt_o(regmatch_T *rmp, int midx, qffields_T *fields) in qf_parse_fmt_o() argument
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()