Home
last modified time | relevance | path

Searched refs:arg2 (Results 1 – 23 of 23) sorted by relevance

/vim-8.2.3635/src/testdir/
H A Dtest_shell.vim64 let str1 = "'cmd \"arg1\" '\\''arg2'\\'' \\!%# \\'\\'' \\\\! \\% \\#'"
65 let str2 = "'cmd \"arg1\" '\\''arg2'\\'' \\\\!\\%\\# \\'\\'' \\\\\\! \\\\% \\\\#'"
68 let str1 = "'cmd \"arg1\" ''arg2'' !%# \\'' \\! \\% \\#'"
69 let str2 = "'cmd \"arg1\" ''arg2'' \\!\\%\\# \\'' \\\\! \\\\% \\\\#'"
71 let str1 = "'cmd \"arg1\" '\\''arg2'\\'' !%# \\\\'\\'' \\\\! \\\\% \\\\#'"
72 let str2 = "'cmd \"arg1\" '\\''arg2'\\'' \\!\\%\\# \\\\'\\'' \\\\\\! \\\\\\% \\\\\\#'"
74 let str1 = "'cmd \"arg1\" '\\''arg2'\\'' !%# \\'\\'' \\! \\% \\#'"
75 let str2 = "'cmd \"arg1\" '\\''arg2'\\'' \\!\\%\\# \\'\\'' \\\\! \\\\% \\\\#'"
77 call assert_equal(str1, shellescape("cmd \"arg1\" 'arg2' !%# \\' \\! \\% \\#"), e[0])
78 call assert_equal(str2, shellescape("cmd \"arg1\" 'arg2' !%# \\' \\! \\% \\#", 1), e[0])
H A Dtest_partial.vim5 func MyFunc(arg1, arg2, arg3) argument
6 return a:arg1 . '/' . a:arg2 . '/' . a:arg3
61 func MyDictFunc(arg1, arg2) dict argument
62 return self.name . '/' . a:arg1 . '/' . a:arg2
H A Dtest_cindent.vim504 arg2);
515 arg2,
1469 arg2);
1480 arg2,
3215 int arg2,
3230 int arg2,
H A Dtest_exists.vim334 call FuncArg_Tests("arg1", "arg2")
H A Dtest_vim9_func.vim2010 arg2 = 1234,
2013 return arg1 .. arg2 .. join(rest, '-')
2018 arg2 = 1234, # comment
2021 return arg1 .. arg2 .. join(rest, '-')
H A Dtest_debugger.vim1200 call s:File2Func( 'arg2' )
H A Dtest_trycatch.vim1827 func T75_F2(arg1, arg2) argument
/vim-8.2.3635/src/
H A Dvim9execute.c3601 case EXPR_DIV: if (arg2 == 0) in exec_instructions()
3604 res = arg1 / arg2; in exec_instructions()
3606 case EXPR_REM: if (arg2 == 0) in exec_instructions()
3609 res = arg1 % arg2; in exec_instructions()
3611 case EXPR_SUB: res = arg1 - arg2; break; in exec_instructions()
3612 case EXPR_ADD: res = arg1 + arg2; break; in exec_instructions()
3648 float_T arg2 = tv2->vval.v_float; in exec_instructions() local
3655 case EXPR_DIV: res = arg1 / arg2; break; in exec_instructions()
3656 case EXPR_SUB: res = arg1 - arg2; break; in exec_instructions()
3684 list_T *arg2 = tv2->vval.v_list; in exec_instructions() local
[all …]
H A Dgui.c1832 int arg1 = 0, arg2 = 0; in gui_write() local
1875 arg2 = getdigits(&p); in gui_write()
1889 gui_set_cursor(arg1, arg2); in gui_write()
1895 if (arg1 < arg2) in gui_write()
1898 gui.scroll_region_bot = arg2; in gui_write()
1902 gui.scroll_region_top = arg2; in gui_write()
1907 if (arg1 < arg2) in gui_write()
1910 gui.scroll_region_right = arg2; in gui_write()
1914 gui.scroll_region_left = arg2; in gui_write()
H A Dfilepath.c2277 char_u *arg2 = tv_get_string_chk(&argvars[2]); in f_writefile() local
2279 if (arg2 == NULL) in f_writefile()
2281 if (vim_strchr(arg2, 'b') != NULL) in f_writefile()
2283 if (vim_strchr(arg2, 'a') != NULL) in f_writefile()
2286 if (vim_strchr(arg2, 's') != NULL) in f_writefile()
2288 else if (vim_strchr(arg2, 'S') != NULL) in f_writefile()
H A Dif_cscope.c478 char *arg2, // prepend path - may contain environment variables in cs_add_common() argument
515 if (arg2 != NULL) in cs_add_common()
522 expand_env((char_u *)arg2, (char_u *)ppath, MAXPATHL); in cs_add_common()
H A Dos_win32.c6557 int arg1 = 0, arg2 = 0, argc = 0, args[16]; in mch_write() local
6605 arg2 = args[1]; in mch_write()
6622 gotoxy(arg2, arg1); in mch_write()
6626 set_scroll_region(0, arg1 - 1, Columns - 1, arg2 - 1); in mch_write()
6630 set_scroll_region_tb(arg1, arg2); in mch_write()
6634 set_scroll_region_lr(arg1, arg2); in mch_write()
H A Devalfunc.c4628 int arg2 = FALSE; in f_getreg() local
4652 arg2 = (int)tv_get_bool_chk(&argvars[1], &error); in f_getreg()
4671 (arg2 ? GREG_EXPR_SRC : 0) | GREG_LIST); in f_getreg()
4681 arg2 ? GREG_EXPR_SRC : 0); in f_getreg()
H A Dif_py_both.h32 #define PyErr_FORMAT2(exc, str, arg1, arg2) PyErr_Format(exc, _(str), arg1,arg2) argument
/vim-8.2.3635/runtime/indent/testdir/
H A Dtcl.in15 -arg2 "Second" \
H A Dtcl.ok15 -arg2 "Second" \
/vim-8.2.3635/runtime/doc/
H A Ddevelop.txt383 Wrong: int function_name(int arg1, int arg2)
393 int arg2) // short comment about arg2
397 local = arg1 * arg2;
415 Wrong: func(arg1,arg2); for (i = 0;i < 2;++i)
416 OK: func(arg1, arg2); for (i = 0; i < 2; ++i)
H A Dvim9.txt604 arg2
1703 def Func(arg1: number, arg2: string): bool
1709 def Func(number arg1, string arg2) bool
1713 def Func(arg1 number, arg2 string) bool
H A Dmap.txt1719 :Mycmd arg1 arg2
1721 :call Myfunc("arg1","arg2")
H A Dtodo.txt4641 :libcall internal-name function(arg1, arg2, ...)
4642 :libcall function(arg1, arg2, ...)
5136 , arg2
H A Deval.txt1547 :let F = {arg1, arg2 -> arg1 - arg2}
5215 func Callback(arg1, arg2, name)
5235 func Callback(arg1, arg2, name)
/vim-8.2.3635/runtime/syntax/
H A Ddtrace.vim88 syn keyword dtraceIdentifier arg0 arg1 arg2 arg3 arg4 arg5 arg6 arg7 arg8 arg9
/vim-8.2.3635/runtime/autoload/
H A Dphpcomplete.vim2799 …ol','imagefilter(':'resource $image, int $filtertype [, int $arg1 [, int $arg2 [, int $arg3 [, int…