Searched refs:spat (Results 1 - 5 of 5) sorted by relevance

/macosx-10.10/vim-55/src/proto/
H A Deval.pro65 long do_searchpair __ARGS((char_u *spat, char_u *mpat, char_u *epat, int dir, char_u *skip, int flags, pos_T *match_pos, linenr_T lnum_stop, long time_limit));
/macosx-10.10/ruby-106/ruby/
H A Dstring.c5920 VALUE spat; local
5927 if (rb_scan_args(argc, argv, "02", &spat, &limit) == 2) {
5939 if (NIL_P(spat)) {
5941 spat = rb_fs;
5948 if (RB_TYPE_P(spat, T_STRING)) {
5949 rb_encoding *enc2 = STR_ENC_GET(spat);
5952 if (RSTRING_LEN(spat) == 0) {
5954 spat = rb_reg_regcomp(spat);
5958 if (RSTRING_LEN(spat)
[all...]
/macosx-10.10/vim-55/src/
H A Dsearch.c71 /* A search pattern and its attributes are stored in a spat struct */
72 struct spat struct
85 static struct spat spats[2] =
95 static struct spat saved_spats[2];
3817 char_u *spat, *epat; local
3908 spat = alloc(len + 29);
3910 if (spat == NULL || epat == NULL)
3912 vim_free(spat);
3917 sprintf((char *)spat, "<%.*s\\%%(\\_[^>]\\{-}[^/]>\\|>\\)\\c", len, p);
3920 r = do_searchpair(spat, (char_
[all...]
H A DMake_sas.mak245 spat ctags $(SRC) *.h
H A Deval.c15307 char_u *spat, *mpat, *epat; local
15320 spat = get_tv_string_chk(&argvars[0]);
15323 if (spat == NULL || mpat == NULL || epat == NULL)
15370 retval = do_searchpair(spat, mpat, epat, dir, skip, flags,
15421 do_searchpair(spat, mpat, epat, dir, skip, flags, match_pos,
15423 char_u *spat; /* start pattern */
15459 pat2 = alloc((unsigned)(STRLEN(spat) + STRLEN(epat) + 15));
15460 pat3 = alloc((unsigned)(STRLEN(spat) + STRLEN(mpat) + STRLEN(epat) + 23));
15463 sprintf((char *)pat2, "\\(%s\\m\\)\\|\\(%s\\m\\)", spat, epat);
15468 spat, epa
[all...]

Completed in 162 milliseconds