Lines Matching refs:p2
34 char_u *p2 = *(char_u **)s2; in sort_func_compare() local
36 if (*p1 != '<' && *p2 == '<') return -1; in sort_func_compare()
37 if (*p1 == '<' && *p2 != '<') return 1; in sort_func_compare()
38 return STRCMP(p1, p2); in sort_func_compare()
145 char_u *p2; in nextwild() local
175 p2 = ExpandOne(xp, NULL, NULL, 0, type); in nextwild()
182 p2 = NULL; in nextwild()
192 p2 = ExpandOne(xp, p1, in nextwild()
197 if (p2 != NULL && type == WILD_LONGEST) in nextwild()
203 if ((int)STRLEN(p2) < j) in nextwild()
204 VIM_CLEAR(p2); in nextwild()
209 if (p2 != NULL && !got_int) in nextwild()
211 difflen = (int)STRLEN(p2) - xp->xp_pattern_len; in nextwild()
224 mch_memmove(&ccline->cmdbuff[i], p2, STRLEN(p2)); in nextwild()
229 vim_free(p2); in nextwild()
236 if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL) in nextwild()
239 if (xp->xp_numfiles <= 0 && p2 == NULL) in nextwild()