Lines Matching refs:args

105    - All D commands with a variable number of args expect an even
175 - all open figures (args, splines, and lines) should position at their
236 // to the strange alternate sum of args displacement
399 // variable, even number of int args
419 bool skip_line_checked(void); // skip line, false if args are left
420 void skip_line_fatal(void); // skip line, fatal if args are left
421 void skip_line_warn(void); // skip line, warn if args are left
672 IntArray *args = new IntArray(number);
674 args->append(get_integer_arg());
676 return args;
698 IntArray *args = new IntArray(number);
700 args->append(get_integer_arg());
708 return args;
728 IntArray *args = get_possibly_integer_args();
729 size_t n = args->len();
735 return args;
833 IntArray *args = new IntArray();
860 args->append((IntArg) x);
886 return args;
1010 args: In-parameter, the arguments of a former drawing command.
1013 position_to_end_of_args(const IntArray * const args)
1016 const size_t n = args->len();
1018 current_env->hpos += (*args)[i];
1020 current_env->vpos += (*args)[i];
1080 args: Array of integer arguments of actual D subcommand.
1083 send_draw(const Char subcmd, const IntArray * const args)
1085 EnvInt n = (EnvInt) args->len();
1086 pr->draw((int) subcmd, (IntArg *)args->get_data(), n, current_env);
1328 IntArray *args = get_D_variable_args();
1329 send_draw(subcmd, args);
1330 position_to_end_of_args(args);
1331 delete args;
1336 IntArray *args = get_D_fixed_args(4);
1337 send_draw(subcmd, args);
1338 position_to_end_of_args(args);
1339 delete args;
1344 IntArray *args = get_D_fixed_args(1);
1345 send_draw(subcmd, args);
1347 current_env->hpos += (*args)[0];
1348 delete args;
1353 IntArray *args = get_D_fixed_args_odd_dummy(1);
1354 send_draw(subcmd, args);
1356 current_env->hpos += (*args)[0];
1357 delete args;
1363 IntArray *args = get_D_fixed_args(2);
1364 send_draw(subcmd, args);
1366 current_env->hpos += (*args)[0];
1367 delete args;
1400 IntArray *args = get_D_fixed_args(2);
1401 send_draw(subcmd, args);
1402 position_to_end_of_args(args);
1403 delete args;
1409 IntArray *args = get_D_variable_args();
1410 send_draw(subcmd, args);
1412 // final args positioning
1413 position_to_end_of_args(args);
1415 delete args;
1420 IntArray *args = get_D_fixed_args_odd_dummy(1);
1421 send_draw(subcmd, args);
1423 // final args positioning
1424 position_to_end_of_args(args);
1426 delete args;