Home
last modified time | relevance | path

Searched refs:opt_type (Results 1 – 6 of 6) sorted by relevance

/vim-8.2.3635/src/
H A Dtypval.c1638 getoption_T opt_type; in eval_option() local
1661 opt_type = get_option_value(*arg, &numval, in eval_option()
1664 if (opt_type == gov_unknown) in eval_option()
1673 if (opt_type == gov_hidden_string) in eval_option()
1678 else if (opt_type == gov_hidden_bool || opt_type == gov_hidden_number) in eval_option()
1680 rettv->v_type = in_vim9script() && opt_type == gov_hidden_bool in eval_option()
1684 else if (opt_type == gov_bool || opt_type == gov_number) in eval_option()
1686 if (in_vim9script() && opt_type == gov_bool) in eval_option()
1703 else if (working && (opt_type == gov_hidden_bool in eval_option()
1704 || opt_type == gov_hidden_number in eval_option()
[all …]
H A Devalvars.c1393 getoption_T opt_type; in ex_let_one() local
1403 if ((opt_type == gov_bool in ex_let_one()
1404 || opt_type == gov_number in ex_let_one()
1405 || opt_type == gov_hidden_bool in ex_let_one()
1406 || opt_type == gov_hidden_number) in ex_let_one()
1409 if (opt_type == gov_bool || opt_type == gov_hidden_bool) in ex_let_one()
1425 if (((opt_type == gov_bool || opt_type == gov_number) in ex_let_one()
1427 || (opt_type == gov_string && *op != '.')) in ex_let_one()
1436 if (opt_type == gov_number in ex_let_one()
1451 else if (opt_type == gov_string in ex_let_one()
[all …]
H A Dif_py_both.h3325 int opt_type; member
3346 self->opt_type = opt_type; in OptionsNew()
3401 self->opt_type, self->from); in OptionsItem()
3477 int opt_type; member
3502 oii->opt_type = self->opt_type; in OptionsIter()
3531 int opt_type, in set_option_value_for() argument
3540 switch (opt_type) in set_option_value_for()
3592 self->opt_type, self->from); in OptionsAssItem()
3603 if (self->opt_type == SREQ_GLOBAL) in OptionsAssItem()
3649 self->opt_type, self->from); in OptionsAssItem()
[all …]
H A Doption.c4066 int opt_type, in get_option_value_strict() argument
4093 if (opt_type == SREQ_GLOBAL) in get_option_value_strict()
4102 else if (opt_type == SREQ_GLOBAL) in get_option_value_strict()
4107 if (opt_type == SREQ_BUF) in get_option_value_strict()
4114 if (opt_type == SREQ_WIN) in get_option_value_strict()
4124 if (opt_type == SREQ_GLOBAL) in get_option_value_strict()
4128 if (opt_type == SREQ_BUF) in get_option_value_strict()
4157 else if (opt_type == SREQ_WIN) in get_option_value_strict()
4197 option_iter_next(void **option, int opt_type) in option_iter_next() argument
4221 switch (opt_type) in option_iter_next()
H A Dvim9compile.c6064 getoption_T opt_type; in get_var_dest() local
6082 opt_type = get_option_value(skip_option_env_lead(name), in get_var_dest()
6085 switch (opt_type) in get_var_dest()
/vim-8.2.3635/src/proto/
H A Doption.pro29 int get_option_value_strict(char_u *name, long *numval, char_u **stringval, int opt_type, void *fro…
30 char_u *option_iter_next(void **option, int opt_type);