Lines Matching refs:vc
1810 vimconv_T vc; in get_digraph_for_char() local
1814 vc.vc_type = CONV_NONE; in get_digraph_for_char()
1815 if (convert_setup(&vc, p_enc, (char_u *)"utf-8") == OK) in get_digraph_for_char()
1817 vc.vc_fail = TRUE; in get_digraph_for_char()
1818 to = string_convert(&vc, buf, &i); in get_digraph_for_char()
1824 (void)convert_setup(&vc, NULL, NULL); in get_digraph_for_char()
1944 vimconv_T vc; in getexactdigraph() local
1951 vc.vc_type = CONV_NONE; in getexactdigraph()
1952 if (convert_setup(&vc, (char_u *)"utf-8", p_enc) == OK) in getexactdigraph()
1954 vc.vc_fail = TRUE; in getexactdigraph()
1955 to = string_convert(&vc, buf, &i); in getexactdigraph()
1961 (void)convert_setup(&vc, NULL, NULL); in getexactdigraph()