Searched refs:optset (Results 1 – 5 of 5) sorted by relevance
/third_party/cups-filters/filter/foomatic-rip/ |
D | postscript.c | 315 int optset = optionset("header"); /* Where do the option settings which in _print_ps() local 409 append_prolog_section(line, optset, 1); in _print_ps() 410 append_setup_section(line, optset, 1); in _print_ps() 411 append_page_setup_section(line, optset, 1); in _print_ps() 466 append_prolog_section(line, optset, 0); in _print_ps() 493 append_prolog_section(tmp, optset, 1); in _print_ps() 501 append_setup_section(line, optset, 0); in _print_ps() 560 build_commandline(optset, NULL, 0); in _print_ps() 569 append_setup_section(tmp, optset, 1); in _print_ps() 576 append_prolog_section(tmp, optset, 1); in _print_ps() [all …]
|
D | options.h | 154 int option_set_value(option_t *opt, int optset, const char *value); 155 const char * option_get_value(option_t *opt, int optset); 158 int option_get_command(dstr_t *cmd, option_t *opt, int optset, int section); 172 void append_prolog_section(dstr_t *str, int optset, int comments); 173 void append_setup_section(dstr_t *str, int optset, int comments); 174 void append_page_setup_section(dstr_t *str, int optset, int comments); 175 int build_commandline(int optset, dstr_t *cmdline, int pdfcmdline); 177 void set_options_for_page(int optset, int page);
|
D | foomaticrip.c | 311 int optset; in process_cmdline_options() local 343 optset = optionset(tmp); in process_cmdline_options() 346 optset = optionset("userval"); in process_cmdline_options() 369 option_set_value(opt, optset, p); in process_cmdline_options() 371 option_set_value(opt, optset, p); in process_cmdline_options() 373 option_set_value(opt, optset, p); in process_cmdline_options() 378 option_set_value(opt, optset, "1"); in process_cmdline_options() 391 option_set_value(opt, optset, "DuplexNoTumble"); in process_cmdline_options() 396 option_set_value(opt2, optset, "LongEdge"); in process_cmdline_options() 398 option_set_value(opt, optset, "DuplexNoTumble"); in process_cmdline_options() [all …]
|
D | options.c | 1929 int build_commandline(int optset, dstr_t *cmdline, int pdfcmdline) in build_commandline() argument 1955 userval = option_get_value(opt, optset); in build_commandline() 1956 option_get_command(cmdvar, opt, optset, -1); in build_commandline() 1976 if (optset != optionset("currentpage")) in build_commandline() 2071 void append_prolog_section(dstr_t *str, int optset, int comments) in append_prolog_section() argument 2083 build_commandline(optset, NULL, 0); in append_prolog_section() 2092 void append_setup_section(dstr_t *str, int optset, int comments) in append_setup_section() argument 2104 build_commandline(optset, NULL, 0); in append_setup_section() 2113 void append_page_setup_section(dstr_t *str, int optset, int comments) in append_page_setup_section() argument 2123 build_commandline(optset, NULL, 0); in append_page_setup_section() [all …]
|
/third_party/pcre2/pcre2/src/ |
D | pcre2_compile.c | 2691 uint32_t set, unset, *optset; in parse_regex() local 4047 optset = &set; in parse_regex() 4071 optset = &unset; in parse_regex() 4076 *optset |= PCRE2_DUPNAMES; in parse_regex() 4080 case CHAR_i: *optset |= PCRE2_CASELESS; break; in parse_regex() 4081 case CHAR_m: *optset |= PCRE2_MULTILINE; break; in parse_regex() 4082 case CHAR_n: *optset |= PCRE2_NO_AUTO_CAPTURE; break; in parse_regex() 4083 case CHAR_s: *optset |= PCRE2_DOTALL; break; in parse_regex() 4084 case CHAR_U: *optset |= PCRE2_UNGREEDY; break; in parse_regex() 4089 *optset |= PCRE2_EXTENDED; in parse_regex() [all …]
|