Lines Matching refs:namebuf
3421 char_u namebuf[100]; in compile_call() local
3474 if (varlen >= sizeof(namebuf)) in compile_call()
3479 vim_strncpy(namebuf, *arg, varlen); in compile_call()
3480 name = fname_trans_sid(namebuf, fname_buf, &tofree, &error); in compile_call()
3533 semsg(_(e_unknownfunc), namebuf); in compile_call()
3539 if (lookup_local(namebuf, varlen, NULL, cctx) == FAIL in compile_call()
3540 && arg_exists(namebuf, varlen, NULL, NULL, NULL, cctx) != OK) in compile_call()
3555 p = namebuf; in compile_call()
3556 if (STRNCMP(namebuf, "g:", 2) != 0 && !is_autoload in compile_call()
3557 && compile_load(&p, namebuf + varlen, cctx, FALSE, FALSE) == OK) in compile_call()
3562 res = generate_PCALL(cctx, argcount, namebuf, type, FALSE); in compile_call()
3575 if (STRNCMP(namebuf, "g:", 2) == 0 || is_autoload) in compile_call()
3578 semsg(_(e_unknownfunc), namebuf); in compile_call()