Lines Matching refs:tv
359 typval_T tv; in handle_import() local
367 tv.v_type = VAR_UNKNOWN; in handle_import()
462 ret = eval0(arg, &tv, NULL, evalarg); in handle_import()
465 if (tv.v_type != VAR_STRING in handle_import()
466 || tv.vval.v_string == NULL || *tv.vval.v_string == NUL) in handle_import()
479 if (*tv.vval.v_string == '.') in handle_import()
487 len = STRLEN(si->sn_name) - STRLEN(tail) + STRLEN(tv.vval.v_string) + 2; in handle_import()
493 STRCAT(from_name, tv.vval.v_string); in handle_import()
499 else if (mch_isFullName(tv.vval.v_string)) in handle_import()
502 res = do_source(tv.vval.v_string, FALSE, DOSO_NONE, &sid); in handle_import()
506 size_t len = 7 + STRLEN(tv.vval.v_string) + 1; in handle_import()
515 vim_snprintf((char *)from_name, len, "import/%s", tv.vval.v_string); in handle_import()
522 semsg(_(e_could_not_import_str), tv.vval.v_string); in handle_import()
630 clear_tv(&tv); in handle_import()
821 typval_T *tv, in update_vim9_script_var() argument
901 *type = typval2type(tv, get_copyID(), &si->sn_type_list, do_member); in update_vim9_script_var()