Searched refs:ppdcChoice (Results 1 – 9 of 9) sorted by relevance
/external/libcups/ppdc/ |
D | ppdc-choice.cxx | 21 ppdcChoice::ppdcChoice(const char *n, // I - Name of choice in ppdcChoice() function in ppdcChoice 38 ppdcChoice::~ppdcChoice() in ~ppdcChoice()
|
D | ppdc-option.cxx | 83 ppdcChoice * // O - Choice or NULL 86 ppdcChoice *c; // Current choice in find_choice() 89 for (c = (ppdcChoice *)choices->first(); c; c = (ppdcChoice *)choices->next()) in find_choice() 102 ppdcOption::set_defchoice(ppdcChoice *c) // I - Choice in set_defchoice()
|
D | ppdc.h | 219 class ppdcChoice //// Option Choice 228 ppdcChoice(const char *n, const char *t, const char *c); 229 ~ppdcChoice(); 254 void add_choice(ppdcChoice *c) { choices->add(c); } in add_choice() 255 ppdcChoice *find_choice(const char *n); 256 void set_defchoice(ppdcChoice *c); 489 ppdcChoice *get_choice(ppdcFile *fp); 490 ppdcChoice *get_color_model(ppdcFile *fp); 500 ppdcChoice *get_generic(ppdcFile *fp, const char *keyword, 509 ppdcChoice *get_resolution(ppdcFile *fp);
|
D | ppdhtml.cxx | 41 ppdcChoice *c; // Current choice in main() 133 for (c = (ppdcChoice *)o->choices->first(); c; in main() 134 c = (ppdcChoice *)o->choices->next()) in main()
|
D | genstrings.cxx | 107 ppdcChoice *c; // Current choice in add_ui_strings() 131 for (c = (ppdcChoice *)o->choices->first(); in add_ui_strings() 133 c = (ppdcChoice *)o->choices->next()) in add_ui_strings()
|
D | ppdpo.cxx | 173 ppdcChoice *c; // Current choice in add_ui_strings() 197 for (c = (ppdcChoice *)o->choices->first(); in add_ui_strings() 199 c = (ppdcChoice *)o->choices->next()) in add_ui_strings()
|
D | ppdc-source.cxx | 373 ppdcChoice * // O - Choice data 405 return (new ppdcChoice(name, text, code)); in get_choice() 413 ppdcChoice * // O - Choice data 478 return (new ppdcChoice(name, text, temp)); in get_color_model() 815 o->add_choice(new ppdcChoice("None", "Off (1-Sided)", in get_duplex() 817 o->add_choice(new ppdcChoice("DuplexNoTumble", "Long-Edge (Portrait)", in get_duplex() 819 o->add_choice(new ppdcChoice("DuplexTumble", "Short-Edge (Landscape)", in get_duplex() 1081 ppdcChoice * // O - Choice data 1134 return (new ppdcChoice(name, text, command)); in get_generic() 1211 o->add_choice(new ppdcChoice("False", "Not Installed", "")); in get_installable() [all …]
|
D | ppdc-import.cxx | 43 ppdcChoice *cchoice; // UI choice in import_ppd() 204 cchoice = new ppdcChoice(choice->choice, choice->text, choice->code); in import_ppd()
|
D | ppdc-driver.cxx | 384 ppdcChoice *c; // Current choice in write_ppd_file() 1072 c = (ppdcChoice *)o->choices->first(); in write_ppd_file() 1077 for (c = (ppdcChoice *)o->choices->first(); in write_ppd_file() 1079 c = (ppdcChoice *)o->choices->next()) in write_ppd_file() 1254 for (c = (ppdcChoice *)o->choices->first(); in write_ppd_file() 1256 c = (ppdcChoice *)o->choices->next()) in write_ppd_file()
|