Home
last modified time | relevance | path

Searched refs:is_slice (Results 1 – 2 of 2) sorted by relevance

/vim-8.2.3635/src/
H A Dvim9execute.c3943 int is_slice = iptr->isn_type == ISN_STRSLICE; in exec_instructions() local
3950 if (is_slice) in exec_instructions()
3959 ectx->ec_stack.ga_len -= is_slice ? 2 : 1; in exec_instructions()
3961 if (is_slice) in exec_instructions()
3980 int is_slice = iptr->isn_type == ISN_LISTSLICE in exec_instructions() local
3997 if (is_slice) in exec_instructions()
4004 ectx->ec_stack.ga_len -= is_slice ? 2 : 1; in exec_instructions()
4025 int is_slice = iptr->isn_type == ISN_ANYSLICE; in exec_instructions() local
4037 var2 = is_slice ? STACK_TV_BOT(-1) : NULL; in exec_instructions()
4041 if (is_slice) in exec_instructions()
[all …]
H A Dvim9compile.c2884 compile_member(int is_slice, int *keeping_dict, cctx_T *cctx) in compile_member() argument
2895 - (is_slice ? 3 : 2); in compile_member()
2905 if (is_slice) in compile_member()
2916 if (is_slice) in compile_member()
2945 if ((is_slice in compile_member()
2952 if (is_slice) in compile_member()
2967 if (is_slice) in compile_member()
4495 int is_slice = FALSE; in compile_subscript() local
4529 is_slice = TRUE; in compile_subscript()
4565 if (compile_member(is_slice, &keeping_dict, cctx) == FAIL) in compile_subscript()