Lines Matching defs:arg
91 int narg; // cmdline arg index
728 TT.scs->filename = TT.scs->prog_args->arg;
1432 XERR("function '%s' expected 1 arg, got %d\n", fname, num_args);
1440 XERR("function '%s' expected no arg or 1 arg, got %d\n", fname, num_args);
1486 XERR("%s\n", "expected array name as split() 2nd arg");
1562 // Function call arg that is a lone variable. Cannot tell in this
3243 // If valid assignment arg, assign the global and return 1;
3248 static int assignment_arg(char *arg)
3250 char *val = strchr(arg, '=');
3253 if (!is_ok_varname(arg)) {
3257 assign_global(arg, val);
3265 char *arg;
3271 arg = "";
3274 arg = TT.rgl.cur_arg.vst->str;
3277 } while (!*arg || assignment_arg(arg));
3279 return arg;
3843 // init the pushed arg from the type of the locals table.
3844 // But if a var appears only as a bare arg in a function call it will
3891 push_int_val(0); // arg count
4410 // pushed arg from the type of the globals table.
4411 // But if a global var appears only as a bare arg in a function call it will
4437 char *asgn = p->arg;