Lines Matching refs:conv
314 vimconv_T conv; in f_strftime()
317 conv.vc_type = CONV_NONE; in f_strftime()
319 convert_setup(&conv, p_enc, enc); in f_strftime()
320 if (conv.vc_type != CONV_NONE) in f_strftime()
321 p = string_convert(&conv, p, NULL); in f_strftime()
328 if (conv.vc_type != CONV_NONE) in f_strftime()
330 convert_setup(&conv, enc, p_enc); in f_strftime()
331 if (conv.vc_type != CONV_NONE) in f_strftime()
332 rettv->vval.v_string = string_convert(&conv, result_buf, NULL); in f_strftime()
337 convert_setup(&conv, NULL, NULL); in f_strftime()
354 vimconv_T conv; in f_strptime() local
367 conv.vc_type = CONV_NONE; in f_strptime()
369 convert_setup(&conv, p_enc, enc); in f_strptime()
370 if (conv.vc_type != CONV_NONE) in f_strptime()
371 fmt = string_convert(&conv, fmt, NULL); in f_strptime()
377 if (conv.vc_type != CONV_NONE) in f_strptime()
379 convert_setup(&conv, NULL, NULL); in f_strptime()