Lines Matching refs:typval_T

2 typval_T *alloc_tv(void);
3 typval_T *alloc_string_tv(char_u *s);
4 void free_tv(typval_T *varp);
5 void clear_tv(typval_T *varp);
6 void init_tv(typval_T *varp);
7 varnumber_T tv_get_number(typval_T *varp);
8 varnumber_T tv_get_number_chk(typval_T *varp, int *denote);
9 varnumber_T tv_get_bool(typval_T *varp);
10 varnumber_T tv_get_bool_chk(typval_T *varp, int *denote);
11 float_T tv_get_float(typval_T *varp);
12 int check_for_string_arg(typval_T *args, int idx);
13 int check_for_nonempty_string_arg(typval_T *args, int idx);
14 int check_for_opt_string_arg(typval_T *args, int idx);
15 int check_for_number_arg(typval_T *args, int idx);
16 int check_for_opt_number_arg(typval_T *args, int idx);
17 int check_for_float_or_nr_arg(typval_T *args, int idx);
18 int check_for_bool_arg(typval_T *args, int idx);
19 int check_for_opt_bool_arg(typval_T *args, int idx);
20 int check_for_blob_arg(typval_T *args, int idx);
21 int check_for_list_arg(typval_T *args, int idx);
22 int check_for_opt_list_arg(typval_T *args, int idx);
23 int check_for_dict_arg(typval_T *args, int idx);
24 int check_for_opt_dict_arg(typval_T *args, int idx);
25 int check_for_chan_or_job_arg(typval_T *args, int idx);
26 int check_for_opt_chan_or_job_arg(typval_T *args, int idx);
27 int check_for_job_arg(typval_T *args, int idx);
28 int check_for_opt_job_arg(typval_T *args, int idx);
29 int check_for_string_or_number_arg(typval_T *args, int idx);
30 int check_for_buffer_arg(typval_T *args, int idx);
31 int check_for_opt_buffer_arg(typval_T *args, int idx);
32 int check_for_lnum_arg(typval_T *args, int idx);
33 int check_for_opt_lnum_arg(typval_T *args, int idx);
34 int check_for_opt_string_or_number_arg(typval_T *args, int idx);
35 int check_for_string_or_blob_arg(typval_T *args, int idx);
36 int check_for_string_or_list_arg(typval_T *args, int idx);
37 int check_for_opt_string_or_list_arg(typval_T *args, int idx);
38 int check_for_string_or_dict_arg(typval_T *args, int idx);
39 int check_for_string_or_number_or_list_arg(typval_T *args, int idx);
40 int check_for_opt_string_or_number_or_list_arg(typval_T *args, int idx);
41 int check_for_string_or_list_or_dict_arg(typval_T *args, int idx);
42 int check_for_list_or_blob_arg(typval_T *args, int idx);
43 int check_for_list_or_dict_arg(typval_T *args, int idx);
44 int check_for_list_or_dict_or_blob_arg(typval_T *args, int idx);
45 int check_for_opt_buffer_or_dict_arg(typval_T *args, int idx);
46 char_u *tv_get_string(typval_T *varp);
47 char_u *tv_get_string_strict(typval_T *varp);
48 char_u *tv_get_string_buf(typval_T *varp, char_u *buf);
49 char_u *tv_get_string_chk(typval_T *varp);
50 char_u *tv_get_string_buf_chk(typval_T *varp, char_u *buf);
51 char_u *tv_get_string_buf_chk_strict(typval_T *varp, char_u *buf, int strict);
52 char_u *tv_stringify(typval_T *varp, char_u *buf);
53 int tv_check_lock(typval_T *tv, char_u *name, int use_gettext);
54 void copy_tv(typval_T *from, typval_T *to);
55 int typval_compare(typval_T *typ1, typval_T *typ2, exprtype_T type, int ic);
56 char_u *typval_tostring(typval_T *arg, int quotes);
57 int tv_islocked(typval_T *tv);
58 int tv_equal(typval_T *tv1, typval_T *tv2, int ic, int recursive);
59 int eval_option(char_u **arg, typval_T *rettv, int evaluate);
60 int eval_number(char_u **arg, typval_T *rettv, int evaluate, int want_string);
61 int eval_string(char_u **arg, typval_T *rettv, int evaluate);
62 int eval_lit_string(char_u **arg, typval_T *rettv, int evaluate);
63 char_u *tv2string(typval_T *tv, char_u **tofree, char_u *numbuf, int copyID);
64 int eval_env_var(char_u **arg, typval_T *rettv, int evaluate);
65 linenr_T tv_get_lnum(typval_T *argvars);
66 linenr_T tv_get_lnum_buf(typval_T *argvars, buf_T *buf);
67 buf_T *tv_get_buf(typval_T *tv, int curtab_only);
68 buf_T *tv_get_buf_from_arg(typval_T *tv);