Searched refs:regmatch (Results 1 - 25 of 30) sorted by relevance

12

/macosx-10.9.5/vim-53/src/proto/
H A Dsearch.pro2 int search_regcomp __ARGS((char_u *pat, int pat_save, int pat_use, int options, regmmatch_T *regmatch));
13 void last_pat_prog __ARGS((regmmatch_T *regmatch));
H A Dex_getln.pro34 int ExpandGeneric __ARGS((expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file, char_u *((*func)(expand_T *, int))));
H A Doption.pro47 int ExpandSettings __ARGS((expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file));
H A Dgetchar.pro57 int ExpandMappings __ARGS((regmatch_T *regmatch, int *num_file, char_u ***file));
/macosx-10.9.5/vim-53/src/
H A Dquickfix.c234 regmatch_T regmatch; local
491 regmatch.rm_ic = TRUE;
602 regmatch.regprog = fmt_ptr->prog;
603 if (vim_regexec(&regmatch, IObuff, (colnr_T)0))
620 if (regmatch.startp[i] == NULL || regmatch.endp[i] == NULL)
624 c = *regmatch.endp[i];
625 *regmatch.endp[i] = NUL;
626 expand_env(regmatch.startp[i], namebuf, CMDBUFFSIZE);
627 *regmatch
3029 regmmatch_T regmatch; local
3829 regmatch_T regmatch; local
[all...]
H A Dsearch.c136 search_regcomp(pat, pat_save, pat_use, options, regmatch)
141 regmmatch_T *regmatch; /* return: pattern and ignore-case flag */
214 regmatch->rmm_ic = ignorecase(pat);
215 regmatch->rmm_maxcol = 0;
216 regmatch->regprog = vim_regcomp(pat, magic ? RE_MAGIC : 0);
217 if (regmatch->regprog == NULL)
491 * Values returned in regmatch->regprog and regmatch->rmm_ic.
494 last_pat_prog(regmatch)
495 regmmatch_T *regmatch;
543 regmmatch_T regmatch; local
4570 regmatch_T regmatch; local
[all...]
H A Dex_cmds.c356 regmatch_T regmatch; local
382 regmatch.regprog = NULL;
412 else if (!ASCII_ISALPHA(*p) && regmatch.regprog == NULL)
423 regmatch.regprog = vim_regcomp(last_search_pat(), RE_MAGIC);
425 regmatch.regprog = vim_regcomp(p + 1, RE_MAGIC);
426 if (regmatch.regprog == NULL)
429 regmatch.rm_ic = p_ic;
465 if (regmatch.regprog != NULL && vim_regexec(&regmatch, s, 0))
469 start_col = (colnr_T)(regmatch
4243 regmmatch_T regmatch; local
5252 regmmatch_T regmatch; local
[all...]
H A Dtag.c1196 regmatch_T regmatch; /* regexp program, may be NULL */ member in struct:__anon14331
1232 pats->regmatch.regprog = vim_regcomp(pats->pat, p_magic ? RE_MAGIC : 0);
1234 pats->regmatch.regprog = NULL;
1463 pats->regmatch.rm_ic = ((p_ic || !noic)
1469 pats->regmatch.rm_ic = (p_ic || !noic);
1794 pats->regmatch.rm_ic = (p_ic || !noic);
1800 if (state == TS_BINARY && pats->regmatch.rm_ic && !sortic)
1858 pats->regmatch.rm_ic = orgpat.regmatch.rm_ic;
2084 if (pats->regmatch
[all...]
H A Dsyntax.c401 static void syn_add_end_off __ARGS((lpos_T *result, regmmatch_T *regmatch, synpat_T *spp, int idx, int extra));
402 static void syn_add_start_off __ARGS((lpos_T *result, regmmatch_T *regmatch, synpat_T *spp, int idx, int extra));
963 regmmatch_T regmatch; local
967 regmatch.rmm_ic = syn_block->b_syn_linecont_ic;
968 regmatch.regprog = syn_block->b_syn_linecont_prog;
969 return syn_regexec(&regmatch, lnum, (colnr_T)0);
1853 regmmatch_T regmatch; local
2056 regmatch.rmm_ic = spp->sp_ic;
2057 regmatch.regprog = spp->sp_prog;
2058 if (!syn_regexec(&regmatch, current_lnu
2868 regmmatch_T regmatch; local
5805 regmatch_T regmatch; local
[all...]
H A Dex_getln.c115 static int ExpandUserDefined __ARGS((expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file));
4416 regmatch_T regmatch; local
4516 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4517 if (regmatch.regprog == NULL)
4521 regmatch.rm_ic = ignorecase(pat);
4525 ret = ExpandSettings(xp, &regmatch, num_file, file);
4527 ret = ExpandMappings(&regmatch, num_file, file);
4530 ret = ExpandUserDefined(xp, &regmatch, num_file, file);
4593 regmatch.rm_ic = TRUE;
4594 ret = ExpandGeneric(xp, &regmatch, num_fil
5554 regmatch_T regmatch; local
[all...]
H A Dex_eval.c1472 regmatch_T regmatch; local
1560 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
1561 regmatch.rm_ic = FALSE;
1565 if (regmatch.regprog == NULL)
1576 caught = vim_regexec_nl(&regmatch, current_exception->value,
1579 vim_free(regmatch.regprog);
H A Dmisc1.c426 regmmatch_T regmatch; local
431 regmatch.regprog = vim_regcomp(curbuf->b_p_flp, RE_MAGIC);
432 if (regmatch.regprog != NULL)
434 regmatch.rmm_ic = FALSE;
435 regmatch.rmm_maxcol = 0;
436 if (vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
439 pos.lnum = regmatch.endpos[0].lnum + lnum;
440 pos.col = regmatch.endpos[0].col;
445 vim_free(regmatch.regprog);
8764 regmatch_T regmatch; local
9074 regmatch_T regmatch; local
9461 regmatch_T regmatch; local
[all...]
H A Dex_cmds2.c747 regmatch_T regmatch; local
779 regmatch.regprog = bp->dbg_prog;
780 regmatch.rm_ic = FALSE;
788 if (vim_regexec(&regmatch, name, (colnr_T)0))
1856 regmatch_T regmatch; local
1864 regmatch.rm_ic = TRUE; /* Always ignore case */
1866 regmatch.rm_ic = FALSE; /* Never ignore case */
1874 regmatch.regprog = vim_regcomp(p, p_magic ? RE_MAGIC : 0);
1875 if (regmatch.regprog == NULL)
1883 if (vim_regexec(&regmatch, alist_nam
[all...]
H A Deval.c4238 regmatch_T regmatch; local
4493 regmatch.regprog = vim_regcomp(s2,
4495 regmatch.rm_ic = ic;
4496 if (regmatch.regprog != NULL)
4498 n1 = vim_regexec_nl(&regmatch, s1, (colnr_T)0);
4499 vim_free(regmatch.regprog);
13414 regmatch_T regmatch; local
13492 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
13493 if (regmatch.regprog != NULL)
13495 regmatch
16558 regmatch_T regmatch; local
20361 regmatch_T regmatch; local
23372 regmatch_T regmatch; local
[all...]
H A Dedit.c147 static void ins_compl_files __ARGS((int count, char_u **files, int thesaurus, int flags, regmatch_T *regmatch, char_u *buf, int *dir));
2929 regmatch_T regmatch; local
2950 regmatch.regprog = NULL; /* so that we can goto theend */
2975 regmatch.regprog = vim_regcomp(ptr, RE_MAGIC);
2981 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
2982 if (regmatch.regprog == NULL)
2987 regmatch.rm_ic = ignorecase(pat);
3022 spell_dump_compl(ptr, regmatch.rm_ic, &dir, 0);
3029 &regmatch, buf, &dir);
3039 vim_free(regmatch
[all...]
H A Dgui.c5100 regmatch_T regmatch; local
5150 regmatch.regprog = vim_regcomp(ga.ga_data, RE_MAGIC + RE_STRING);
5151 regmatch.rm_ic = 0;
5152 if (regmatch.regprog != NULL)
5155 if (vim_regexec_nl(&regmatch, p, (colnr_T)0)
5156 && regmatch.startp[0] == p)
5167 del_bytes((long)(regmatch.endp[0] - regmatch.startp[0]),
5174 vim_free(regmatch.regprog);
H A Dfileio.c9966 regmatch_T regmatch; local
9976 regmatch.rm_ic = TRUE; /* Always ignore case */
9978 regmatch.rm_ic = FALSE; /* Don't ever ignore case */
10004 regmatch.regprog = NULL; /* Doesn't match - don't check pat. */
10007 regmatch.regprog = NULL; /* Vim will try to free regprog later */
10011 regmatch.regprog = vim_regcomp(pattern + 1, RE_MAGIC);
10017 regmatch.regprog = prog;
10019 regmatch.regprog = vim_regcomp(pattern, RE_MAGIC);
10035 (regmatch.regprog != NULL
10037 && (vim_regexec(&regmatch, fnam
[all...]
H A Dbuffer.c2292 regmatch_T regmatch; local
2296 regmatch.regprog = prog;
2298 regmatch.rm_ic = TRUE; /* Always ignore case */
2300 regmatch.rm_ic = FALSE; /* Never ignore case */
2303 if (vim_regexec(&regmatch, name, (colnr_T)0))
2309 if (p != NULL && vim_regexec(&regmatch, p, (colnr_T)0))
H A Dspell.c1150 regmatch_T regmatch; local
1153 regmatch.regprog = wp->w_s->b_cap_prog;
1154 regmatch.rm_ic = FALSE;
1155 if (vim_regexec(&regmatch, ptr, 0))
1156 *capcol = (int)(regmatch.endp[0] - ptr);
1783 regmatch_T regmatch; local
1805 regmatch.regprog = slang->sl_compprog;
1806 regmatch.rm_ic = FALSE;
1807 if (!vim_regexec(&regmatch, p, 0))
1928 regmatch_T regmatch; local
6870 regmatch_T regmatch; local
10349 regmatch_T regmatch; local
[all...]
/macosx-10.9.5/less-23/less/
H A Dregexp.c710 STATIC int regmatch();
814 if (regmatch(prog->program + 1)) {
823 - regmatch - main matching routine
833 regmatch(prog) function
908 if (regmatch(next)) {
937 if (regmatch(next)) {
959 if (regmatch(OPERAND(scan)))
990 if (regmatch(next))
/macosx-10.9.5/tcl-102/tcl_ext/expect/expect/
H A Dexp_regexp.c623 STATIC int regmatch();
743 int r; /* result of regmatch */
755 r = regmatch(prog->program + 1);
766 - regmatch - main matching routine
777 regmatch(prog)
872 int r; /* result of regmatch */
878 r = regmatch(next);
903 int r; /* result of regmatch */
909 r = regmatch(next);
936 r = regmatch(OPERAN
[all...]
H A Dexp_clib.c877 static int regmatch _ANSI_ARGS_((char *prog,
976 if (regmatch(prog->program + 1,restate)) {
985 - regmatch - main matching routine
995 regmatch(prog, restate) function
1082 if (regmatch(next,restate)) {
1111 if (regmatch(next,restate)) {
1132 if (regmatch(OPERAND(scan),restate))
1161 if (regmatch(next,restate))
/macosx-10.9.5/apache-786.1/httpd/modules/mappers/
H A Dmod_rewrite.c333 ap_regmatch_t regmatch[AP_MAX_REG_MATCH]; member in struct:backrefinfo
2278 && bri->regmatch[n].rm_eo > bri->regmatch[n].rm_so) {
2279 span = bri->regmatch[n].rm_eo - bri->regmatch[n].rm_so;
2284 strncpy(tmp, bri->source + bri->regmatch[n].rm_so, span);
2294 current->string = bri->source + bri->regmatch[n].rm_so;
3640 ap_regmatch_t regmatch[AP_MAX_REG_MATCH]; local
3729 rc = !ap_regexec(p->regexp, input, AP_MAX_REG_MATCH, regmatch, 0);
3735 memcpy(ctx->briRC.regmatch, regmatc
3793 ap_regmatch_t regmatch[AP_MAX_REG_MATCH]; local
[all...]
/macosx-10.9.5/adv_cmds-153/pkill/
H A Dpkill.c186 regmatch_t regmatch; local
491 rv = regexec(&reg, mstr, 1, &regmatch, 0);
494 if (regmatch.rm_so == 0 &&
495 regmatch.rm_eo ==
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dtf.vim82 syn keyword tfFunctions moresize pad rand read regmatch send strcat strchr

Completed in 690 milliseconds

12